html {
    word-break: break-word;
    overflow-wrap: anywhere;
}

body {
    margin: 0;
    font-family: 'Exo 2', sans-serif;
}

*:focus-visible {
    outline: 2px solid #1FA2A9;
    outline-offset: 2px;
    box-shadow: 0 0 0 4px rgba(31, 162, 169, 0.22);
}

.site-header {
    position: relative;
    background: linear-gradient(108deg, #ffffff 0%, #D3E3DD 55%, #DABAC6 100%);
    border-bottom: 2px solid #1FA2A9;
    box-shadow: 2px 7px 14px 0 rgba(31, 162, 169, 0.09);
    padding: 16px 40px;
}

.hd-plate {
    max-width: 1320px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}

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

.brand-hex {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 52px;
    height: 52px;
    background: rgba(255, 255, 255, 0.82);
    clip-path: polygon(50% 0%, 93% 25%, 93% 75%, 50% 100%, 7% 75%, 7% 25%);
    box-shadow: 2px 1px 2px 0 rgba(31, 162, 169, 0.07), 2px 7px 14px 0 rgba(31, 162, 169, 0.09);
    padding: 8px;
}

.brand-hex img {
    width: 36px;
    height: 36px;
    object-fit: contain;
    display: block;
}

.brand-tag {
    font-family: 'Exo 2', sans-serif;
    font-size: 15px;
    font-weight: 700;
    color: #1FA2A9;
    letter-spacing: 0.08em;
    line-height: 1.1;
    text-transform: uppercase;
    white-space: nowrap;
}

.nav-deck {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
}

.nav-deck a {
    font-family: 'Exo 2', sans-serif;
    font-size: 15px;
    font-weight: 700;
    color: #1a4a4d;
    text-decoration: none;
    padding: 8px 16px;
    border-radius: 8px;
    border: 1.5px solid transparent;
    line-height: 1.3;
    white-space: nowrap;
    min-height: 44px;
    display: inline-flex;
    align-items: center;
    transition: border-color 0.1s ease-out, background 0.12s ease-out;
    letter-spacing: 0.02em;
}

.nav-deck a:hover {
    border-color: #1FA2A9;
    background: rgba(31, 162, 169, 0.07);
}

.nav-deck a.active {
    background: rgba(31, 162, 169, 0.13);
    border-color: #1FA2A9;
    color: #1FA2A9;
}

.region-cell {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: rgba(255, 255, 255, 0.62);
    border-radius: 44px;
    border: 1px solid rgba(31, 162, 169, 0.18);
    box-shadow: 2px 1px 2px 0 rgba(31, 162, 169, 0.07);
    flex-shrink: 0;
}

.region-cell svg {
    flex-shrink: 0;
}

.region-label {
    font-family: 'Exo 2', sans-serif;
    font-size: 15px;
    color: #1a4a4d;
    line-height: 1.3;
    letter-spacing: 0.04em;
    white-space: nowrap;
}

.hd-left {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
    flex: 1;
}

.site-footer {
    background: #1a4a4d;
    padding: 80px 40px 40px;
}

.ft-plate {
    max-width: 1320px;
    margin: 0 auto;
}

.ft-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    padding-bottom: 40px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

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

.ft-brand-hex {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 52px;
    height: 52px;
    background: rgba(255, 255, 255, 0.1);
    clip-path: polygon(50% 0%, 93% 25%, 93% 75%, 50% 100%, 7% 75%, 7% 25%);
    padding: 8px;
    border: 1.5px solid rgba(31, 162, 169, 0.35);
}

.ft-brand-hex img {
    width: 36px;
    height: 36px;
    object-fit: contain;
    display: block;
}

.ft-company-name {
    font-family: 'Exo 2', sans-serif;
    font-size: 22px;
    font-weight: 700;
    color: #ffffff;
    line-height: 1.1;
    letter-spacing: 0.04em;
}

.ft-tagline {
    font-family: 'Exo 2', sans-serif;
    font-size: 15px;
    color: rgba(211, 227, 221, 0.82);
    line-height: 1.55;
}

.ft-col-label {
    font-family: 'Exo 2', sans-serif;
    font-size: 15px;
    font-weight: 700;
    color: #1FA2A9;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    line-height: 1.1;
}

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

.ft-links li a {
    font-family: 'Exo 2', sans-serif;
    font-size: 15px;
    color: rgba(211, 227, 221, 0.9);
    text-decoration: none;
    line-height: 1.55;
    transition: color 0.1s linear;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    min-height: 44px;
}

.ft-links li a:hover {
    color: #1FA2A9;
}

.ft-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    font-family: 'Exo 2', sans-serif;
    font-size: 15px;
    color: rgba(211, 227, 221, 0.9);
    line-height: 1.55;
}

.ft-contact-item a {
    color: rgba(211, 227, 221, 0.9);
    text-decoration: none;
    transition: color 0.1s linear;
    min-height: 44px;
    display: inline-flex;
    align-items: center;
}

.ft-contact-item a:hover {
    color: #1FA2A9;
}

.ft-contact-label {
    font-weight: 700;
    color: rgba(218, 186, 198, 0.85);
    white-space: nowrap;
    font-size: 15px;
}

.ft-copy-row {
    padding-top: 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 16px;
}

.ft-copy-text {
    font-family: 'Exo 2', sans-serif;
    font-size: 15px;
    color: rgba(211, 227, 221, 0.55);
    line-height: 1.55;
}

@media (max-width: 1024px) {
    .site-header {
        padding: 16px 40px;
    }

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

    .ft-cell:first-child {
        grid-column: 1 / -1;
    }
}

@media (max-width: 768px) {
    .site-header {
        padding: 16px;
    }

    .hd-plate {
        flex-direction: column;
        align-items: flex-start;
        gap: 16px;
    }

    .brand-pod {
        align-items: flex-start;
        flex-direction: row;
        align-items: center;
        width: 100%;
        justify-content: space-between;
    }

    .hd-left {
        width: 100%;
    }

    .nav-deck {
        gap: 8px;
    }

    .nav-deck a {
        font-size: 15px;
        padding: 8px;
    }

    .ft-grid {
        grid-template-columns: 1fr;
    }

    .ft-cell:first-child {
        grid-column: auto;
    }

    .site-footer {
        padding: 40px 16px;
    }

    .ft-copy-row {
        flex-direction: column;
        align-items: flex-start;
    }
}

@media (max-width: 375px) {
    .nav-deck a {
        font-size: 15px;
        padding: 8px;
    }

    .region-cell {
        display: none;
    }
}

.consent-box {
    position: fixed;
    top: 40px;
    right: 40px;
    width: 320px;
    background: #ffffff;
    border-radius: 8px;
    border: 1.5px solid #1FA2A9;
    box-shadow: 2px 9px 40px 0 rgba(31, 162, 169, 0.14);
    padding: 16px;
    z-index: 1000;
    display: none;
}

.consent-box[data-vis="show"] {
    display: block;
}

.consent-desc {
    font-family: 'Exo 2', sans-serif;
    font-size: 15px;
    color: #1a4a4d;
    line-height: 1.55;
    margin-bottom: 8px;
}

.consent-hed {
    font-family: 'Exo 2', sans-serif;
    font-size: 15px;
    font-weight: 700;
    color: #1a4a4d;
    line-height: 1.3;
    margin-bottom: 16px;
}

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

.consent-btns button {
    flex: 1;
    font-family: 'Exo 2', sans-serif;
    font-size: 15px;
    font-weight: 700;
    border-radius: 8px;
    border: 1.5px solid #1FA2A9;
    padding: 8px 16px;
    min-height: 44px;
    cursor: pointer;
    transition: border-color 0.1s ease-out, background 0.09s ease-out;
    line-height: 1.3;
}

.btn-allow {
    background: #1FA2A9;
    color: #ffffff;
}

.btn-allow:hover {
    border-color: #178a90;
    background: #1FA2A9;
}

.btn-allow:focus-visible {
    outline: 2px solid #1FA2A9;
    outline-offset: 2px;
    box-shadow: 0 0 0 4px rgba(31, 162, 169, 0.22);
}

.btn-deny {
    background: #ffffff;
    color: #1a4a4d;
}

.btn-deny:hover {
    border-color: #DABAC6;
    background: #ffffff;
}

.btn-deny:focus-visible {
    outline: 2px solid #DABAC6;
    outline-offset: 2px;
    box-shadow: 0 0 0 4px rgba(218, 186, 198, 0.22);
}

.terms-block {
    max-width: 1320px;
    margin: 0 auto;
    padding: 80px 40px;
    color: #2a2e35;
}

.terms-block h1 {
    font-size: 58px;
    line-height: 1.1;
    letter-spacing: -0.5px;
    margin-bottom: 40px;
    margin-top: 0;
    color: #111418;
}

.terms-block h2 {
    font-size: 42px;
    line-height: 1.1;
    letter-spacing: -0.3px;
    margin-top: 80px;
    margin-bottom: 16px;
    color: #111418;
}

.terms-block h3 {
    font-size: 30px;
    line-height: 1.3;
    letter-spacing: -0.1px;
    margin-top: 40px;
    margin-bottom: 16px;
    color: #1a2028;
}

.terms-block h4 {
    font-size: 22px;
    line-height: 1.3;
    letter-spacing: 0;
    margin-top: 40px;
    margin-bottom: 8px;
    color: #1a2028;
}

.terms-block h5 {
    font-size: 18px;
    line-height: 1.3;
    letter-spacing: 0.02em;
    margin-top: 16px;
    margin-bottom: 8px;
    color: #1a2028;
}

.terms-block h6 {
    font-size: 15px;
    line-height: 1.55;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-top: 16px;
    margin-bottom: 8px;
    color: #1FA2A9;
}

.terms-block p {
    font-size: 18px;
    line-height: 1.75;
    margin-top: 0;
    margin-bottom: 16px;
    color: #2a2e35;
}

.terms-block em,
.terms-block i {
    font-style: italic;
    color: inherit;
}

.terms-block a {
    color: #1FA2A9;
    text-decoration: underline;
    text-decoration-thickness: 1px;
    text-underline-offset: 3px;
    transition: color 0.1s ease-out, text-decoration-color 0.08s linear;
}

.terms-block a:hover {
    color: #167e84;
    text-decoration-color: #DABAC6;
}

.terms-block a:focus-visible {
    outline: 2px solid #1FA2A9;
    outline-offset: 2px;
    border-radius: 4px;
}

.terms-block hr {
    border: none;
    border-top: 1.5px solid #D3E3DD;
    margin-top: 40px;
    margin-bottom: 40px;
}

.terms-block div {
    font-size: 18px;
    line-height: 1.75;
}

.terms-block table {
    width: 100%;
    border-collapse: collapse;
    font-size: 15px;
    line-height: 1.55;
    margin-top: 40px;
    margin-bottom: 40px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 2px 1px 2px 0 rgba(31, 162, 169, 0.07),
        2px 7px 14px 0 rgba(31, 162, 169, 0.09);
}

.terms-block thead {
    background-color: #1FA2A9;
}

.terms-block thead th {
    color: #ffffff;
    font-size: 15px;
    line-height: 1.3;
    letter-spacing: 0.07em;
    text-transform: uppercase;
    padding: 16px;
    text-align: left;
    font-weight: 700;
    border-bottom: none;
}

.terms-block tbody tr {
    border-bottom: 1px solid #D3E3DD;
    transition: background-color 0.1s ease-out;
}

.terms-block tbody tr:last-child {
    border-bottom: none;
}

.terms-block tbody tr:nth-child(even) {
    background-color: #f4f9f8;
}

.terms-block tbody tr:hover {
    background-color: #eaf4f4;
}

.terms-block th,
.terms-block td {
    padding: 16px;
    text-align: left;
    vertical-align: top;
    font-size: 15px;
    line-height: 1.55;
    color: #2a2e35;
}

.terms-block th {
    font-weight: 700;
}

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

    .terms-block h1 {
        font-size: 42px;
    }

    .terms-block h2 {
        font-size: 30px;
    }
}

@media (max-width: 768px) {
    .terms-block {
        padding: 40px 16px;
    }

    .terms-block h1 {
        font-size: 30px;
        margin-bottom: 16px;
    }

    .terms-block h2 {
        font-size: 22px;
        margin-top: 40px;
    }

    .terms-block h3 {
        font-size: 18px;
        margin-top: 40px;
    }

    .terms-block h4,
    .terms-block h5 {
        font-size: 15px;
    }

    .terms-block p,
    .terms-block div {
        font-size: 15px;
        line-height: 1.75;
    }

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

@media (max-width: 375px) {
    .terms-block {
        padding: 40px 8px;
    }

    .terms-block h1 {
        font-size: 22px;
    }

    .terms-block h2 {
        font-size: 18px;
    }

    .terms-block h3 {
        font-size: 15px;
    }
}

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

.jrnl-det .art-lead {
    background: linear-gradient(160deg, #f0fafa 0%, #e8f5f6 40%, #f5eef2 100%);
    padding: 80px 16px 40px;
    position: relative;
}

.jrnl-det .art-lead::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 30% 40%, rgba(31, 162, 169, 0.08) 0%, transparent 70%),
        radial-gradient(ellipse at 80% 80%, rgba(218, 186, 198, 0.10) 0%, transparent 60%);
    pointer-events: none;
}

.jrnl-det .lead-inner {
    max-width: 1320px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
    position: relative;
    z-index: 1;
}

.jrnl-det .lead-text {
    display: flex;
    flex-direction: column;
    gap: 16px;
    opacity: 0;
    animation: col-appear 0.55s 0.08s ease-out forwards;
}

.jrnl-det .lead-visual {
    opacity: 0;
    animation: col-appear 0.55s 0.22s ease-out forwards;
}

@keyframes col-appear {
    from {
        opacity: 0;
        transform: translateY(18px);
    }

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

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

.jrnl-det .tag-badge {
    display: inline-block;
    background: #1FA2A9;
    color: #fff;
    font-size: 15px;
    font-weight: 700;
    letter-spacing: 0.08em;
    padding: 4px 16px;
    border-radius: 4px;
    line-height: 1.55;
}

.jrnl-det .cat-badge {
    display: inline-block;
    background: transparent;
    color: #1FA2A9;
    font-size: 15px;
    font-weight: 600;
    letter-spacing: 0.06em;
    border: 1.5px solid #1FA2A9;
    padding: 4px 16px;
    border-radius: 4px;
    line-height: 1.55;
}

.jrnl-det .read-time {
    font-size: 15px;
    color: #4a7a7e;
    line-height: 1.55;
    margin-left: 8px;
}

.jrnl-det .art-h1 {
    font-size: 42px;
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -0.01em;
    color: #162f31;
    margin: 0;
}

.jrnl-det .art-h1 .accent-half {
    color: #1FA2A9;
}

.jrnl-det .dash-label {
    display: inline-block;
    width: 28px;
    height: 3px;
    background: #1FA2A9;
    border-radius: 4px;
    vertical-align: middle;
    margin-right: 8px;
}

.jrnl-det .author-line {
    font-size: 15px;
    color: #3d6366;
    line-height: 1.55;
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 8px;
}

.jrnl-det .author-line strong {
    color: #162f31;
    font-weight: 700;
}

.jrnl-det .print-btn {
    display: inline-flex;
    flex-direction: row;
    align-items: center;
    gap: 8px;
    background: transparent;
    border: 2px solid #1FA2A9;
    color: #1FA2A9;
    font-size: 15px;
    font-weight: 700;
    padding: 8px 16px;
    border-radius: 8px;
    cursor: pointer;
    transition: border-color 0.12s ease-out, color 0.12s ease-out;
    align-self: flex-start;
}

.jrnl-det .print-btn:hover {
    border-color: #158a90;
    color: #158a90;
}

.jrnl-det .print-btn:focus {
    outline: 3px solid rgba(31, 162, 169, 0.4);
    outline-offset: 2px;
}

.jrnl-det .print-btn:active {
    border-color: #0f6e73;
}

.jrnl-det .print-icon {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
}

.jrnl-det .img-wrap {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 2px 9px 40px 0 rgba(31, 162, 169, 0.14);
}

.jrnl-det .img-wrap img {
    display: block;
    width: 100%;
    height: 360px;
    object-fit: cover;
    border-radius: 16px;
}

.jrnl-det .img-wrap::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(31, 162, 169, 0.18) 0%, transparent 55%, rgba(218, 186, 198, 0.22) 100%);
    border-radius: 16px;
    pointer-events: none;
}

.jrnl-det .quote-mark {
    position: absolute;
    top: -16px;
    right: -8px;
    font-size: 180px;
    line-height: 1;
    color: rgba(31, 162, 169, 0.07);
    font-weight: 900;
    pointer-events: none;
    user-select: none;
    z-index: 0;
}

.jrnl-det .art-body-sec {
    padding: 80px 16px;
    background: #fff;
    position: relative;
}

.jrnl-det .body-grid {
    max-width: 1320px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 80px;
    align-items: start;
}

.jrnl-det .body-col {
    opacity: 0;
    animation: col-appear 0.6s 0.1s ease-out forwards;
}

.jrnl-det .pull-col {
    opacity: 0;
    animation: col-appear 0.6s 0.28s ease-out forwards;
}

.jrnl-det .art-body p {
    font-size: 18px;
    line-height: 1.75;
    color: #1e3a3d;
    margin: 0 0 16px;
}

.jrnl-det .art-body h2 {
    font-size: 30px;
    font-weight: 800;
    line-height: 1.3;
    color: #162f31;
    margin: 40px 0 16px;
    letter-spacing: -0.01em;
}

.jrnl-det .art-body h2 .accent-half {
    color: #1FA2A9;
}

.jrnl-det .art-body small {
    font-size: 15px;
    color: #4a7a7e;
    line-height: 1.55;
    display: block;
    margin-bottom: 16px;
}

.jrnl-det .art-body ul,
.jrnl-det .art-body ol {
    padding-left: 16px;
    margin: 0 0 16px;
}

.jrnl-det .art-body li {
    font-size: 18px;
    line-height: 1.75;
    color: #1e3a3d;
    margin-bottom: 8px;
}

.jrnl-det .art-body table {
    width: 100%;
    border-collapse: collapse;
    margin: 16px 0;
    font-size: 15px;
    line-height: 1.55;
}

.jrnl-det .art-body caption {
    font-size: 15px;
    color: #4a7a7e;
    text-align: left;
    margin-bottom: 8px;
    font-weight: 600;
    letter-spacing: 0.04em;
}

.jrnl-det .art-body thead th {
    background: #1FA2A9;
    color: #fff;
    font-weight: 700;
    padding: 8px 16px;
    text-align: left;
}

.jrnl-det .art-body tbody td {
    padding: 8px 16px;
    border-bottom: 1px solid rgba(31, 162, 169, 0.12);
    color: #1e3a3d;
}

.jrnl-det .art-body tbody tr:nth-child(even) td {
    background: rgba(211, 227, 221, 0.2);
}

.jrnl-det .art-body figure {
    margin: 16px 0;
}

.jrnl-det .art-body figcaption {
    font-size: 15px;
    color: #4a7a7e;
    margin-top: 8px;
    line-height: 1.55;
}

.jrnl-det .pull-sticky {
    position: sticky;
    top: 40px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.jrnl-det .pull-quote {
    background: linear-gradient(150deg, #e8f5f6 0%, #f5eef2 100%);
    border-left: 4px solid #1FA2A9;
    border-top: 1px solid rgba(31, 162, 169, 0.18);
    border-right: 1px solid rgba(218, 186, 198, 0.3);
    border-bottom: 1px solid rgba(218, 186, 198, 0.3) !important;
    border-radius: 8px;
    padding: 16px;
    box-shadow: 2px 7px 14px 0 rgba(218, 186, 198, 0.09);
}

.jrnl-det .pull-quote-text {
    font-size: 22px;
    font-weight: 700;
    line-height: 1.3;
    color: #162f31;
    margin: 0 0 8px;
}

.jrnl-det .pull-quote-attr {
    font-size: 15px;
    color: #4a7a7e;
    line-height: 1.55;
    margin: 0;
}

.jrnl-det .side-meta-card {
    background: #fff;
    border-radius: 8px;
    border: 1.5px solid rgba(31, 162, 169, 0.15);
    box-shadow: 2px 1px 2px 0 rgba(31, 162, 169, 0.07);
    padding: 16px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    transition: box-shadow 0.12s ease-out;
}

.jrnl-det .side-meta-card:hover {
    background: rgba(31, 162, 169, 0.04);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    box-shadow: 2px 7px 14px 0 rgba(31, 162, 169, 0.09);
}

.jrnl-det .meta-item {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 8px;
    font-size: 15px;
    color: #3d6366;
    line-height: 1.55;
}

.jrnl-det .meta-item strong {
    color: #162f31;
    font-weight: 700;
}

.jrnl-det .meta-dot {
    width: 8px;
    height: 8px;
    border-radius: 44px;
    background: #1FA2A9;
    flex-shrink: 0;
}

.jrnl-det .related-strip {
    background: linear-gradient(100deg, #d3e3dd 0%, #e8f5f6 60%, #dabac6 100%);
    padding: 40px 16px;
    position: relative;
    overflow: hidden;
}

.jrnl-det .related-strip::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%231FA2A9' fill-opacity='0.04'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    pointer-events: none;
}

.jrnl-det .strip-inner {
    max-width: 1320px;
    margin: 0 auto;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    position: relative;
    z-index: 1;
    flex-wrap: wrap;
}

.jrnl-det .strip-text {
    display: flex;
    flex-direction: column;
    gap: 8px;
    flex: 1 1 280px;
}

.jrnl-det .strip-label {
    font-size: 15px;
    font-weight: 700;
    letter-spacing: 0.1em;
    color: #1FA2A9;
    text-transform: uppercase;
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 8px;
}

.jrnl-det .strip-h {
    font-size: 30px;
    font-weight: 800;
    line-height: 1.1;
    color: #162f31;
    margin: 0;
    letter-spacing: -0.01em;
}

.jrnl-det .strip-h .accent-half {
    color: #1FA2A9;
}

.jrnl-det .strip-p {
    font-size: 18px;
    line-height: 1.55;
    color: #2a4d50;
    margin: 0;
    max-width: 480px;
}

.jrnl-det .strip-actions {
    display: flex;
    flex-direction: row;
    gap: 16px;
    align-items: center;
    flex-wrap: wrap;
    flex-shrink: 0;
}

.jrnl-det .btn-primary {
    display: inline-flex;
    flex-direction: row;
    align-items: center;
    gap: 8px;
    background: #1FA2A9;
    color: #fff;
    font-size: 18px;
    font-weight: 700;
    padding: 16px 40px;
    border-radius: 8px;
    border: 2px solid #1FA2A9;
    cursor: pointer;
    text-decoration: none;
    transition: background 0.1s ease-out, border-color 0.1s ease-out;
    box-shadow: 2px 7px 14px 0 rgba(31, 162, 169, 0.09);
}

.jrnl-det .btn-primary:hover {
    background: #178a91;
    border-color: #158a90;
}

.jrnl-det .btn-primary:focus {
    outline: 3px solid rgba(31, 162, 169, 0.4);
    outline-offset: 2px;
}

.jrnl-det .btn-outline {
    display: inline-flex;
    flex-direction: row;
    align-items: center;
    gap: 8px;
    background: transparent;
    color: #162f31;
    font-size: 18px;
    font-weight: 700;
    padding: 16px 40px;
    border-radius: 8px;
    border: 2px solid #162f31;
    cursor: pointer;
    text-decoration: none;
    transition: border-color 0.14s ease-out, color 0.14s ease-out;
}

.jrnl-det .btn-outline:hover {
    border-color: #1FA2A9;
    color: #1FA2A9;
}

.jrnl-det .btn-outline:focus {
    outline: 3px solid rgba(31, 162, 169, 0.4);
    outline-offset: 2px;
}

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

    .jrnl-det .body-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .jrnl-det .pull-sticky {
        position: static;
    }

    .jrnl-det .art-h1 {
        font-size: 30px;
    }
}

@media (max-width: 768px) {
    .jrnl-det .art-lead {
        padding: 40px 16px 40px;
    }

    .jrnl-det .art-body-sec {
        padding: 40px 16px;
    }

    .jrnl-det .art-h1 {
        font-size: 30px;
    }

    .jrnl-det .strip-inner {
        flex-direction: column;
        align-items: flex-start;
        gap: 16px;
    }

    .jrnl-det .strip-actions {
        flex-direction: column;
        align-items: flex-start;
        width: 100%;
    }

    .jrnl-det .btn-primary,
    .jrnl-det .btn-outline {
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 375px) {
    .jrnl-det .art-h1 {
        font-size: 22px;
    }

    .jrnl-det .strip-h {
        font-size: 22px;
    }

    .jrnl-det .art-body p,
    .jrnl-det .art-body li {
        font-size: 15px;
    }
}

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

.frnt .pg-bound {
    max-width: 1320px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 40px;
    padding-right: 40px;
}

@media (max-width: 768px) {
    .frnt .pg-bound {
        padding-left: 16px;
        padding-right: 16px;
    }
}

.frnt .lbl-sm {
    display: inline-block;
    font-size: 15px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #1FA2A9;
}

.frnt .accent-a {
    color: #1FA2A9;
}

.frnt .accent-b {
    color: #b5849a;
}

.frnt a {
    text-decoration: none !important;
}

.frnt .title-blk {
    position: relative;
    padding-top: 80px;
    padding-bottom: 80px;
    background-color: #f2f4f3;
    overflow: hidden;
}

.frnt .title-blk::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='300' height='300'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4' stitchTiles='stitch'/%3E%3CfeColorMatrix type='saturate' values='0'/%3E%3C/filter%3E%3Crect width='300' height='300' filter='url(%23n)' opacity='0.06'/%3E%3C/svg%3E");
    background-size: 300px 300px;
    pointer-events: none;
}

.frnt .title-bg-num {
    position: absolute;
    top: -16px;
    right: -16px;
    font-size: 260px;
    font-weight: 900;
    line-height: 1.1;
    color: rgba(31, 162, 169, 0.06);
    pointer-events: none;
    user-select: none;
    letter-spacing: -0.04em;
}

@media (max-width: 768px) {
    .frnt .title-bg-num {
        font-size: 120px;
        right: -8px;
    }
}

.frnt .title-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
    position: relative;
    z-index: 1;
}

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

.frnt .title-left {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.frnt .title-h1 {
    font-size: 58px;
    line-height: 1.1;
    font-weight: 900;
    letter-spacing: -0.02em;
    color: #1a2e2f;
    margin: 0;
}

@media (max-width: 1024px) {
    .frnt .title-h1 {
        font-size: 42px;
    }
}

@media (max-width: 768px) {
    .frnt .title-h1 {
        font-size: 30px;
    }
}

.frnt .title-sub {
    font-size: 22px;
    font-weight: 700;
    line-height: 1.3;
    color: #2d4546;
    margin: 0;
}

@media (max-width: 768px) {
    .frnt .title-sub {
        font-size: 18px;
    }
}

.frnt .title-desc {
    font-size: 18px;
    line-height: 1.55;
    color: #3a5253;
    margin: 0;
    max-width: 480px;
}

.frnt .title-actions {
    display: flex;
    flex-direction: row;
    gap: 16px;
    align-items: center;
    flex-wrap: wrap;
    margin-top: 8px;
}

.frnt .btn-prim {
    display: inline-block;
    padding: 16px 40px;
    background-color: #1FA2A9;
    color: #fff;
    font-size: 15px;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    border: 2px solid #1FA2A9;
    border-radius: 8px;
    cursor: pointer;
    transition: background-color 0.1s ease-out, border-color 0.12s ease-out;
}

.frnt .btn-prim:hover {
    background-color: #178a90;
    border-color: #178a90;
}

.frnt .btn-sec {
    display: inline-block;
    padding: 16px 40px;
    background-color: transparent;
    color: #1FA2A9;
    font-size: 15px;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    border: 2px solid #1FA2A9;
    border-radius: 8px;
    cursor: pointer;
    transition: border-color 0.12s ease-out, color 0.1s ease-out;
}

.frnt .btn-sec:hover {
    border-color: #0d6b70;
    color: #0d6b70;
}

.frnt .title-right {
    position: relative;
}

.frnt .title-img-wrap {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 2px 9px 40px 0 rgba(31, 162, 169, 0.14);
}

.frnt .title-img-wrap img {
    width: 100%;
    height: 480px;
    object-fit: cover;
    display: block;
    filter: saturate(1.15) brightness(0.97) sepia(0.08);
    transition: transform 0.14s ease-out;
}

@media (max-width: 768px) {
    .frnt .title-img-wrap img {
        height: 280px;
    }
}

.frnt .title-img-wrap:hover img {
    transform: scale(1.02);
}

.frnt .title-badge {
    position: absolute;
    bottom: 16px;
    left: 16px;
    background-color: rgba(31, 162, 169, 0.93);
    color: #fff;
    padding: 8px 16px;
    border-radius: 4px;
    font-size: 15px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    box-shadow: 2px 7px 14px 0 rgba(31, 162, 169, 0.09);
}

.frnt .div-tri-1 {
    display: block;
    width: 100%;
    line-height: 0;
    background-color: #f2f4f3;
}

.frnt .div-tri-1 svg {
    display: block;
    width: 100%;
}

.frnt .mirror-blk {
    padding-top: 80px;
    padding-bottom: 80px;
    background-color: #ffffff;
}

.frnt .mirror-layout {
    display: grid;
    grid-template-columns: 5fr 4fr 3fr;
    gap: 40px;
    align-items: start;
}

@media (max-width: 1024px) {
    .frnt .mirror-layout {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .frnt .mirror-layout {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

.frnt .mirror-lead {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.frnt .mirror-h2 {
    font-size: 42px;
    font-weight: 900;
    line-height: 1.1;
    letter-spacing: -0.01em;
    color: #1a2e2f;
    margin: 0;
}

@media (max-width: 768px) {
    .frnt .mirror-h2 {
        font-size: 30px;
    }
}

.frnt .mirror-body {
    font-size: 18px;
    line-height: 1.55;
    color: #3a5253;
    margin: 0;
}

.frnt .mirror-pull {
    display: flex;
    flex-direction: column;
    gap: 16px;
    padding-top: 8px;
}

.frnt .pull-phrase {
    font-size: 22px;
    font-weight: 800;
    line-height: 1.3;
    color: #1FA2A9;
    border-left: 4px solid #DABAC6;
    border-top: 1px solid #DABAC6;
    padding-left: 16px;
    padding-top: 8px;
}

.frnt .mirror-img-col {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.frnt .mirror-img-wrap {
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 2px 7px 14px 0 rgba(31, 162, 169, 0.09);
    transition: box-shadow 0.14s ease-out;
}

.frnt .mirror-img-wrap:hover {
    box-shadow: 2px 9px 40px 0 rgba(31, 162, 169, 0.14);
}

.frnt .mirror-img-wrap img {
    width: 100%;
    height: 240px;
    object-fit: cover;
    display: block;
}

.frnt .mirror-stat-row {
    display: flex;
    flex-direction: row;
    gap: 16px;
}

.frnt .mirror-stat {
    flex: 1;
    background-color: #D3E3DD;
    border-radius: 8px;
    padding: 16px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.frnt .stat-num {
    font-size: 42px;
    font-weight: 900;
    line-height: 1.1;
    color: #1FA2A9;
    letter-spacing: -0.02em;
}

.frnt .stat-label {
    font-size: 15px;
    line-height: 1.3;
    color: #2d4546;
    font-weight: 600;
}

.frnt .div-flat-2 {
    height: 8px;
    background: linear-gradient(135deg, #D3E3DD 0%, #DABAC6 50%, #1FA2A9 100%);
}

.frnt .support-blk {
    padding-top: 80px;
    padding-bottom: 80px;
    background: linear-gradient(160deg, #e8f2ef 0%, #f5edf1 40%, #e0f4f5 100%);
    animation: bg-wash 9s ease-in-out infinite alternate;
}

@keyframes bg-wash {
    0% {
        background: linear-gradient(160deg, #e8f2ef 0%, #f5edf1 40%, #e0f4f5 100%);
    }

    100% {
        background: linear-gradient(160deg, #e0f4f5 0%, #e8f2ef 40%, #f5edf1 100%);
    }
}

.frnt .support-top {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 40px;
    max-width: 640px;
}

.frnt .support-h2 {
    font-size: 42px;
    font-weight: 900;
    line-height: 1.1;
    letter-spacing: -0.01em;
    color: #1a2e2f;
    margin: 0;
}

@media (max-width: 768px) {
    .frnt .support-h2 {
        font-size: 30px;
    }
}

.frnt .support-desc {
    font-size: 18px;
    line-height: 1.55;
    color: #3a5253;
    margin: 0;
}

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

@media (max-width: 1024px) {
    .frnt .support-cards {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .frnt .support-cards {
        grid-template-columns: 1fr;
    }
}

.frnt .sup-card {
    background-color: #ffffff;
    border-radius: 16px;
    padding: 40px;
    display: flex;
    flex-direction: column;
    gap: 16px;
    box-shadow: 2px 1px 2px 0 rgba(31, 162, 169, 0.07);
    transition: box-shadow 0.13s ease-out, transform 0.11s ease-out;
}

.frnt .sup-card:hover {
    box-shadow: 2px 9px 40px 0 rgba(31, 162, 169, 0.14);
    transform: translateY(-2px);
}

.frnt .sup-icon {
    width: 44px;
    height: 44px;
    border-radius: 8px;
    background-color: #D3E3DD;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.frnt .sup-icon svg {
    width: 22px;
    height: 22px;
}

.frnt .sup-card-h {
    font-size: 18px;
    font-weight: 800;
    line-height: 1.3;
    color: #1a2e2f;
    margin: 0;
    letter-spacing: 0.02em;
}

.frnt .sup-card-p {
    font-size: 15px;
    line-height: 1.55;
    color: #3a5253;
    margin: 0;
}

.frnt .support-img-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-top: 40px;
}

@media (max-width: 768px) {
    .frnt .support-img-row {
        grid-template-columns: 1fr;
    }
}

.frnt .sup-img-wrap {
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 2px 7px 14px 0 rgba(31, 162, 169, 0.09);
    transition: box-shadow 0.14s ease-out;
}

.frnt .sup-img-wrap:hover {
    box-shadow: 2px 9px 40px 0 rgba(31, 162, 169, 0.14);
}

.frnt .sup-img-wrap img {
    width: 100%;
    height: 260px;
    object-fit: cover;
    display: block;
}

.frnt .div-border-3 {
    height: 1px;
    background-color: #DABAC6;
    margin-left: 40px;
    margin-right: 40px;
}

.frnt .voices-blk {
    padding-top: 80px;
    padding-bottom: 80px;
    background-color: #1a2e2f;
}

.frnt .voices-top {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 40px;
}

.frnt .voices-h2 {
    font-size: 42px;
    font-weight: 900;
    line-height: 1.1;
    letter-spacing: -0.01em;
    color: #D3E3DD;
    margin: 0;
}

@media (max-width: 768px) {
    .frnt .voices-h2 {
        font-size: 30px;
    }
}

.frnt .voices-lbl {
    color: #DABAC6;
}

.frnt .voices-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

@media (max-width: 768px) {
    .frnt .voices-grid {
        grid-template-columns: 1fr;
    }
}

.frnt .voice-card {
    background-color: rgba(31, 162, 169, 0.1);
    border: 1px solid rgba(31, 162, 169, 0.2);
    border-radius: 16px;
    padding: 40px;
    display: flex;
    flex-direction: column;
    gap: 16px;
    transition: border-color 0.12s ease-out;
}

.frnt .voice-card:hover {
    border-color: rgba(31, 162, 169, 0.5);
}

.frnt .voice-quote {
    font-size: 18px;
    line-height: 1.55;
    color: #c8dbd9;
    margin: 0;
    font-style: italic;
}

.frnt .voice-meta {
    display: flex;
    flex-direction: row;
    gap: 16px;
    align-items: center;
    margin-top: 8px;
}

.frnt .voice-avatar {
    width: 44px;
    height: 44px;
    border-radius: 44px;
    background: linear-gradient(135deg, #1FA2A9 0%, #DABAC6 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    font-weight: 800;
    color: #fff;
    flex-shrink: 0;
}

.frnt .voice-id {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.frnt .voice-name {
    font-size: 15px;
    font-weight: 700;
    color: #D3E3DD;
    line-height: 1.3;
}

.frnt .voice-role {
    font-size: 15px;
    color: #8ab5b7;
    line-height: 1.3;
}

.frnt .voice-result {
    display: inline-block;
    background-color: rgba(31, 162, 169, 0.2);
    border-radius: 4px;
    padding: 8px 16px;
    font-size: 15px;
    font-weight: 700;
    color: #7dd4d8;
    letter-spacing: 0.04em;
    align-self: flex-start;
}

.frnt .div-mesh-4 {
    height: 40px;
    background: linear-gradient(180deg, #1a2e2f 0%, #f7f5f0 100%);
}

.frnt .rep-blk {
    padding-top: 80px;
    padding-bottom: 80px;
    background-color: #f7f5f0;
}

.frnt .rep-layout {
    display: grid;
    grid-template-columns: 2fr 3fr;
    gap: 80px;
    align-items: start;
}

@media (max-width: 1024px) {
    .frnt .rep-layout {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

.frnt .rep-left {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.frnt .rep-h2 {
    font-size: 42px;
    font-weight: 900;
    line-height: 1.1;
    letter-spacing: -0.01em;
    color: #1a2e2f;
    margin: 0;
}

@media (max-width: 768px) {
    .frnt .rep-h2 {
        font-size: 30px;
    }
}

.frnt .rep-desc {
    font-size: 18px;
    line-height: 1.55;
    color: #3a5253;
    margin: 0;
}

.frnt .rep-img-wrap {
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 2px 9px 40px 0 rgba(218, 186, 198, 0.14);
    margin-top: 8px;
    transition: box-shadow 0.14s ease-out;
}

.frnt .rep-img-wrap:hover {
    box-shadow: 2px 9px 40px 0 rgba(218, 186, 198, 0.22);
}

.frnt .rep-img-wrap img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    display: block;
}

.frnt .rep-right {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.frnt .rep-item {
    display: flex;
    flex-direction: row;
    gap: 16px;
    align-items: flex-start;
    padding: 16px;
    border-radius: 8px;
    background-color: #ffffff;
    box-shadow: 2px 1px 2px 0 rgba(31, 162, 169, 0.07);
    transition: box-shadow 0.12s ease-out;
}

.frnt .rep-item:hover {
    box-shadow: 2px 7px 14px 0 rgba(31, 162, 169, 0.09);
}

.frnt .rep-dot {
    width: 8px;
    height: 8px;
    border-radius: 44px;
    background-color: #1FA2A9;
    flex-shrink: 0;
    margin-top: 8px;
}

.frnt .rep-item-text {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.frnt .rep-item-h {
    font-size: 15px;
    font-weight: 800;
    color: #1a2e2f;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    margin: 0;
}

.frnt .rep-item-p {
    font-size: 15px;
    line-height: 1.55;
    color: #3a5253;
    margin: 0;
}

.frnt .div-accent-5 {
    height: 8px;
    background: linear-gradient(90deg, #DABAC6 0%, #D3E3DD 60%, #1FA2A9 100%);
}

.frnt .journey-blk {
    padding-top: 80px;
    padding-bottom: 80px;
    background-color: #ffffff;
}

.frnt .journey-top {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 40px;
    max-width: 680px;
}

.frnt .journey-h2 {
    font-size: 42px;
    font-weight: 900;
    line-height: 1.1;
    letter-spacing: -0.01em;
    color: #1a2e2f;
    margin: 0;
}

@media (max-width: 768px) {
    .frnt .journey-h2 {
        font-size: 30px;
    }
}

.frnt .journey-desc {
    font-size: 18px;
    line-height: 1.55;
    color: #3a5253;
    margin: 0;
}

.frnt .journey-layout {
    display: grid;
    grid-template-columns: 3fr 2fr;
    gap: 40px;
    align-items: start;
}

@media (max-width: 1024px) {
    .frnt .journey-layout {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

.frnt .journey-phases {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.frnt .phase-item {
    display: flex;
    flex-direction: row;
    gap: 16px;
    align-items: stretch;
}

.frnt .phase-line-col {
    display: flex;
    flex-direction: column;
    align-items: center;
    flex-shrink: 0;
    width: 16px;
}

.frnt .phase-dot {
    width: 16px;
    height: 16px;
    border-radius: 44px;
    background-color: #1FA2A9;
    flex-shrink: 0;
}

.frnt .phase-connector {
    width: 2px;
    flex: 1;
    background-color: #D3E3DD;
    min-height: 16px;
}

.frnt .phase-body {
    padding-bottom: 16px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    flex: 1;
}

.frnt .phase-h {
    font-size: 18px;
    font-weight: 800;
    line-height: 1.3;
    color: #1a2e2f;
    margin: 0;
    letter-spacing: 0.02em;
}

.frnt .phase-p {
    font-size: 15px;
    line-height: 1.55;
    color: #3a5253;
    margin: 0;
}

.frnt .journey-aside {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.frnt .journey-img-wrap {
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 2px 7px 14px 0 rgba(31, 162, 169, 0.09);
    transition: box-shadow 0.14s ease-out;
}

.frnt .journey-img-wrap:hover {
    box-shadow: 2px 9px 40px 0 rgba(31, 162, 169, 0.14);
}

.frnt .journey-img-wrap img {
    width: 100%;
    height: 320px;
    object-fit: cover;
    display: block;
}

.frnt .journey-note {
    background-color: #D3E3DD;
    border-radius: 8px;
    padding: 16px;
    border-left: 4px solid #1FA2A9;
    border-top: 1px solid #1FA2A9;
}

.frnt .journey-note-p {
    font-size: 15px;
    line-height: 1.55;
    color: #2d4546;
    margin: 0;
    font-weight: 600;
}

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

.abt-us .pg-limiter {
    max-width: 1320px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 40px;
    padding-right: 40px;
}

@media (max-width: 768px) {
    .abt-us .pg-limiter {
        padding-left: 16px;
        padding-right: 16px;
    }
}

.abt-us .divider-dot {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 8px;
    margin-bottom: 40px;
}

.abt-us .divider-dot span.line {
    width: 48px;
    height: 1px;
    background: #1FA2A9;
    display: block;
}

.abt-us .divider-dot span.dot {
    width: 5px;
    height: 5px;
    border-radius: 44px;
    background: #1FA2A9;
    display: block;
}

.abt-us .divider-dot span.line-end {
    width: 24px;
    height: 1px;
    background: #1FA2A9;
    display: block;
}

.abt-us .two-tone-head .part-a {
    color: #1a3a3c;
}

.abt-us .two-tone-head .part-b {
    color: #1FA2A9;
}

@keyframes abt-blur-in {
    from {
        filter: blur(6px);
        opacity: 0.4;
    }

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

.abt-us .blur-load {
    animation: abt-blur-in 0.55s ease-out forwards;
}

.abt-us .frame-deco {
    position: relative;
}

.abt-us .frame-deco::before,
.abt-us .frame-deco::after {
    content: "";
    position: absolute;
    pointer-events: none;
}

.abt-us .frame-deco::before {
    top: 8px;
    left: 8px;
    right: 8px;
    bottom: 8px;
    border: 1px solid rgba(31, 162, 169, 0.28);
    border-radius: 4px;
    z-index: 1;
}

.abt-us .frame-deco::after {
    top: 14px;
    left: 14px;
    right: 14px;
    bottom: 14px;
    border: 1px solid rgba(218, 186, 198, 0.22);
    border-radius: 4px;
    z-index: 1;
}

.abt-us .frame-deco .frame-inner {
    position: relative;
    z-index: 2;
}

.abt-us .grain-overlay {
    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='g'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='200' height='200' filter='url(%23g)' opacity='0.06'/%3E%3C/svg%3E");
    pointer-events: none;
    border-radius: inherit;
}

.abt-us .lbl-tag {
    display: inline-block;
    font-size: 15px;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #1FA2A9;
    margin-bottom: 16px;
}

.abt-us .pull-quote-right {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: start;
}

@media (max-width: 768px) {
    .abt-us .pull-quote-right {
        grid-template-columns: 1fr;
        gap: 16px;
    }
}

.abt-us .pull-quote-right .pq-body p {
    font-size: 18px;
    line-height: 1.55;
    color: #2c3e3f;
    margin-bottom: 16px;
}

.abt-us .pull-quote-right .pq-aside {
    font-size: 22px;
    line-height: 1.3;
    color: #1FA2A9;
    font-weight: 700;
    border-left: 3px solid #DABAC6;
    border-top: 1px solid rgba(218, 186, 198, 0.4);
    padding: 16px 16px 16px 16px;
    border-radius: 4px;
    background: rgba(211, 227, 221, 0.18);
}

.abt-us .section-a {
    position: relative;
    padding-top: 0;
    padding-bottom: 0;
    overflow: hidden;
}

.abt-us .section-a .bg-img-wrap {
    position: relative;
    width: 100%;
    min-height: 480px;
    display: flex;
    align-items: flex-end;
}

@media (max-width: 768px) {
    .abt-us .section-a .bg-img-wrap {
        min-height: 340px;
    }
}

.abt-us .section-a .bg-img-wrap img.hero-bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 30%;
    display: block;
}

.abt-us .section-a .grad-overlay {
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 60% 10%, rgba(31, 162, 169, 0.72) 0%, rgba(31, 162, 169, 0.55) 35%, rgba(20, 50, 52, 0.88) 100%);
    pointer-events: none;
}

.abt-us .section-a .hero-txt-block {
    position: relative;
    z-index: 2;
    width: 100%;
    padding: 80px 40px 80px 40px;
    max-width: 1320px;
    margin: 0 auto;
}

@media (max-width: 768px) {
    .abt-us .section-a .hero-txt-block {
        padding: 40px 16px 40px 16px;
    }
}

.abt-us .section-a .hero-eyebrow {
    font-size: 15px;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: #D3E3DD;
    margin-bottom: 16px;
}

.abt-us .section-a .hero-h1 {
    font-size: 58px;
    line-height: 1.1;
    font-weight: 800;
    color: #fff;
    margin-bottom: 16px;
    max-width: 680px;
}

@media (max-width: 1024px) {
    .abt-us .section-a .hero-h1 {
        font-size: 42px;
    }
}

@media (max-width: 768px) {
    .abt-us .section-a .hero-h1 {
        font-size: 30px;
    }
}

.abt-us .section-a .hero-sub {
    font-size: 18px;
    line-height: 1.55;
    color: rgba(211, 227, 221, 0.92);
    max-width: 520px;
    margin-bottom: 40px;
}

@media (max-width: 768px) {
    .abt-us .section-a .hero-sub {
        font-size: 15px;
    }
}

.abt-us .section-a .hero-stats {
    display: flex;
    flex-direction: row;
    gap: 40px;
    flex-wrap: wrap;
}

.abt-us .section-a .stat-item {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.abt-us .section-a .stat-num {
    font-size: 42px;
    line-height: 1.1;
    font-weight: 800;
    color: #fff;
}

.abt-us .section-a .stat-label {
    font-size: 15px;
    line-height: 1.3;
    color: #D3E3DD;
    letter-spacing: 0.06em;
}

.abt-us .section-b {
    background: #fff;
    padding-top: 80px;
    padding-bottom: 80px;
}

.abt-us .section-b .zig-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    margin-bottom: 80px;
}

.abt-us .section-b .zig-row:last-child {
    margin-bottom: 0;
}

.abt-us .section-b .zig-row.rev {
    direction: ltr;
}

.abt-us .section-b .zig-row.rev .zig-img {
    order: 2;
}

.abt-us .section-b .zig-row.rev .zig-copy {
    order: 1;
}

@media (max-width: 1024px) {
    .abt-us .section-b .zig-row {
        gap: 40px;
    }
}

@media (max-width: 768px) {
    .abt-us .section-b .zig-row {
        grid-template-columns: 1fr;
        gap: 16px;
        margin-bottom: 40px;
    }

    .abt-us .section-b .zig-row.rev .zig-img {
        order: 0;
    }

    .abt-us .section-b .zig-row.rev .zig-copy {
        order: 0;
    }
}

.abt-us .section-b .zig-img {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 2px 9px 40px 0 rgba(31, 162, 169, 0.14);
}

.abt-us .section-b .zig-img img {
    width: 100%;
    height: 360px;
    object-fit: cover;
    display: block;
    border-radius: 8px;
}

@media (max-width: 768px) {
    .abt-us .section-b .zig-img img {
        height: 220px;
    }
}

.abt-us .section-b .zig-copy h2 {
    font-size: 42px;
    line-height: 1.1;
    font-weight: 800;
    letter-spacing: 0.02em;
    margin-bottom: 16px;
}

@media (max-width: 1024px) {
    .abt-us .section-b .zig-copy h2 {
        font-size: 30px;
    }
}

.abt-us .section-b .zig-copy h3 {
    font-size: 30px;
    line-height: 1.1;
    font-weight: 800;
    letter-spacing: 0.02em;
    margin-bottom: 16px;
}

@media (max-width: 1024px) {
    .abt-us .section-b .zig-copy h3 {
        font-size: 22px;
    }
}

.abt-us .section-b .zig-copy p {
    font-size: 18px;
    line-height: 1.55;
    color: #2c3e3f;
    margin-bottom: 16px;
}

.abt-us .section-b .zig-copy p:last-child {
    margin-bottom: 0;
}

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

.abt-us .section-b .detail-list li {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    gap: 8px;
    font-size: 15px;
    line-height: 1.55;
    color: #2c3e3f;
}

.abt-us .section-b .detail-list li .dl-icon {
    flex-shrink: 0;
    margin-top: 3px;
    width: 16px;
    height: 16px;
}

.abt-us .section-c {
    background: linear-gradient(160deg, #D3E3DD 0%, rgba(218, 186, 198, 0.3) 55%, #fff 100%);
    padding-top: 80px;
    padding-bottom: 80px;
}

.abt-us .section-c .team-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

@media (max-width: 1024px) {
    .abt-us .section-c .team-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }
}

@media (max-width: 768px) {
    .abt-us .section-c .team-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }
}

.abt-us .section-c .team-card {
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 2px 7px 14px 0 rgba(31, 162, 169, 0.09);
    transition: box-shadow 0.12s ease-out, transform 0.1s ease-out;
    cursor: default;
}

.abt-us .section-c .team-card:hover {
    box-shadow: 2px 9px 40px 0 rgba(31, 162, 169, 0.14);
    transform: translateY(-2px);
}

.abt-us .section-c .team-card .card-img-wrap {
    position: relative;
    overflow: hidden;
}

.abt-us .section-c .team-card .card-img-wrap img {
    width: 100%;
    height: 240px;
    object-fit: cover;
    object-position: center top;
    display: block;
    transition: transform 0.14s ease-out;
}

.abt-us .section-c .team-card:hover .card-img-wrap img {
    transform: scale(1.03);
}

.abt-us .section-c .team-card .card-body {
    padding: 16px;
}

.abt-us .section-c .team-card .card-name {
    font-size: 18px;
    line-height: 1.3;
    font-weight: 700;
    color: #1a3a3c;
    margin-bottom: 8px;
}

.abt-us .section-c .team-card .card-role {
    font-size: 15px;
    line-height: 1.3;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #1FA2A9;
    margin-bottom: 8px;
}

.abt-us .section-c .team-card .card-bio {
    font-size: 15px;
    line-height: 1.55;
    color: #3a4e50;
}

.abt-us .section-c .team-top {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    justify-content: space-between;
    gap: 40px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.abt-us .section-c .team-top h2 {
    font-size: 42px;
    line-height: 1.1;
    font-weight: 800;
    letter-spacing: 0.02em;
    max-width: 480px;
}

@media (max-width: 768px) {
    .abt-us .section-c .team-top h2 {
        font-size: 30px;
    }
}

.abt-us .section-c .team-top .team-desc {
    font-size: 18px;
    line-height: 1.55;
    color: #2c3e3f;
    max-width: 380px;
    align-self: flex-end;
}

@media (max-width: 768px) {
    .abt-us .section-c .team-top {
        flex-direction: column;
        gap: 16px;
    }
}

@keyframes abt-card-cycle {

    0%,
    20% {
        box-shadow: 2px 9px 40px 0 rgba(31, 162, 169, 0.22);
        transform: translateY(-3px);
    }

    21%,
    100% {
        box-shadow: 2px 7px 14px 0 rgba(31, 162, 169, 0.09);
        transform: translateY(0);
    }
}

.abt-us .section-c .team-card:nth-child(1) {
    animation: abt-card-cycle 6s 0s infinite ease-out;
}

.abt-us .section-c .team-card:nth-child(2) {
    animation: abt-card-cycle 6s 2s infinite ease-out;
}

.abt-us .section-c .team-card:nth-child(3) {
    animation: abt-card-cycle 6s 4s infinite ease-out;
}

.abt-us .section-c .team-card:hover {
    animation: none;
}

.abt-us .section-b .db-border {
    position: relative;
    padding: 16px;
    border: 1px solid rgba(31, 162, 169, 0.3);
    border-radius: 8px;
}

.abt-us .section-b .db-border::after {
    content: "";
    position: absolute;
    inset: 5px;
    border: 1px solid rgba(218, 186, 198, 0.35);
    border-radius: 4px;
    pointer-events: none;
}

.abt-us .section-b .db-border .db-inner {
    position: relative;
    z-index: 1;
}

.abt-us .section-b .milestone-row {
    display: flex;
    flex-direction: row;
    gap: 40px;
    margin-top: 40px;
    flex-wrap: wrap;
}

.abt-us .section-b .ms-item {
    flex: 1 1 140px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    border-left: 3px solid #DABAC6;
    border-top: 1px solid rgba(31, 162, 169, 0.2);
    padding: 8px 8px 8px 16px;
    border-radius: 4px;
}

.abt-us .section-b .ms-num {
    font-size: 30px;
    line-height: 1.1;
    font-weight: 800;
    color: #1FA2A9;
}

.abt-us .section-b .ms-label {
    font-size: 15px;
    line-height: 1.3;
    color: #3a4e50;
    letter-spacing: 0.04em;
}

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

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

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

.srvs-pg .reveal-load {
    animation: srvs-reveal 0.14s ease-out both;
}

@keyframes srvs-reveal {
    from {
        transform: scale(0.9);
        opacity: 0.7;
    }

    to {
        transform: scale(1);
        opacity: 1;
    }
}

.srvs-pg .reveal-load.delay-1 {
    animation-delay: 0.05s;
}

.srvs-pg .reveal-load.delay-2 {
    animation-delay: 0.09s;
}

.srvs-pg .reveal-load.delay-3 {
    animation-delay: 0.13s;
}

.srvs-pg .dash-accent {
    display: inline-block;
    width: 22px;
    height: 3px;
    background: #1FA2A9;
    border-radius: 4px;
    margin-right: 8px;
    vertical-align: middle;
    flex-shrink: 0;
}

.srvs-pg .divider-thin {
    border: none;
    border-top: 1px solid #d0dbd8;
    margin: 0;
}

.srvs-pg .two-tone-a {
    color: #1b3a3c;
}

.srvs-pg .two-tone-b {
    color: #1FA2A9;
}

.srvs-pg .srvs-title-blk {
    position: relative;
    background: linear-gradient(135deg, #d8eeec 0%, #e8d6de 40%, #c9e0da 70%, #b8d4ce 100%);
    padding-top: 80px;
    padding-bottom: 80px;
    overflow: hidden;
}

.srvs-pg .srvs-title-blk .decor-stripe {
    position: absolute;
    top: 0;
    left: 0;
    width: 6px;
    height: 100%;
    background: linear-gradient(180deg, #1FA2A9 0%, #DABAC6 100%);
    border-radius: 0 4px 4px 0;
}

.srvs-pg .srvs-title-blk .img-col {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    flex: 0 0 480px;
    height: 340px;
    box-shadow: 2px 9px 40px 0 rgba(31, 162, 169, 0.14);
}

.srvs-pg .srvs-title-blk .img-col img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.12s ease-out;
}

.srvs-pg .srvs-title-blk .img-col .img-grad-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(211, 227, 221, 0.72) 0%, rgba(218, 186, 198, 0.28) 60%, transparent 100%);
    pointer-events: none;
}

.srvs-pg .srvs-title-blk .img-col .color-wash {
    position: absolute;
    inset: 0;
    background: rgba(31, 162, 169, 0.38);
    opacity: 0;
    transition: opacity 0.12s ease-out;
    pointer-events: none;
    border-radius: 16px;
}

.srvs-pg .srvs-title-blk .img-col:hover .color-wash {
    opacity: 1;
}

.srvs-pg .srvs-title-blk .img-col:hover img {
    transform: scale(1.03);
}

.srvs-pg .srvs-title-blk .txt-col {
    flex: 1 1 0;
    min-width: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 16px;
}

.srvs-pg .srvs-title-blk .label-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 15px;
    font-weight: 600;
    letter-spacing: 0.08em;
    color: #1FA2A9;
    text-transform: uppercase;
}

.srvs-pg .srvs-title-blk h1 {
    font-size: 58px;
    line-height: 1.1;
    font-weight: 800;
    letter-spacing: -0.01em;
    margin: 0;
}

@media (max-width: 1024px) {
    .srvs-pg .srvs-title-blk h1 {
        font-size: 42px;
    }

    .srvs-pg .srvs-title-blk .img-col {
        flex: 0 0 340px;
        height: 280px;
    }
}

@media (max-width: 768px) {
    .srvs-pg .srvs-title-blk h1 {
        font-size: 30px;
    }

    .srvs-pg .srvs-title-blk .title-flex {
        flex-direction: column;
        gap: 40px;
    }

    .srvs-pg .srvs-title-blk .img-col {
        flex: 0 0 auto;
        width: 100%;
        height: 220px;
    }
}

@media (max-width: 375px) {
    .srvs-pg .srvs-title-blk h1 {
        font-size: 22px;
    }
}

.srvs-pg .srvs-title-blk .title-flex {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 80px;
}

.srvs-pg .srvs-grid-blk {
    background: #f2f7f5;
    padding-top: 80px;
    padding-bottom: 80px;
}

.srvs-pg .srvs-grid-blk .blk-header {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 40px;
}

.srvs-pg .srvs-grid-blk .blk-header h2 {
    font-size: 42px;
    line-height: 1.1;
    font-weight: 800;
    letter-spacing: -0.01em;
    margin: 0;
}

.srvs-pg .srvs-grid-blk .blk-header .sub-desc {
    font-size: 18px;
    line-height: 1.55;
    color: #3a5a5e;
    max-width: 560px;
    margin: 0;
}

.srvs-pg .srvs-mosaic {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    grid-template-rows: auto;
    gap: 16px;
}

.srvs-pg .svc-card {
    background: #ffffff;
    border-radius: 16px;
    padding: 40px;
    display: flex;
    flex-direction: column;
    gap: 16px;
    box-shadow: 2px 7px 14px 0 rgba(31, 162, 169, 0.09);
    transition: box-shadow 0.12s ease-out, background 0.1s linear;
    position: relative;
}

.srvs-pg .svc-card:hover {
    background: #f7fdfd;
    box-shadow: 2px 9px 40px 0 rgba(31, 162, 169, 0.14);
}

.srvs-pg .svc-card.span-8 {
    grid-column: span 8;
}

.srvs-pg .svc-card.span-4 {
    grid-column: span 4;
}

.srvs-pg .svc-card.span-5 {
    grid-column: span 5;
}

.srvs-pg .svc-card.span-7 {
    grid-column: span 7;
}

.srvs-pg .svc-card.span-6 {
    grid-column: span 6;
}

@media (max-width: 1024px) {

    .srvs-pg .svc-card.span-8,
    .srvs-pg .svc-card.span-4,
    .srvs-pg .svc-card.span-5,
    .srvs-pg .svc-card.span-7,
    .srvs-pg .svc-card.span-6 {
        grid-column: span 12;
    }
}

.srvs-pg .svc-card .card-icon {
    width: 44px;
    height: 44px;
    border-radius: 8px;
    background: linear-gradient(135deg, #D3E3DD 0%, #c5dcd6 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 2px 1px 2px 0 rgba(31, 162, 169, 0.07);
}

.srvs-pg .svc-card .card-icon svg {
    width: 22px;
    height: 22px;
    stroke: #1FA2A9;
    fill: none;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.srvs-pg .svc-card h3 {
    font-size: 22px;
    line-height: 1.3;
    font-weight: 700;
    margin: 0;
    color: #1b3a3c;
    letter-spacing: 0.01em;
}

.srvs-pg .svc-card .card-body {
    font-size: 15px;
    line-height: 1.55;
    color: #3a5a5e;
    margin: 0;
}

.srvs-pg .svc-card .card-meta {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 8px;
}

.srvs-pg .svc-card .meta-tag {
    font-size: 15px;
    font-weight: 600;
    letter-spacing: 0.05em;
    color: #1FA2A9;
    background: #D3E3DD;
    border-radius: 44px;
    padding: 8px 16px;
    line-height: 1.1;
}

.srvs-pg .svc-card .metric-row {
    display: flex;
    flex-direction: row;
    gap: 40px;
    flex-wrap: wrap;
    margin-top: 8px;
}

.srvs-pg .svc-card .metric-item {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.srvs-pg .svc-card .metric-num {
    font-size: 42px;
    font-weight: 800;
    line-height: 1.1;
    color: #1FA2A9;
    letter-spacing: -0.02em;
}

.srvs-pg .svc-card .metric-lbl {
    font-size: 15px;
    line-height: 1.3;
    color: #3a5a5e;
    font-weight: 500;
}

.srvs-pg .svc-card .pull-phrase {
    font-size: 22px;
    font-weight: 700;
    line-height: 1.3;
    color: #1FA2A9;
    border-left: 4px solid #DABAC6;
    border-top: 1px solid #DABAC6;
    padding: 16px 16px;
    border-radius: 4px;
    margin-top: 8px;
    background: rgba(218, 186, 198, 0.08);
    box-shadow: inset 0 4px 8px 0 rgba(218, 186, 198, 0.18);
}

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

.srvs-pg .svc-card .step-list li {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    gap: 16px;
}

.srvs-pg .svc-card .step-num {
    flex-shrink: 0;
    width: 28px;
    height: 28px;
    border-radius: 8px;
    background: #1FA2A9;
    color: #ffffff;
    font-size: 15px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1.1;
    box-shadow: 2px 1px 2px 0 rgba(31, 162, 169, 0.07);
}

.srvs-pg .svc-card .step-text {
    font-size: 15px;
    line-height: 1.55;
    color: #3a5a5e;
}

.srvs-pg .svc-card.featured {
    background: linear-gradient(135deg, #1b3a3c 0%, #1e4a4d 100%);
}

.srvs-pg .svc-card.featured h3 {
    color: #D3E3DD;
}

.srvs-pg .svc-card.featured .card-body {
    color: #a8c8c5;
}

.srvs-pg .svc-card.featured .metric-num {
    color: #DABAC6;
}

.srvs-pg .svc-card.featured .metric-lbl {
    color: #a8c8c5;
}

.srvs-pg .svc-card.featured:hover {
    background: linear-gradient(135deg, #1e4244 0%, #215558 100%);
}

.srvs-pg .svc-card .prog-bars {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-top: 8px;
}

.srvs-pg .svc-card .prog-item {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.srvs-pg .svc-card .prog-label {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
}

.srvs-pg .svc-card .prog-name {
    font-size: 15px;
    font-weight: 600;
    color: #1b3a3c;
}

.srvs-pg .svc-card .prog-val {
    font-size: 15px;
    font-weight: 700;
    color: #1FA2A9;
}

.srvs-pg .svc-card .prog-track {
    height: 8px;
    background: #D3E3DD;
    border-radius: 44px;
    overflow: hidden;
}

.srvs-pg .svc-card .prog-fill {
    height: 100%;
    border-radius: 44px;
    background: linear-gradient(90deg, #1FA2A9 0%, #DABAC6 100%);
    box-shadow: inset 0 4px 6px 0 rgba(31, 162, 169, 0.22);
}

.srvs-pg .svc-card .inline-cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 15px;
    font-weight: 700;
    color: #ffffff;
    background: #1FA2A9;
    border: none;
    border-radius: 8px;
    padding: 16px 40px;
    cursor: pointer;
    text-decoration: none;
    margin-top: 8px;
    transition: background 0.1s linear, box-shadow 0.12s ease-out;
    box-shadow: 2px 7px 14px 0 rgba(31, 162, 169, 0.09);
    align-self: flex-start;
}

.srvs-pg .svc-card .inline-cta:hover {
    background: #178a91;
    box-shadow: 2px 9px 40px 0 rgba(31, 162, 169, 0.14);
}

.srvs-pg .svc-card .inline-cta:focus {
    outline: 2px solid #1FA2A9;
    outline-offset: 2px;
}

.srvs-pg .svc-card .inline-cta svg {
    width: 16px;
    height: 16px;
    stroke: #ffffff;
    fill: none;
    stroke-width: 2.5;
    stroke-linecap: round;
    stroke-linejoin: round;
    flex-shrink: 0;
}

.srvs-pg .sub-form-blk {
    background: #ffffff;
    padding-top: 80px;
    padding-bottom: 80px;
    border-top: 1px solid #d0dbd8;
}

.srvs-pg .sub-form-blk .form-card {
    background: #f2f7f5;
    border-radius: 16px;
    padding: 40px;
    max-width: 560px;
    margin-left: auto;
    margin-right: auto;
    box-shadow: 2px 7px 14px 0 rgba(31, 162, 169, 0.09);
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.srvs-pg .sub-form-blk .form-card h4 {
    font-size: 22px;
    font-weight: 700;
    line-height: 1.3;
    color: #1b3a3c;
    margin: 0;
    letter-spacing: 0.01em;
}

.srvs-pg .sub-form-blk .form-card .form-desc {
    font-size: 15px;
    line-height: 1.55;
    color: #3a5a5e;
    margin: 0;
}

.srvs-pg .sub-form-blk .form-card .form-desc strong {
    color: #1FA2A9;
    font-weight: 600;
}

.srvs-pg .sub-form-blk .form-row {
    display: flex;
    flex-direction: row;
    gap: 8px;
    flex-wrap: wrap;
}

.srvs-pg .sub-form-blk .email-input {
    flex: 1 1 220px;
    min-width: 0;
    height: 48px;
    border: 1.5px solid #c5dcd6;
    border-radius: 8px;
    padding: 0 16px;
    font-size: 15px;
    color: #1b3a3c;
    background: #ffffff;
    outline: none;
    transition: border-color 0.1s linear, box-shadow 0.12s ease-out;
    box-shadow: inset 0 4px 8px 0 rgba(31, 162, 169, 0.05);
    text-overflow: ellipsis;
}

.srvs-pg .sub-form-blk .email-input::placeholder {
    color: #7aacaa;
    text-overflow: ellipsis;
}

.srvs-pg .sub-form-blk .email-input:focus {
    border-color: #1FA2A9;
    box-shadow: inset 0 4px 10px 0 rgba(31, 162, 169, 0.09), 0 0 0 2px rgba(31, 162, 169, 0.18);
}

.srvs-pg .sub-form-blk .sub-btn {
    height: 48px;
    padding: 0 40px;
    background: #1FA2A9;
    color: #ffffff;
    border: none;
    border-radius: 8px;
    font-size: 15px;
    font-weight: 700;
    cursor: pointer;
    white-space: nowrap;
    transition: background 0.1s linear, box-shadow 0.12s ease-out;
    box-shadow: 2px 7px 14px 0 rgba(31, 162, 169, 0.09);
    flex-shrink: 0;
}

.srvs-pg .sub-form-blk .sub-btn:hover {
    background: #178a91;
    box-shadow: 2px 9px 40px 0 rgba(31, 162, 169, 0.14);
}

.srvs-pg .sub-form-blk .sub-btn:focus {
    outline: 2px solid #1FA2A9;
    outline-offset: 2px;
}

.srvs-pg .sub-form-blk .privacy-note {
    font-size: 15px;
    line-height: 1.55;
    color: #7aacaa;
    margin: 0;
}

@media (max-width: 768px) {
    .srvs-pg .sub-form-blk .form-card {
        padding: 40px 16px;
    }

    .srvs-pg .sub-form-blk .form-row {
        flex-direction: column;
    }

    .srvs-pg .sub-form-blk .sub-btn {
        width: 100%;
    }

    .srvs-pg .svc-card {
        padding: 16px;
    }

    .srvs-pg .srvs-grid-blk .blk-header h2 {
        font-size: 30px;
    }
}

@media (max-width: 375px) {
    .srvs-pg .svc-card .metric-num {
        font-size: 30px;
    }

    .srvs-pg .svc-card .pull-phrase {
        font-size: 18px;
    }
}

.srvs-pg .arrow-decor {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #1FA2A9;
    opacity: 0.55;
}

.srvs-pg .arrow-decor svg {
    width: 16px;
    height: 16px;
    stroke: #1FA2A9;
    fill: none;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

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

.jrnl-pg .jrnl-inner {
    max-width: 1320px;
    margin: 0 auto;
    padding: 0 40px;
}

@media (max-width: 768px) {
    .jrnl-pg .jrnl-inner {
        padding: 0 16px;
    }
}

@keyframes jrnl-load-in {
    from {
        opacity: 0;
        transform: rotate(-1.5deg) translateY(18px);
    }

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

.jrnl-pg .jrnl-masthead {
    background: linear-gradient(160deg, #fff 30%, #D3E3DD 70%, #DABAC6 100%);
    padding: 80px 0 40px;
    position: relative;
}

.jrnl-pg .jrnl-masthead::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, #1FA2A9 40%, #DABAC6 80%, transparent);
}

.jrnl-pg .jrnl-masthead .jrnl-inner {
    display: flex;
    flex-direction: row;
    align-items: flex-end;
    gap: 40px;
}

.jrnl-pg .mast-left {
    flex: 0 0 60%;
    animation: jrnl-load-in 0.12s ease-out both;
}

.jrnl-pg .mast-right {
    flex: 1;
    padding-bottom: 8px;
}

.jrnl-pg .mast-eyebrow {
    display: inline-block;
    font-size: 15px;
    font-weight: 700;
    letter-spacing: 0.12em;
    color: #1FA2A9;
    text-transform: uppercase;
    margin-bottom: 16px;
}

.jrnl-pg .mast-hdg {
    font-size: 58px;
    line-height: 1.1;
    font-weight: 900;
    color: #1a2e30;
    margin: 0 0 16px;
}

.jrnl-pg .mast-hdg span {
    color: #1FA2A9;
}

.jrnl-pg .mast-sub {
    font-size: 18px;
    line-height: 1.55;
    color: #2e4a4d;
    max-width: 520px;
    margin: 0;
}

.jrnl-pg .mast-stat {
    font-size: 42px;
    font-weight: 900;
    line-height: 1.1;
    color: #1FA2A9;
    margin: 0 0 8px;
}

.jrnl-pg .mast-stat-label {
    font-size: 15px;
    line-height: 1.3;
    color: #2e4a4d;
    letter-spacing: 0.06em;
    border-top: 1px solid #1FA2A9;
    padding-top: 8px;
    margin: 0;
}

@media (max-width: 768px) {
    .jrnl-pg .jrnl-masthead .jrnl-inner {
        flex-direction: column;
        gap: 16px;
    }

    .jrnl-pg .mast-left {
        flex: none;
    }

    .jrnl-pg .mast-hdg {
        font-size: 42px;
    }
}

@media (max-width: 375px) {
    .jrnl-pg .mast-hdg {
        font-size: 30px;
    }
}

.jrnl-pg .posts-band {
    background: #fff;
    padding: 80px 0;
}

.jrnl-pg .posts-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    align-items: start;
}

.jrnl-pg .posts-grid .post-card:nth-child(2) {
    margin-top: 40px;
}

.jrnl-pg .posts-grid .post-card:nth-child(3) {
    margin-top: 16px;
}

.jrnl-pg .posts-grid .post-card:nth-child(4) {
    margin-top: -16px;
}

@media (max-width: 1024px) {
    .jrnl-pg .posts-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px;
    }

    .jrnl-pg .posts-grid .post-card:nth-child(2),
    .jrnl-pg .posts-grid .post-card:nth-child(3),
    .jrnl-pg .posts-grid .post-card:nth-child(4) {
        margin-top: 0;
    }
}

@media (max-width: 768px) {
    .jrnl-pg .posts-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

.jrnl-pg .post-card {
    border-radius: 8px;
    background: #fff;
    box-shadow: 2px 7px 14px 0 rgba(31, 162, 169, 0.09);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: box-shadow 0.13s ease-out, transform 0.13s ease-out;
}

.jrnl-pg .post-card:hover {
    box-shadow: 2px 9px 40px 0 rgba(31, 162, 169, 0.14);
    transform: translateY(-2px);
}

.jrnl-pg .post-card:hover .pc-img img {
    transform: scale(1.03);
}

.jrnl-pg .pc-img {
    width: 100%;
    height: 200px;
    overflow: hidden;
    position: relative;
}

.jrnl-pg .pc-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.15s ease-out;
}

.jrnl-pg .pc-cat {
    position: absolute;
    top: 8px;
    left: 8px;
    background: #1FA2A9;
    color: #fff;
    font-size: 15px;
    font-weight: 700;
    letter-spacing: 0.08em;
    padding: 4px 8px;
    border-radius: 4px;
    text-transform: uppercase;
}

.jrnl-pg .pc-body {
    padding: 16px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    flex: 1;
}

.jrnl-pg .pc-tag-row {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 8px;
}

.jrnl-pg .pc-tag {
    font-size: 15px;
    color: #1FA2A9;
    font-weight: 600;
    letter-spacing: 0.06em;
}

.jrnl-pg .pc-divider {
    width: 1px;
    height: 14px;
    background: #DABAC6;
}

.jrnl-pg .pc-read {
    font-size: 15px;
    color: #5a7a7e;
    letter-spacing: 0.04em;
}

.jrnl-pg .pc-ttl {
    font-size: 22px;
    line-height: 1.3;
    font-weight: 800;
    color: #1a2e30;
    margin: 0;
    letter-spacing: 0.01em;
}

.jrnl-pg .pc-desc {
    font-size: 15px;
    line-height: 1.55;
    color: #2e4a4d;
    margin: 0;
}

.jrnl-pg .pc-foot {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    padding: 8px 16px 16px;
    border-top: 1px solid #D3E3DD;
    margin-top: auto;
}

.jrnl-pg .pc-author {
    font-size: 15px;
    color: #2e4a4d;
    font-weight: 600;
}

.jrnl-pg .pc-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 15px;
    font-weight: 700;
    color: #1FA2A9;
    text-decoration: none;
    border: 2px solid #1FA2A9;
    border-radius: 4px;
    padding: 6px 16px;
    transition: background 0.1s ease-out, color 0.1s ease-out;
}

.jrnl-pg .pc-link:hover {
    background: #1FA2A9;
    color: #fff;
}

.jrnl-pg .pc-link:focus {
    outline: 2px solid #1FA2A9;
    outline-offset: 2px;
}

.jrnl-pg .about-band {
    background: linear-gradient(150deg, #D3E3DD 0%, #fff 60%);
    padding: 80px 0;
    position: relative;
}

.jrnl-pg .about-band::before {
    content: '';
    position: absolute;
    top: 0;
    right: 40px;
    width: 120px;
    height: 120px;
    border-top: 1px solid rgba(31, 162, 169, 0.18);
    border-right: 1px solid rgba(31, 162, 169, 0.18);
    transform: rotate(15deg);
    pointer-events: none;
}

.jrnl-pg .about-split {
    display: flex;
    flex-direction: row;
    gap: 80px;
    align-items: flex-start;
}

.jrnl-pg .about-img-col {
    flex: 0 0 55%;
    position: relative;
}

.jrnl-pg .about-img-wrap {
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 2px 9px 40px 0 rgba(31, 162, 169, 0.14);
}

.jrnl-pg .about-img-wrap img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    display: block;
}

.jrnl-pg .about-img-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(31, 162, 169, 0.35) 0%, transparent 60%);
    border-radius: 8px;
    pointer-events: none;
}

.jrnl-pg .about-text-col {
    flex: 1;
    padding-top: 16px;
}

.jrnl-pg .about-quote-mark {
    font-size: 72px;
    line-height: 1.1;
    color: #DABAC6;
    font-weight: 900;
    opacity: 0.35;
    margin-bottom: -16px;
    display: block;
}

.jrnl-pg .about-hdg {
    font-size: 30px;
    line-height: 1.3;
    font-weight: 900;
    color: #1a2e30;
    margin: 0 0 16px;
    letter-spacing: 0.02em;
}

.jrnl-pg .about-hdg span {
    color: #1FA2A9;
}

.jrnl-pg .about-body {
    font-size: 18px;
    line-height: 1.55;
    color: #2e4a4d;
    margin: 0 0 16px;
}

.jrnl-pg .about-pull {
    font-size: 22px;
    line-height: 1.3;
    font-weight: 700;
    color: #1FA2A9;
    border-left: 3px solid #DABAC6;
    border-top: 1px solid #DABAC6;
    padding: 8px 16px;
    border-radius: 4px;
    margin: 16px 0 0;
}

@media (max-width: 1024px) {
    .jrnl-pg .about-split {
        flex-direction: column;
        gap: 40px;
    }

    .jrnl-pg .about-img-col {
        flex: none;
        width: 100%;
    }
}

.jrnl-pg .metrics-band {
    background: #1a2e30;
    padding: 80px 0;
    position: relative;
}

.jrnl-pg .metrics-band::before {
    content: '';
    position: absolute;
    bottom: 16px;
    left: 40px;
    width: 80px;
    height: 80px;
    border-bottom: 1px solid rgba(31, 162, 169, 0.2);
    border-left: 1px solid rgba(31, 162, 169, 0.2);
    transform: rotate(-10deg);
    pointer-events: none;
}

.jrnl-pg .metrics-top {
    display: flex;
    flex-direction: row;
    align-items: flex-end;
    justify-content: space-between;
    margin-bottom: 40px;
    gap: 40px;
}

.jrnl-pg .metrics-hdg {
    font-size: 42px;
    line-height: 1.1;
    font-weight: 900;
    color: #fff;
    margin: 0;
}

.jrnl-pg .metrics-hdg span {
    color: #1FA2A9;
}

.jrnl-pg .metrics-sub {
    font-size: 18px;
    line-height: 1.55;
    color: #D3E3DD;
    max-width: 380px;
    margin: 0;
}

.jrnl-pg .metrics-row {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
}

.jrnl-pg .metric-item {
    border-top: 2px solid #1FA2A9;
    padding-top: 16px;
}

.jrnl-pg .metric-num {
    font-size: 58px;
    line-height: 1.1;
    font-weight: 900;
    color: #1FA2A9;
    margin: 0 0 8px;
}

.jrnl-pg .metric-lbl {
    font-size: 15px;
    line-height: 1.3;
    color: #D3E3DD;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin: 0;
}

.jrnl-pg .metric-desc {
    font-size: 15px;
    line-height: 1.55;
    color: #8aabaf;
    margin: 8px 0 0;
}

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

    .jrnl-pg .metrics-top {
        flex-direction: column;
        align-items: flex-start;
    }
}

@media (max-width: 375px) {
    .jrnl-pg .metrics-row {
        grid-template-columns: 1fr;
    }
}

.jrnl-pg .topics-band {
    background: #fff;
    padding: 80px 0;
    position: relative;
}

.jrnl-pg .topics-band::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #1FA2A9, #DABAC6, #D3E3DD);
}

.jrnl-pg .topics-hdr {
    margin-bottom: 40px;
}

.jrnl-pg .topics-hdr-hdg {
    font-size: 30px;
    line-height: 1.3;
    font-weight: 900;
    color: #1a2e30;
    margin: 0 0 8px;
}

.jrnl-pg .topics-hdr-hdg span {
    color: #1FA2A9;
}

.jrnl-pg .topics-hdr-sub {
    font-size: 18px;
    line-height: 1.55;
    color: #2e4a4d;
    margin: 0;
}

.jrnl-pg .topics-list {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 16px;
    list-style: none;
    padding: 0;
    margin: 0;
}

.jrnl-pg .topic-pill {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 8px;
    background: #D3E3DD;
    border-radius: 44px;
    padding: 8px 16px;
    font-size: 15px;
    font-weight: 700;
    color: #1a2e30;
    letter-spacing: 0.05em;
    box-shadow: 2px 1px 2px 0 rgba(31, 162, 169, 0.07);
    transition: background 0.09s ease-out, color 0.09s ease-out;
}

.jrnl-pg .topic-pill:hover {
    background: #1FA2A9;
    color: #fff;
}

.jrnl-pg .topic-pill .tp-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #1FA2A9;
    flex-shrink: 0;
    transition: background 0.09s ease-out;
}

.jrnl-pg .topic-pill:hover .tp-dot {
    background: #fff;
}

.jrnl-pg .contrib-band {
    background: linear-gradient(160deg, #DABAC6 0%, #D3E3DD 50%, #fff 100%);
    padding: 80px 0;
}

.jrnl-pg .contrib-hdr {
    margin-bottom: 40px;
}

.jrnl-pg .contrib-hdg {
    font-size: 30px;
    line-height: 1.3;
    font-weight: 900;
    color: #1a2e30;
    margin: 0 0 8px;
}

.jrnl-pg .contrib-hdg span {
    color: #1FA2A9;
}

.jrnl-pg .contrib-sub {
    font-size: 18px;
    line-height: 1.55;
    color: #2e4a4d;
    margin: 0;
}

.jrnl-pg .contrib-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

@media (max-width: 1024px) {
    .jrnl-pg .contrib-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px;
    }
}

@media (max-width: 375px) {
    .jrnl-pg .contrib-grid {
        grid-template-columns: 1fr;
    }
}

.jrnl-pg .contrib-card {
    background: #fff;
    border-radius: 8px;
    padding: 16px;
    box-shadow: 2px 7px 14px 0 rgba(218, 186, 198, 0.09);
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    gap: 16px;
}

.jrnl-pg .contrib-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: linear-gradient(135deg, #1FA2A9, #DABAC6);
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.jrnl-pg .contrib-avatar svg {
    width: 24px;
    height: 24px;
}

.jrnl-pg .contrib-info {
    flex: 1;
}

.jrnl-pg .contrib-name {
    font-size: 18px;
    line-height: 1.3;
    font-weight: 800;
    color: #1a2e30;
    margin: 0 0 4px;
}

.jrnl-pg .contrib-role {
    font-size: 15px;
    line-height: 1.3;
    color: #1FA2A9;
    font-weight: 600;
    letter-spacing: 0.05em;
    border-top: 1px solid #D3E3DD;
    padding-top: 4px;
    margin: 0 0 8px;
}

.jrnl-pg .contrib-note {
    font-size: 15px;
    line-height: 1.55;
    color: #2e4a4d;
    margin: 0;
}

.jrnl-pg .cta-band {
    background: #1a2e30;
    padding: 80px 0;
    position: relative;
}

.jrnl-pg .cta-band::before {
    content: '';
    position: absolute;
    top: 40px;
    right: 80px;
    width: 60px;
    height: 60px;
    border-top: 1px solid rgba(31, 162, 169, 0.25);
    border-right: 1px solid rgba(31, 162, 169, 0.25);
    transform: rotate(20deg);
    pointer-events: none;
}

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

.jrnl-pg .cta-text {
    flex: 0 0 60%;
}

.jrnl-pg .cta-hdg {
    font-size: 42px;
    line-height: 1.1;
    font-weight: 900;
    color: #fff;
    margin: 0 0 16px;
}

.jrnl-pg .cta-hdg span {
    color: #1FA2A9;
}

.jrnl-pg .cta-body {
    font-size: 18px;
    line-height: 1.55;
    color: #D3E3DD;
    margin: 0;
}

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

.jrnl-pg .cta-btn-primary {
    display: inline-block;
    background: #1FA2A9;
    color: #fff;
    font-size: 18px;
    font-weight: 800;
    letter-spacing: 0.04em;
    padding: 16px 40px;
    border-radius: 4px;
    text-decoration: none;
    border: 2px solid #1FA2A9;
    transition: background 0.1s ease-out, border-color 0.1s ease-out;
}

.jrnl-pg .cta-btn-primary:hover {
    background: transparent;
    border-color: #1FA2A9;
    color: #1FA2A9;
}

.jrnl-pg .cta-btn-primary:focus {
    outline: 2px solid #1FA2A9;
    outline-offset: 3px;
}

.jrnl-pg .cta-note {
    font-size: 15px;
    color: #8aabaf;
    margin: 0;
}

@media (max-width: 768px) {
    .jrnl-pg .cta-layout {
        flex-direction: column;
        align-items: flex-start;
    }

    .jrnl-pg .cta-text {
        flex: none;
    }

    .jrnl-pg .cta-hdg {
        font-size: 30px;
    }
}

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

.ctus-pg .pg-bound {
    max-width: 1320px;
    margin: 0 auto;
    padding: 0 40px;
}

@media (max-width: 768px) {
    .ctus-pg .pg-bound {
        padding: 0 16px;
    }
}

@keyframes track-expand {
    from {
        letter-spacing: -0.05em;
        opacity: 0;
    }

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

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

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

.ctus-pg .reach-band {
    padding: 80px 0 40px;
    background: linear-gradient(160deg, #f5fbfb 0%, #eef6f4 40%, #fdf8fa 100%);
    position: relative;
}

.ctus-pg .reach-band::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 6px;
    background: linear-gradient(180deg, #1FA2A9 0%, #DABAC6 100%);
    border-radius: 0 4px 4px 0;
}

.ctus-pg .reach-inner {
    display: flex;
    flex-direction: row;
    gap: 80px;
    align-items: flex-start;
}

.ctus-pg .reach-left {
    flex: 0 0 340px;
}

.ctus-pg .reach-right {
    flex: 1 1 auto;
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.ctus-pg .reach-label {
    font-size: 15px;
    font-weight: 700;
    letter-spacing: 0.12em;
    color: #1FA2A9;
    text-transform: uppercase;
    margin-bottom: 16px;
}

.ctus-pg .reach-heading {
    font-size: 58px;
    line-height: 1.1;
    font-weight: 900;
    color: #1a3a3c;
    margin-bottom: 16px;
    animation: track-expand 0.14s ease-out both;
}

.ctus-pg .reach-heading .accent-half {
    color: #1FA2A9;
}

.ctus-pg .reach-sub {
    font-size: 18px;
    line-height: 1.55;
    color: #2e5055;
    margin-bottom: 40px;
}

.ctus-pg .dot-path {
    display: flex;
    flex-direction: row;
    gap: 8px;
    flex-wrap: wrap;
    margin-bottom: 40px;
}

.ctus-pg .dot-path span {
    width: 8px;
    height: 8px;
    border-radius: 44px;
    background: #DABAC6;
    display: inline-block;
    flex-shrink: 0;
}

.ctus-pg .dot-path span:nth-child(3n+1) {
    background: #1FA2A9;
    opacity: 0.6;
}

.ctus-pg .dot-path span:nth-child(3n+2) {
    background: #DABAC6;
    width: 6px;
    height: 6px;
    margin-top: 1px;
}

.ctus-pg .dot-path span:nth-child(3n) {
    background: #D3E3DD;
    width: 10px;
    height: 10px;
    margin-top: -1px;
}

.ctus-pg .card-img-left {
    width: 100%;
    aspect-ratio: 4/5;
    border-radius: 16px;
    position: relative;
    overflow: hidden;
    box-shadow: 2px 9px 40px 0 rgba(31, 162, 169, 0.14);
    background: linear-gradient(200deg, #1FA2A9 0%, #D3E3DD 50%, #DABAC6 100%);
}

.ctus-pg .card-img-left::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(31, 162, 169, 0.55) 0%, transparent 60%);
}

.ctus-pg .card-img-geo {
    position: absolute;
    bottom: 24px;
    left: 24px;
    right: 24px;
    z-index: 1;
    background: rgba(255, 255, 255, 0.92);
    border-radius: 8px;
    padding: 16px;
    box-shadow: 2px 7px 14px 0 rgba(31, 162, 169, 0.09);
}

.ctus-pg .card-img-geo .geo-label {
    font-size: 15px;
    font-weight: 700;
    color: #1FA2A9;
    letter-spacing: 0.04em;
    margin-bottom: 8px;
}

.ctus-pg .card-img-geo .geo-addr {
    font-size: 15px;
    line-height: 1.55;
    color: #1a3a3c;
}

.ctus-pg .card-img-deco {
    position: absolute;
    top: 24px;
    right: 24px;
    width: 48px;
    height: 48px;
    z-index: 1;
    animation: slow-spin 12s linear infinite;
}

.ctus-pg .info-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.ctus-pg .info-tile {
    background: #ffffff;
    border-radius: 8px;
    padding: 16px;
    border: 1.5px solid #D3E3DD;
    box-shadow: 2px 1px 2px 0 rgba(31, 162, 169, 0.07);
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.ctus-pg .info-tile .tile-icon {
    width: 32px;
    height: 32px;
    border-radius: 8px;
    background: linear-gradient(135deg, #D3E3DD 0%, #1FA2A9 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.ctus-pg .info-tile .tile-lbl {
    font-size: 15px;
    font-weight: 700;
    letter-spacing: 0.06em;
    color: #1FA2A9;
    text-transform: uppercase;
}

.ctus-pg .info-tile .tile-val {
    font-size: 15px;
    line-height: 1.55;
    color: #1a3a3c;
    word-break: break-word;
}

.ctus-pg .info-tile .tile-val a {
    color: #1a3a3c;
    text-decoration: none;
    border-bottom: 1px solid #DABAC6;
    transition: color 0.1s ease-out, border-color 0.12s ease-out;
}

.ctus-pg .info-tile .tile-val a:hover {
    color: #1FA2A9;
    border-color: #1FA2A9;
}

@media (max-width: 1024px) {
    .ctus-pg .reach-inner {
        gap: 40px;
    }

    .ctus-pg .reach-left {
        flex: 0 0 260px;
    }

    .ctus-pg .reach-heading {
        font-size: 42px;
    }
}

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

    .ctus-pg .reach-left {
        flex: none;
        width: 100%;
        max-width: 320px;
    }

    .ctus-pg .reach-heading {
        font-size: 42px;
    }

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

@media (max-width: 375px) {
    .ctus-pg .reach-heading {
        font-size: 30px;
    }

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

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

.ctus-pg .form-band::after {
    content: '';
    position: absolute;
    right: 0;
    top: 0;
    bottom: 0;
    width: 6px;
    background: linear-gradient(180deg, #DABAC6 0%, #1FA2A9 100%);
    border-radius: 4px 0 0 4px;
}

.ctus-pg .form-layout {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 80px;
    align-items: start;
}

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

.ctus-pg .aside-heading {
    font-size: 30px;
    line-height: 1.3;
    font-weight: 800;
    color: #1a3a3c;
    letter-spacing: 0.04em;
}

.ctus-pg .aside-heading .accent-half {
    color: #1FA2A9;
}

.ctus-pg .aside-body {
    font-size: 15px;
    line-height: 1.75;
    color: #2e5055;
}

.ctus-pg .pull-quote {
    border-left: 3px solid #DABAC6;
    border-top: 1px solid #D3E3DD;
    padding: 16px;
    border-radius: 0 8px 8px 0;
    background: linear-gradient(90deg, #fdf8fa 0%, #f5fbfb 100%);
    font-size: 18px;
    line-height: 1.55;
    color: #1a3a3c;
    font-weight: 600;
}

.ctus-pg .checklist-prog {
    background: #f5fbfb;
    border-radius: 8px;
    padding: 16px;
    border: 1px solid #D3E3DD;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.ctus-pg .checklist-prog .prog-head {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 8px;
}

.ctus-pg .checklist-prog .prog-lbl {
    font-size: 15px;
    font-weight: 700;
    color: #1FA2A9;
    letter-spacing: 0.05em;
}

.ctus-pg .checklist-prog .prog-count {
    font-size: 15px;
    font-weight: 700;
    color: #1a3a3c;
}

.ctus-pg .prog-bar-wrap {
    height: 6px;
    background: #D3E3DD;
    border-radius: 4px;
    overflow: hidden;
    margin-bottom: 8px;
}

.ctus-pg .prog-bar-fill {
    height: 100%;
    width: 0%;
    background: linear-gradient(90deg, #1FA2A9 0%, #DABAC6 100%);
    border-radius: 4px;
    transition: width 0.13s ease-out;
}

.ctus-pg .check-item {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 8px;
    font-size: 15px;
    line-height: 1.55;
    color: #2e5055;
}

.ctus-pg .check-item .chk-box {
    width: 18px;
    height: 18px;
    border-radius: 4px;
    border: 2px solid #1FA2A9;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #ffffff;
    transition: background 0.1s ease-out;
}

.ctus-pg .check-item.done .chk-box {
    background: #1FA2A9;
}

.ctus-pg .check-item.done .chk-box svg {
    display: block;
}

.ctus-pg .check-item .chk-box svg {
    display: none;
    width: 10px;
    height: 10px;
}

.ctus-pg .check-item.done {
    color: #1a3a3c;
    font-weight: 600;
}

.ctus-pg .contact-form {
    display: flex;
    flex-direction: column;
    gap: 16px;
    background: #f5fbfb;
    border-radius: 16px;
    padding: 40px;
    border: 1.5px dashed #1FA2A9;
    box-shadow: 2px 7px 14px 0 rgba(31, 162, 169, 0.09);
}

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

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

.ctus-pg .field-grp label {
    font-size: 15px;
    font-weight: 700;
    color: #1a3a3c;
    letter-spacing: 0.04em;
}

.ctus-pg .field-grp input,
.ctus-pg .field-grp select,
.ctus-pg .field-grp textarea {
    background: #ffffff;
    border: 1.5px solid #D3E3DD;
    border-radius: 8px;
    padding: 16px;
    font-size: 15px;
    color: #1a3a3c;
    outline: none;
    width: 100%;
    box-sizing: border-box;
    transition: border-color 0.1s ease-out, box-shadow 0.12s ease-out;
    box-shadow: 2px 1px 2px 0 rgba(31, 162, 169, 0.07);
    appearance: none;
    -webkit-appearance: none;
}

.ctus-pg .field-grp input::placeholder,
.ctus-pg .field-grp textarea::placeholder {
    color: #7a9fa3;
    text-overflow: ellipsis;
    overflow: hidden;
    white-space: nowrap;
}

.ctus-pg .field-grp input:focus,
.ctus-pg .field-grp select:focus,
.ctus-pg .field-grp textarea:focus {
    border-color: #1FA2A9;
    box-shadow: 2px 7px 14px 0 rgba(31, 162, 169, 0.09);
}

.ctus-pg .field-grp select {
    cursor: pointer;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%231FA2A9' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
    padding-right: 40px;
}

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

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

.ctus-pg .time-pref-group .pref-lbl {
    font-size: 15px;
    font-weight: 700;
    color: #1a3a3c;
    letter-spacing: 0.04em;
}

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

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

.ctus-pg .time-opts label {
    display: inline-block;
    padding: 8px 16px;
    border-radius: 44px;
    border: 1.5px solid #D3E3DD;
    font-size: 15px;
    color: #2e5055;
    cursor: pointer;
    background: #ffffff;
    transition: border-color 0.1s ease-out, background 0.1s ease-out, color 0.08s linear;
    box-shadow: 2px 1px 2px 0 rgba(31, 162, 169, 0.07);
    user-select: none;
}

.ctus-pg .time-opts input[type="radio"]:checked+label {
    background: #1FA2A9;
    border-color: #1FA2A9;
    color: #ffffff;
    font-weight: 700;
}

.ctus-pg .time-opts label:hover {
    border-color: #1FA2A9;
    color: #1FA2A9;
}

.ctus-pg .time-opts input[type="radio"]:checked+label:hover {
    color: #ffffff;
}

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

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

.ctus-pg .privacy-row .priv-text {
    font-size: 15px;
    line-height: 1.55;
    color: #2e5055;
}

.ctus-pg .privacy-row .priv-text a {
    color: #1FA2A9;
    text-decoration: none;
    border-bottom: 1px solid #DABAC6;
    transition: border-color 0.1s ease-out;
}

.ctus-pg .privacy-row .priv-text a:hover {
    border-color: #1FA2A9;
}

.ctus-pg .submit-btn {
    align-self: flex-start;
    background: #1FA2A9;
    color: #ffffff;
    border: 2px solid #1FA2A9;
    border-radius: 8px;
    padding: 16px 40px;
    font-size: 18px;
    font-weight: 700;
    letter-spacing: 0.04em;
    cursor: pointer;
    transition: border-color 0.1s ease-out, background 0.12s ease-out;
    box-shadow: 2px 7px 14px 0 rgba(31, 162, 169, 0.09);
}

.ctus-pg .submit-btn:hover {
    border-color: #157a80;
    background: #1FA2A9;
}

.ctus-pg .submit-btn:active {
    box-shadow: inset 0 6px 10px 0 rgba(31, 162, 169, 0.18);
}

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

@media (max-width: 1024px) {
    .ctus-pg .form-layout {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .ctus-pg .form-aside {
        position: static;
    }
}

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

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

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

@media (max-width: 375px) {
    .ctus-pg .submit-btn {
        width: 100%;
        text-align: center;
    }
}

.ctus-pg .mosaic-band {
    padding: 80px 0;
    background: linear-gradient(135deg, #eef6f4 0%, #fdf8fa 60%, #f5fbfb 100%);
    position: relative;
}

.ctus-pg .mosaic-band::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 6px;
    background: linear-gradient(180deg, #D3E3DD 0%, #1FA2A9 60%, #DABAC6 100%);
    border-radius: 0 4px 4px 0;
}

.ctus-pg .mosaic-top {
    display: flex;
    flex-direction: row;
    align-items: flex-end;
    justify-content: space-between;
    gap: 40px;
    margin-bottom: 40px;
}

.ctus-pg .mosaic-hdg {
    font-size: 42px;
    line-height: 1.1;
    font-weight: 900;
    color: #1a3a3c;
    letter-spacing: 0.03em;
}

.ctus-pg .mosaic-hdg .accent-half {
    color: #1FA2A9;
}

.ctus-pg .mosaic-desc {
    font-size: 18px;
    line-height: 1.55;
    color: #2e5055;
    max-width: 400px;
}

.ctus-pg .four-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}

.ctus-pg .mosaic-card {
    border-radius: 16px;
    padding: 40px 16px 16px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    position: relative;
    overflow: hidden;
    box-shadow: 2px 7px 14px 0 rgba(218, 186, 198, 0.09);
    transition: box-shadow 0.12s ease-out;
}

.ctus-pg .mosaic-card:hover {
    box-shadow: 2px 9px 40px 0 rgba(31, 162, 169, 0.14);
}

.ctus-pg .mosaic-card.card-a {
    background: #1FA2A9;
    color: #ffffff;
    grid-row: span 2;
    padding-top: 80px;
}

.ctus-pg .mosaic-card.card-b {
    background: #ffffff;
    border: 1.5px solid #D3E3DD;
}

.ctus-pg .mosaic-card.card-c {
    background: #DABAC6;
    grid-column: span 2;
}

.ctus-pg .mosaic-card.card-d {
    background: #ffffff;
    border: 1.5px solid #D3E3DD;
}

.ctus-pg .mosaic-card.card-e {
    background: #D3E3DD;
    grid-column: span 2;
    flex-direction: row;
    align-items: center;
    gap: 16px;
    padding: 16px;
}

.ctus-pg .card-num {
    font-size: 72px;
    line-height: 1.1;
    font-weight: 900;
    letter-spacing: -0.02em;
    color: rgba(255, 255, 255, 0.25);
    position: absolute;
    top: 8px;
    left: 16px;
}

.ctus-pg .card-a .card-num {
    color: rgba(255, 255, 255, 0.2);
}

.ctus-pg .card-ttl {
    font-size: 18px;
    font-weight: 800;
    line-height: 1.3;
    letter-spacing: 0.04em;
}

.ctus-pg .card-a .card-ttl {
    color: #ffffff;
    font-size: 22px;
}

.ctus-pg .card-b .card-ttl,
.ctus-pg .card-d .card-ttl {
    color: #1a3a3c;
}

.ctus-pg .card-c .card-ttl {
    color: #1a3a3c;
}

.ctus-pg .card-e .card-ttl {
    color: #1a3a3c;
}

.ctus-pg .card-body {
    font-size: 15px;
    line-height: 1.55;
}

.ctus-pg .card-a .card-body {
    color: rgba(255, 255, 255, 0.85);
}

.ctus-pg .card-b .card-body,
.ctus-pg .card-d .card-body {
    color: #2e5055;
}

.ctus-pg .card-c .card-body {
    color: #3a2030;
}

.ctus-pg .card-e .card-body {
    color: #1a3a3c;
}

.ctus-pg .card-e .card-e-icon {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    border-radius: 44px;
    background: #1FA2A9;
    display: flex;
    align-items: center;
    justify-content: center;
}

.ctus-pg .card-e-text {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.ctus-pg .card-deco-spin {
    position: absolute;
    top: 16px;
    right: 16px;
    width: 36px;
    height: 36px;
    animation: slow-spin 18s linear infinite;
}

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

    .ctus-pg .mosaic-card.card-a {
        grid-row: span 1;
    }

    .ctus-pg .mosaic-card.card-c {
        grid-column: span 1;
    }

    .ctus-pg .mosaic-card.card-e {
        grid-column: span 2;
    }

    .ctus-pg .mosaic-hdg {
        font-size: 30px;
    }

    .ctus-pg .mosaic-top {
        flex-direction: column;
        align-items: flex-start;
        gap: 16px;
    }
}

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

    .ctus-pg .mosaic-card.card-e {
        grid-column: span 1;
    }

    .ctus-pg .mosaic-band {
        padding: 40px 0;
    }

    .ctus-pg .card-num {
        font-size: 42px;
    }
}

@media (max-width: 375px) {
    .ctus-pg .mosaic-hdg {
        font-size: 22px;
    }
}

.success-pg {
    min-height: 80vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 80px 16px;
    background: linear-gradient(160deg, #ffffff 0%, #D3E3DD 55%, #DABAC6 100%);
}

.success-pg .result-wrap {
    max-width: 560px;
    width: 100%;
    background: #ffffff;
    border-radius: 16px;
    padding: 40px;
    box-shadow: 2px 9px 40px 0 rgba(31, 162, 169, 0.14);
    text-align: left;
}

.success-pg .result-wrap .icon-mark {
    width: 56px;
    height: 56px;
    border-radius: 44px;
    background: #D3E3DD;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 40px;
    border: 2px solid #1FA2A9;
}

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

.success-pg .result-wrap .result-label {
    font-size: 15px;
    font-weight: 600;
    letter-spacing: 0.12em;
    color: #1FA2A9;
    text-transform: uppercase;
    margin-bottom: 8px;
    line-height: 1.3;
}

.success-pg .result-wrap .result-heading {
    font-size: 30px;
    font-weight: 800;
    line-height: 1.1;
    color: #1a3a3c;
    margin-bottom: 16px;
    letter-spacing: -0.01em;
}

.success-pg .result-wrap .result-heading span {
    color: #1FA2A9;
}

.success-pg .result-wrap .result-body {
    font-size: 18px;
    line-height: 1.55;
    color: #2e4a4c;
    margin-bottom: 40px;
}

.success-pg .result-wrap .result-body strong {
    color: #1a3a3c;
    font-weight: 700;
}

.success-pg .result-wrap .divider-line {
    height: 1px;
    background: linear-gradient(90deg, #D3E3DD 0%, #DABAC6 100%);
    border: none;
    margin-bottom: 40px;
    border-radius: 4px;
}

.success-pg .result-wrap .detail-row {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    gap: 16px;
    margin-bottom: 16px;
}

.success-pg .result-wrap .detail-row .detail-dot {
    width: 8px;
    height: 8px;
    border-radius: 44px;
    background: #1FA2A9;
    flex-shrink: 0;
    margin-top: 7px;
}

.success-pg .result-wrap .detail-row .detail-text {
    font-size: 15px;
    line-height: 1.55;
    color: #2e4a4c;
}

.success-pg .result-wrap .action-group {
    display: flex;
    flex-direction: row;
    gap: 16px;
    margin-top: 40px;
    flex-wrap: wrap;
}

.success-pg .result-wrap .btn-primary {
    display: inline-block;
    padding: 16px 40px;
    background: #1FA2A9;
    color: #ffffff;
    font-size: 15px;
    font-weight: 700;
    letter-spacing: 0.06em;
    border-radius: 8px;
    text-decoration: none;
    border: 2px solid #1FA2A9;
    transition: background-color 0.1s ease-out, border-color 0.12s ease-out;
    cursor: pointer;
    line-height: 1.3;
}

.success-pg .result-wrap .btn-primary:hover {
    background: #178a91;
    border-color: #178a91;
}

.success-pg .result-wrap .btn-primary:focus {
    outline: 3px solid #1FA2A9;
    outline-offset: 3px;
}

.success-pg .result-wrap .btn-secondary {
    display: inline-block;
    padding: 16px 40px;
    background: transparent;
    color: #1FA2A9;
    font-size: 15px;
    font-weight: 700;
    letter-spacing: 0.06em;
    border-radius: 8px;
    text-decoration: none;
    border: 2px solid #DABAC6;
    transition: border-color 0.09s linear;
    cursor: pointer;
    line-height: 1.3;
}

.success-pg .result-wrap .btn-secondary:hover {
    border-color: #1FA2A9;
}

.success-pg .result-wrap .btn-secondary:focus {
    outline: 3px solid #1FA2A9;
    outline-offset: 3px;
}

.success-pg .result-wrap .contact-note {
    margin-top: 40px;
    padding: 16px;
    background: #D3E3DD;
    border-radius: 8px;
    border-left: 4px solid #1FA2A9;
    border-top: 1px solid #b8d4cc;
}

.success-pg .result-wrap .contact-note .note-text {
    font-size: 15px;
    line-height: 1.55;
    color: #1a3a3c;
}

.success-pg .result-wrap .contact-note .note-text a {
    color: #1FA2A9;
    font-weight: 700;
    text-decoration: none;
    border-bottom: 1px solid #1FA2A9;
    transition: color 0.08s ease-out;
}

.success-pg .result-wrap .contact-note .note-text a:hover {
    color: #178a91;
}

@media (max-width: 768px) {
    .success-pg {
        padding: 40px 16px;
    }

    .success-pg .result-wrap {
        padding: 40px 16px;
    }

    .success-pg .result-wrap .result-heading {
        font-size: 22px;
    }

    .success-pg .result-wrap .action-group {
        flex-direction: column;
        gap: 8px;
    }

    .success-pg .result-wrap .btn-primary,
    .success-pg .result-wrap .btn-secondary {
        text-align: center;
        width: 100%;
        padding: 16px 16px;
    }
}

@media (max-width: 375px) {
    .success-pg .result-wrap .result-heading {
        font-size: 22px;
    }
}

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