@charset "UTF-8";

html {
    box-sizing: border-box;
}

*,
*::before,
*::after {
    box-sizing: inherit;
}

body {
    margin: 0;
    min-height: 100svh;
    overflow-x: hidden;
    -webkit-text-size-adjust: 100%;
}

*:focus-visible {
    outline: 2px solid #FC6663;
    outline-offset: 3px;
    box-shadow: 0 0 0 4px rgba(252, 102, 99, 0.18);
}

.top-strip {
    height: 4px;
    background: linear-gradient(90deg, #FC6663 0%, #015A5B 60%, #F4FFC1 100%);
    width: 100%;
}

.hd {
    background: #ffffff;
    position: relative;
    box-shadow: 2px 7px 18px 0 rgba(1, 90, 91, 0.08);
}

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

.brand-cell {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-shrink: 0;
    margin-left: 8px;
}

.brand-frame {
    width: 68px;
    height: 68px;
    border: 2px dashed #015A5B;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #F4FFC1;
    box-shadow: 2px 3px 3px 0 rgba(1, 90, 91, 0.06);
    flex-shrink: 0;
}

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

.brand-name {
    font-family: 'Raleway', sans-serif;
    font-size: 28px;
    font-weight: 700;
    line-height: 1.15;
    color: #015A5B;
    letter-spacing: -0.5px;
    text-decoration: none;
}

.brand-name span {
    color: #FC6663;
}

.brand-tag {
    font-family: 'Raleway', sans-serif;
    font-size: 15px;
    font-weight: 400;
    line-height: 1.4;
    color: #4a6b6b;
    margin-top: 4px;
}

.brand-text {
    display: flex;
    flex-direction: column;
}

.hd-right {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 12px;
}

.status-pod {
    display: flex;
    align-items: center;
    gap: 8px;
    background: #F4FFC1;
    border-radius: 4px;
    padding: 4px 12px;
    box-shadow: 2px 3px 3px 0 rgba(1, 90, 91, 0.06);
}

.status-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #015A5B;
    flex-shrink: 0;
}

.status-lbl {
    font-family: 'Raleway', sans-serif;
    font-size: 15px;
    font-weight: 400;
    line-height: 1.4;
    color: #015A5B;
}

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

.pri-nav a {
    font-family: 'Raleway', sans-serif;
    font-size: 15px;
    font-weight: 700;
    line-height: 1.4;
    color: #2c3e3e;
    text-decoration: none;
    padding: 8px 12px;
    border-radius: 6px;
    transition: color 0.15s ease-out, background 0.15s ease-out;
    white-space: nowrap;
    min-height: 44px;
    display: flex;
    align-items: center;
}

.pri-nav a:hover {
    color: #015A5B;
    background: rgba(1, 90, 91, 0.07);
}

.pri-nav a.active {
    color: #FC6663;
    background: rgba(252, 102, 99, 0.08);
}

.nav-cta {
    font-family: 'Raleway', sans-serif;
    font-size: 15px;
    font-weight: 700;
    line-height: 1.4;
    color: #ffffff;
    background: #FC6663;
    border: none;
    border-radius: 6px;
    padding: 8px 20px;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 8px;
    min-height: 44px;
    box-shadow: 2px 3px 3px 0 rgba(252, 102, 99, 0.06);
    transition: background 0.12s ease-out, box-shadow 0.12s ease-out, transform 0.12s ease-out;
    white-space: nowrap;
}

.nav-cta:hover {
    background: #e04f4d;
    box-shadow: 2px 7px 18px 0 rgba(252, 102, 99, 0.18);
    transform: scale(1.03);
}

.nav-cta svg {
    flex-shrink: 0;
}

.ft {
    background: #015A5B;
    color: #ffffff;
}

.ft-top {
    max-width: 1140px;
    margin: 0 auto;
    padding: 80px 40px 40px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
}

.ft-about {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.ft-brand {
    display: flex;
    align-items: center;
    gap: 12px;
}

.ft-logo-frame {
    width: 60px;
    height: 60px;
    border: 2px dashed rgba(244, 255, 193, 0.5);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(244, 255, 193, 0.1);
    box-shadow: 2px 3px 3px 0 rgba(252, 102, 99, 0.06);
    flex-shrink: 0;
}

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

.ft-bname {
    font-family: 'Raleway', sans-serif;
    font-size: 22px;
    font-weight: 700;
    line-height: 1.15;
    color: #F4FFC1;
}

.ft-desc {
    font-family: 'Raleway', sans-serif;
    font-size: 15px;
    font-weight: 400;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.78);
    max-width: 380px;
}

.ft-contact-deck {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-top: 4px;
}

.ft-contact-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: 'Raleway', sans-serif;
    font-size: 15px;
    font-weight: 400;
    line-height: 1.4;
    color: rgba(255, 255, 255, 0.72);
    text-decoration: none;
    transition: color 0.15s ease-out;
}

.ft-contact-item:hover {
    color: #F4FFC1;
}

.ft-contact-item svg {
    flex-shrink: 0;
    opacity: 0.7;
}

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

.ft-links-head {
    font-family: 'Raleway', sans-serif;
    font-size: 18px;
    font-weight: 700;
    line-height: 1.15;
    color: #F4FFC1;
    padding-bottom: 8px;
    border-bottom: 1px solid rgba(244, 255, 193, 0.2);
}

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

.ft-link-list li a {
    font-family: 'Raleway', sans-serif;
    font-size: 15px;
    font-weight: 400;
    line-height: 1.4;
    color: rgba(255, 255, 255, 0.72);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: color 0.15s ease-out;
    padding: 4px 0;
}

.ft-link-list li a:hover {
    color: #F4FFC1;
}

.ft-link-list li a svg {
    flex-shrink: 0;
    opacity: 0.6;
}

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

.ft-copy {
    font-family: 'Raleway', sans-serif;
    font-size: 15px;
    font-weight: 400;
    line-height: 1.4;
    color: rgba(255, 255, 255, 0.48);
}

.ft-legal {
    display: flex;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}

.ft-legal a {
    font-family: 'Raleway', sans-serif;
    font-size: 15px;
    font-weight: 400;
    line-height: 1.4;
    color: rgba(255, 255, 255, 0.48);
    text-decoration: none;
    transition: color 0.15s ease-out;
}

.ft-legal a:hover {
    color: rgba(255, 255, 255, 0.85);
}

.ck-bar {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: #ffffff;
    box-shadow: 2px 10px 40px 0 rgba(1, 90, 91, 0.10);
    z-index: 1200;
    border-top: 3px solid #FC6663;
}

.ck-inner {
    max-width: 1140px;
    margin: 0 auto;
    padding: 20px 40px;
    display: flex;
    align-items: flex-start;
    gap: 40px;
    flex-wrap: wrap;
}

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

.ck-head {
    font-family: 'Raleway', sans-serif;
    font-size: 18px;
    font-weight: 700;
    line-height: 1.15;
    color: #015A5B;
    margin-bottom: 8px;
}

.ck-desc {
    font-family: 'Raleway', sans-serif;
    font-size: 15px;
    font-weight: 400;
    line-height: 1.6;
    color: #3a5252;
}

.ck-btns {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-shrink: 0;
    flex-wrap: wrap;
    padding-top: 4px;
}

.ck-accept {
    font-family: 'Raleway', sans-serif;
    font-size: 15px;
    font-weight: 700;
    line-height: 1.4;
    color: #015A5B;
    background: transparent;
    border: 2px solid #015A5B;
    border-radius: 6px;
    padding: 8px 20px;
    cursor: pointer;
    min-height: 44px;
    transition: background 0.15s ease-out, color 0.15s ease-out;
}

.ck-accept:hover {
    background: #015A5B;
    color: #ffffff;
}

.ck-decline {
    font-family: 'Raleway', sans-serif;
    font-size: 15px;
    font-weight: 700;
    line-height: 1.4;
    color: #FC6663;
    background: transparent;
    border: 2px solid #FC6663;
    border-radius: 6px;
    padding: 8px 20px;
    cursor: pointer;
    min-height: 44px;
    transition: background 0.15s ease-out, color 0.15s ease-out;
}

.ck-decline:hover {
    background: #FC6663;
    color: #ffffff;
}

@media (max-width: 768px) {
    .hd-plate {
        padding: 20px;
        flex-wrap: wrap;
        gap: 20px;
    }

    .hd-right {
        width: 100%;
        align-items: flex-start;
    }

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

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

    .ft-bottom {
        padding: 20px;
        flex-direction: column;
        align-items: flex-start;
    }

    .ck-inner {
        padding: 20px;
        flex-direction: column;
        gap: 20px;
    }
}

.legal-body {
    max-width: 1140px;
    margin: 0 auto;
    padding: 80px 40px;
}

.legal-body p {
    font-size: 18px;
    line-height: 1.6;
    color: #2d2d2d;
    margin-bottom: 20px;
}

.legal-body ul,
.legal-body ol {
    padding-left: 40px;
    margin-bottom: 20px;
}

.legal-body ul {
    list-style-type: disc;
}

.legal-body ol {
    list-style-type: decimal;
}

.legal-body li {
    font-size: 18px;
    line-height: 1.6;
    color: #2d2d2d;
    margin-bottom: 8px;
}

.legal-body li:last-child {
    margin-bottom: 0;
}

.legal-body strong,
.legal-body b {
    font-weight: 700;
    color: #015A5B;
}

.legal-body em,
.legal-body i {
    font-style: italic;
    color: inherit;
}

.legal-body a {
    color: #FC6663;
    text-decoration: underline;
    text-underline-offset: 3px;
    transition: color 0.15s ease-out, text-decoration-color 0.15s ease-out;
}

.legal-body a:hover {
    color: #015A5B;
    text-decoration-color: #015A5B;
}

.legal-body table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 40px;
    font-size: 15px;
    line-height: 1.4;
    box-shadow: 2px 7px 18px 0 rgba(1, 90, 91, 0.08);
    border-radius: 6px;
    overflow: hidden;
}

.legal-body thead {
    background-color: #015A5B;
}

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

.legal-body tbody tr {
    border-bottom: 1px solid rgba(1, 90, 91, 0.1);
    transition: background-color 0.12s ease-out;
}

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

.legal-body tbody tr:hover {
    background-color: rgba(244, 255, 193, 0.4);
}

.legal-body td {
    padding: 12px 20px;
    color: #2d2d2d;
    vertical-align: top;
}

.legal-body div {
    margin-bottom: 20px;
}

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

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

    .legal-body p,
    .legal-body li {
        font-size: 15px;
    }
}

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

.srv script {
    display: none;
}

.srv .pg-wrap {
    max-width: 1140px;
    margin: 0 auto;
    padding: 0 20px;
}

.srv .lead {
    background: #015A5B;
    padding: 80px 20px 60px;
    position: relative;
}

.srv .lead-wrap {
    max-width: 1140px;
    margin: 0 auto;
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    gap: 80px;
}

.srv .lead-text {
    flex: 1;
    min-width: 0;
}

.srv .lead-tag {
    display: inline-block;
    border: 1px solid rgba(244, 255, 193, 0.4);
    color: #F4FFC1;
    font-size: 15px;
    line-height: 1.4;
    padding: 4px 12px;
    border-radius: 4px;
    margin-bottom: 20px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.srv .lead-h1 {
    font-size: 52px;
    line-height: 1.15;
    color: #fff;
    margin: 0 0 20px;
    font-weight: 700;
}

.srv .lead-h1 em {
    font-style: normal;
    background: linear-gradient(90deg, #F4FFC1 50%, #FC6663 50%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.srv .lead-desc {
    font-size: 18px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.82);
    margin: 0 0 40px;
    max-width: 480px;
}

.srv .lead-cta {
    display: inline-flex;
    flex-direction: row;
    align-items: center;
    gap: 8px;
    background: #FC6663;
    color: #fff;
    font-size: 15px;
    line-height: 1.4;
    font-weight: 600;
    padding: 12px 20px;
    border-radius: 6px;
    text-decoration: none !important;
    transition: padding-right 0.15s ease-out, box-shadow 0.15s ease-out;
    box-shadow: 2px 7px 18px 0 rgba(252, 102, 99, 0.08);
}

.srv .lead-cta:hover {
    padding-right: 28px;
    box-shadow: 2px 10px 40px 0 rgba(252, 102, 99, 0.10);
}

.srv .lead-cta svg {
    flex-shrink: 0;
    transition: transform 0.15s ease-out;
}

.srv .lead-cta:hover svg {
    transform: translateX(4px);
}

.srv .lead-visual {
    width: 380px;
    flex-shrink: 0;
    position: relative;
}

.srv .lead-img-wrap {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 2px 10px 40px 0 rgba(1, 90, 91, 0.10);
}

.srv .lead-img-wrap img {
    width: 380px;
    height: 300px;
    object-fit: cover;
    display: block;
    filter: saturate(0.85) brightness(0.95);
}

.srv .lead-vignette {
    position: absolute;
    inset: 0;
    border-radius: 10px;
    background: radial-gradient(ellipse at 80% 20%, transparent 40%, rgba(1, 90, 91, 0.55) 100%);
    pointer-events: none;
}

.srv .lead-line {
    position: absolute;
    bottom: -40px;
    left: 60px;
    width: 2px;
    height: 80px;
    background: linear-gradient(180deg, rgba(244, 255, 193, 0.5) 50%, rgba(244, 255, 193, 0) 50%);
    pointer-events: none;
}

.srv .offer {
    padding: 80px 20px;
    background: #fff;
}

.srv .offer-wrap {
    max-width: 1140px;
    margin: 0 auto;
}

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

.srv .offer-hdg {
    font-size: 38px;
    line-height: 1.15;
    color: #015A5B;
    font-weight: 700;
    margin: 0;
    max-width: 480px;
    background: linear-gradient(90deg, #015A5B 50%, #FC6663 50%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.srv .offer-sub {
    font-size: 15px;
    line-height: 1.6;
    color: #374151;
    max-width: 320px;
    margin: 0;
}

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

.srv .svc-card {
    border-radius: 10px;
    background: #fff;
    padding: 40px 20px 20px;
    box-shadow: inset 2px 3px 3px 0 rgba(1, 90, 91, 0.06), 2px 7px 18px 0 rgba(1, 90, 91, 0.08);
    display: flex;
    flex-direction: column;
    gap: 12px;
    transition: transform 0.18s ease-out, box-shadow 0.18s ease-out;
    animation: col-appear 0.2s ease-out both;
}

.srv .svc-card:nth-child(1) {
    animation-delay: 0.05s;
}

.srv .svc-card:nth-child(2) {
    animation-delay: 0.12s;
}

.srv .svc-card:nth-child(3) {
    animation-delay: 0.19s;
}

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

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

.srv .svc-card:hover {
    transform: translateY(-4px) scale(1.01);
    box-shadow: 2px 10px 40px 0 rgba(1, 90, 91, 0.10);
}

.srv .card-icon {
    width: 40px;
    height: 40px;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    background: #F4FFC1;
    border-radius: 6px;
    flex-shrink: 0;
}

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

.srv .card-name {
    font-size: 18px;
    line-height: 1.4;
    font-weight: 700;
    color: #015A5B;
    margin: 0;
}

.srv .card-body {
    font-size: 15px;
    line-height: 1.6;
    color: #374151;
    margin: 0;
    flex: 1;
}

.srv .card-link {
    display: inline-flex;
    flex-direction: row;
    align-items: center;
    gap: 4px;
    font-size: 15px;
    font-weight: 600;
    color: #FC6663;
    text-decoration: none !important;
    margin-top: 8px;
    transition: gap 0.12s ease-out;
}

.srv .card-link:hover {
    gap: 8px;
}

.srv .split {
    padding: 0 20px 80px;
    background: #fff;
}

.srv .split-wrap {
    max-width: 1140px;
    margin: 0 auto;
    display: flex;
    flex-direction: row;
    gap: 0;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 2px 7px 18px 0 rgba(1, 90, 91, 0.08);
}

.srv .split-photo {
    width: 440px;
    flex-shrink: 0;
    position: relative;
}

.srv .split-photo img {
    width: 440px;
    height: 100%;
    min-height: 420px;
    object-fit: cover;
    display: block;
    filter: saturate(0.8) brightness(0.92);
}

.srv .split-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(1, 90, 91, 0.18) 50%, rgba(1, 90, 91, 0) 50%);
    pointer-events: none;
}

.srv .split-body {
    flex: 1;
    background: #015A5B;
    padding: 40px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.srv .split-hdg {
    font-size: 28px;
    line-height: 1.15;
    color: #F4FFC1;
    font-weight: 700;
    margin: 0;
}

.srv .split-txt {
    font-size: 15px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.82);
    margin: 0;
}

.srv .infograph {
    display: flex;
    flex-direction: row;
    gap: 20px;
    margin-top: 8px;
}

.srv .ig-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    flex: 1;
    background: rgba(244, 255, 193, 0.08);
    border-radius: 6px;
    padding: 20px 12px;
    border: 1px solid rgba(244, 255, 193, 0.18);
}

.srv .ig-num {
    font-size: 28px;
    line-height: 1.15;
    font-weight: 700;
    color: #F4FFC1;
}

.srv .ig-lbl {
    font-size: 15px;
    line-height: 1.4;
    color: rgba(255, 255, 255, 0.72);
    text-align: center;
}

.srv .ig-icon {
    width: 32px;
    height: 32px;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
}

.srv .ig-icon svg {
    width: 28px;
    height: 28px;
    stroke: #F4FFC1;
}

.srv .path-block {
    padding: 80px 20px;
    background: #F4FFC1;
}

.srv .path-wrap {
    max-width: 1140px;
    margin: 0 auto;
}

.srv .path-hdg {
    font-size: 38px;
    line-height: 1.15;
    font-weight: 700;
    color: #015A5B;
    margin: 0 0 8px;
    max-width: 560px;
}

.srv .path-intro {
    font-size: 18px;
    line-height: 1.6;
    color: #1d3b3b;
    margin: 0 0 40px;
    max-width: 620px;
}

.srv .path-cols {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.srv .path-item {
    background: #fff;
    border-radius: 10px;
    padding: 20px;
    display: flex;
    flex-direction: row;
    gap: 20px;
    align-items: flex-start;
    box-shadow: 2px 3px 3px 0 rgba(1, 90, 91, 0.06);
    transition: box-shadow 0.15s ease-out, transform 0.15s ease-out;
}

.srv .path-item:hover {
    box-shadow: 2px 7px 18px 0 rgba(1, 90, 91, 0.08);
    transform: translateY(-2px);
}

.srv .path-num {
    font-size: 38px;
    line-height: 1.15;
    font-weight: 700;
    color: #FC6663;
    flex-shrink: 0;
    width: 40px;
}

.srv .path-detail {
    flex: 1;
    min-width: 0;
}

.srv .path-name {
    font-size: 18px;
    line-height: 1.4;
    font-weight: 700;
    color: #015A5B;
    margin: 0 0 8px;
}

.srv .path-desc {
    font-size: 15px;
    line-height: 1.6;
    color: #374151;
    margin: 0;
}

.srv .path-accent {
    display: inline-block;
    border: 1px solid #015A5B;
    color: #015A5B;
    font-size: 15px;
    line-height: 1.4;
    padding: 4px 12px;
    border-radius: 4px;
    margin-top: 8px;
    font-weight: 600;
}

@media (max-width: 900px) {
    .srv .lead-wrap {
        flex-direction: column;
        gap: 40px;
    }

    .srv .lead-visual {
        width: 100%;
    }

    .srv .lead-img-wrap img {
        width: 100%;
        height: 240px;
    }

    .srv .lead-h1 {
        font-size: 38px;
    }

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

    .srv .split-wrap {
        flex-direction: column;
    }

    .srv .split-photo {
        width: 100%;
    }

    .srv .split-photo img {
        width: 100%;
        min-height: 260px;
        height: 260px;
    }

    .srv .offer-top {
        flex-direction: column;
        align-items: flex-start;
    }

    .srv .path-cols {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 600px) {
    .srv .lead-h1 {
        font-size: 28px;
    }

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

    .srv .infograph {
        flex-direction: column;
    }

    .srv .split-body {
        padding: 20px;
    }

    .srv .path-hdg {
        font-size: 28px;
    }
}

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

.abt .pg-wrap {
    max-width: 1140px;
    margin: 0 auto;
    padding: 0 20px;
}

.abt .sweep-text {
    background: linear-gradient(90deg, #015A5B 0%, #015A5B 50%, #FC6663 50%, #FC6663 100%);
    background-size: 200% 100%;
    background-position: 100% 0;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: sweep 0.8s 0.2s ease-out forwards;
}

@keyframes sweep {
    from {
        background-position: 100% 0;
    }

    to {
        background-position: 0% 0;
    }
}

.abt .grad-head {
    background: linear-gradient(135deg, #015A5B 50%, #FC6663 50%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* BLOCK 1 - TITLE STRIP */
.abt .title-strip {
    background: #fff;
    padding: 80px 0 40px;
}

.abt .title-strip .inner {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 40px;
}

.abt .title-strip .left {
    flex: 1 1 50%;
    padding: 40px 40px 40px 0;
    position: relative;
}

.abt .title-strip .vbar {
    width: 3px;
    height: 80px;
    background: #FC6663;
    position: absolute;
    left: 0;
    top: 40px;
}

.abt .title-strip .left h1 {
    font-size: 52px;
    line-height: 1.15;
    color: #015A5B;
    margin-bottom: 20px;
    padding-left: 20px;
}

.abt .title-strip .left p {
    font-size: 18px;
    line-height: 1.6;
    color: #2d4a4a;
    padding-left: 20px;
    max-width: 440px;
}

.abt .title-strip .right {
    flex: 1 1 50%;
    position: relative;
    height: 380px;
}

.abt .title-strip .right img {
    width: 100%;
    height: 380px;
    object-fit: cover;
    border-radius: 6px;
    filter: saturate(0.6) brightness(0.95);
    box-shadow: 2px 10px 40px 0 rgba(1, 90, 91, 0.10);
    display: block;
}

.abt .title-strip .shape-a {
    width: 60px;
    height: 60px;
    border: 2px dashed #FC6663;
    border-radius: 4px;
    position: absolute;
    bottom: -20px;
    left: -20px;
    pointer-events: none;
}

.abt .title-strip .shape-b {
    width: 30px;
    height: 30px;
    background: #F4FFC1;
    border-radius: 4px;
    position: absolute;
    top: -12px;
    right: -12px;
    pointer-events: none;
}

/* BLOCK 2 - STORY / DENSE */
.abt .story {
    background: #015A5B;
    padding: 80px 0;
    position: relative;
}

.abt .story .grid-bg {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(244, 255, 193, 0.06) 1px, transparent 1px),
        linear-gradient(90deg, rgba(244, 255, 193, 0.06) 1px, transparent 1px);
    background-size: 40px 40px;
    pointer-events: none;
}

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

.abt .story .col-img {
    flex: 0 0 340px;
}

.abt .story .col-img img {
    width: 340px;
    height: 420px;
    object-fit: cover;
    border-radius: 6px;
    box-shadow: 2px 10px 40px 0 rgba(252, 102, 99, 0.10);
    display: block;
}

.abt .story .col-text {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.abt .story .col-text h2 {
    font-size: 38px;
    line-height: 1.15;
    color: #F4FFC1;
    margin: 0;
}

.abt .story .col-text .lead {
    font-size: 18px;
    line-height: 1.6;
    color: rgba(244, 255, 193, 0.85);
}

.abt .story .two-col {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.abt .story .two-col p {
    font-size: 15px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.78);
    margin: 0;
}

.abt .story .accent-box {
    display: inline-block;
    border: 1px solid rgba(252, 102, 99, 0.6);
    border-radius: 4px;
    padding: 8px 20px;
    font-size: 15px;
    line-height: 1.4;
    color: #F4FFC1;
    align-self: flex-start;
}

.abt .story .stats-row {
    display: flex;
    flex-direction: row;
    gap: 40px;
    margin-top: 8px;
}

.abt .story .stat {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.abt .story .stat .num {
    font-size: 38px;
    line-height: 1.15;
    color: #FC6663;
}

.abt .story .stat .lbl {
    font-size: 15px;
    line-height: 1.4;
    color: rgba(244, 255, 193, 0.7);
}

/* SVG DIVIDER */
.abt .div-curve {
    display: block;
    width: 100%;
    overflow: hidden;
    line-height: 0;
}

/* BLOCK 3 - TEAM */
.abt .team {
    background: #fff;
    padding: 80px 0;
}

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

.abt .team .top h2 {
    font-size: 38px;
    line-height: 1.15;
    color: #015A5B;
    margin: 0;
    max-width: 480px;
}

.abt .team .top p {
    font-size: 15px;
    line-height: 1.6;
    color: #3a5050;
    max-width: 320px;
    margin: 0;
}

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

.abt .team-card {
    border-radius: 6px;
    overflow: hidden;
    box-shadow: 2px 7px 18px 0 rgba(1, 90, 91, 0.08);
    background: #fff;
    transition: box-shadow 0.15s ease-out, transform 0.15s ease-out;
}

.abt .team-card:hover {
    box-shadow: 2px 10px 40px 0 rgba(1, 90, 91, 0.10);
    transform: translateY(-2px);
}

.abt .team-card img {
    width: 100%;
    height: 260px;
    object-fit: cover;
    display: block;
    filter: saturate(0.75);
}

.abt .team-card .card-body {
    padding: 20px;
    border-top: 3px solid #FC6663;
}

.abt .team-card .card-body h4 {
    font-size: 18px;
    line-height: 1.4;
    color: #015A5B;
    margin: 0 0 4px;
}

.abt .team-card .card-body .role {
    font-size: 15px;
    line-height: 1.4;
    color: #FC6663;
    margin: 0 0 8px;
}

.abt .team-card .card-body p {
    font-size: 15px;
    line-height: 1.6;
    color: #3a5050;
    margin: 0;
}

.abt .team-card .blur-layer {
    transition: backdrop-filter 0.18s ease-out, -webkit-backdrop-filter 0.18s ease-out;
}

/* BLOCK 4 - VALUES / DASHED */
.abt .vals {
    background: #F4FFC1;
    padding: 80px 0;
    position: relative;
}

.abt .vals .dashed-frame {
    border: 2px dashed rgba(1, 90, 91, 0.3);
    border-radius: 10px;
    padding: 40px;
    position: relative;
}

.abt .vals .dashed-frame h2 {
    font-size: 38px;
    line-height: 1.15;
    color: #015A5B;
    margin: 0 0 20px;
    max-width: 600px;
}

.abt .vals .dashed-frame .sub {
    font-size: 18px;
    line-height: 1.6;
    color: #2d4a4a;
    margin: 0 0 40px;
    max-width: 560px;
}

.abt .vals .three-col {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.abt .val-item {
    background: #fff;
    border-radius: 6px;
    padding: 20px;
    box-shadow: 2px 3px 3px 0 rgba(1, 90, 91, 0.06);
    position: relative;
    transition: box-shadow 0.12s ease-out;
}

.abt .val-item:hover {
    box-shadow: 2px 7px 18px 0 rgba(1, 90, 91, 0.08);
}

.abt .val-item .vi-icon {
    width: 36px;
    height: 36px;
    margin-bottom: 12px;
}

.abt .val-item h5 {
    font-size: 18px;
    line-height: 1.4;
    color: #015A5B;
    margin: 0 0 8px;
}

.abt .val-item p {
    font-size: 15px;
    line-height: 1.6;
    color: #3a5050;
    margin: 0;
}

.abt .val-item .mini-card {
    margin-top: 12px;
    background: #015A5B;
    border-radius: 4px;
    padding: 8px 12px;
    font-size: 15px;
    line-height: 1.4;
    color: #F4FFC1;
}

.abt .vals .img-accent {
    position: absolute;
    right: 40px;
    top: -40px;
    width: 180px;
    height: 180px;
    object-fit: cover;
    border-radius: 6px;
    box-shadow: 2px 10px 40px 0 rgba(1, 90, 91, 0.10);
    filter: saturate(0.7);
}

@media (max-width: 900px) {
    .abt .title-strip .inner {
        flex-direction: column;
    }

    .abt .title-strip .right {
        width: 100%;
        height: 260px;
    }

    .abt .title-strip .right img {
        height: 260px;
    }

    .abt .story .row {
        flex-direction: column;
    }

    .abt .story .col-img {
        flex: none;
        width: 100%;
    }

    .abt .story .col-img img {
        width: 100%;
        height: 280px;
    }

    .abt .story .two-col {
        grid-template-columns: 1fr;
    }

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

    .abt .vals .three-col {
        grid-template-columns: 1fr 1fr;
    }

    .abt .vals .img-accent {
        display: none;
    }

    .abt .team .top {
        flex-direction: column;
        align-items: flex-start;
    }
}

@media (max-width: 600px) {
    .abt .title-strip .left h1 {
        font-size: 38px;
    }

    .abt .story .col-text h2 {
        font-size: 28px;
    }

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

    .abt .vals .three-col {
        grid-template-columns: 1fr;
    }

    .abt .story .stats-row {
        flex-direction: column;
        gap: 20px;
    }

    .abt .vals .dashed-frame h2 {
        font-size: 28px;
    }

    .abt .team .top h2 {
        font-size: 28px;
    }
}

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

.cu-pg .frame {
    max-width: 1140px;
    margin: 0 auto;
    padding: 0 20px;
}

.cu-pg .strip {
    padding: 80px 0;
}

.cu-pg .strip.tight {
    padding: 40px 0;
}

.cu-pg .grad-word {
    background: linear-gradient(90deg, #015A5B 50%, #FC6663 50%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* TITLE BLOCK */
.cu-pg .tb {
    background-color: #fff;
    position: relative;
    overflow: hidden;
}

.cu-pg .tb-diag {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
}

.cu-pg .tb-diag::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: repeating-linear-gradient(-55deg,
            transparent,
            transparent 18px,
            rgba(1, 90, 91, 0.04) 18px,
            rgba(1, 90, 91, 0.04) 20px);
}

.cu-pg .tb-inner {
    display: flex;
    flex-direction: row;
    align-items: flex-end;
    gap: 40px;
    padding: 40px 0 0 0;
}

.cu-pg .tb-text {
    flex: 2;
    padding-bottom: 40px;
}

.cu-pg .tb-label {
    display: inline-block;
    font-size: 15px;
    line-height: 1.4;
    color: #015A5B;
    border: 1px solid #015A5B;
    padding: 4px 12px;
    border-radius: 4px;
    margin-bottom: 20px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.cu-pg .tb-h1 {
    font-size: 52px;
    line-height: 1.15;
    color: #1a2e2e;
    margin-bottom: 20px;
    color: #0d2626;
}

.cu-pg .tb-sub {
    font-size: 18px;
    line-height: 1.6;
    color: #2a4040;
    max-width: 480px;
}

.cu-pg .tb-img {
    flex: 1;
    align-self: flex-end;
}

.cu-pg .tb-img img {
    width: 100%;
    height: 280px;
    object-fit: cover;
    object-position: center top;
    border-radius: 10px 10px 0 0;
    display: block;
    box-shadow: 2px 10px 40px 0 rgba(252, 102, 99, 0.10);
}

/* SVG DIVIDER */
.cu-pg .div-svg {
    display: block;
    width: 100%;
    overflow: hidden;
    line-height: 0;
}

/* CONTACT GRID BLOCK */
.cu-pg .cg {
    background-color: #F4FFC1;
    position: relative;
}

.cu-pg .cg-shape {
    position: absolute;
    top: -40px;
    right: 0;
    width: 260px;
    height: 260px;
    pointer-events: none;
    overflow: hidden;
}

.cu-pg .cg-shape svg {
    width: 100%;
    height: 100%;
    opacity: 0.12;
}

.cu-pg .cg-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: start;
}

.cu-pg .cg-left {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.cu-pg .cg-eyebrow {
    font-size: 15px;
    line-height: 1.4;
    color: #015A5B;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 8px;
}

.cu-pg .cg-h2 {
    font-size: 38px;
    line-height: 1.15;
    color: #0d2626;
    margin-bottom: 20px;
}

.cu-pg .cg-desc {
    font-size: 18px;
    line-height: 1.6;
    color: #2a4040;
    margin-bottom: 20px;
}

.cu-pg .cg-details {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.cu-pg .det-row {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    gap: 12px;
}

.cu-pg .det-icon {
    width: 40px;
    height: 40px;
    background: #015A5B;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.cu-pg .det-icon svg {
    width: 20px;
    height: 20px;
    fill: none;
    stroke: #fff;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.cu-pg .det-body {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.cu-pg .det-label {
    font-size: 15px;
    line-height: 1.4;
    color: #015A5B;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

.cu-pg .det-val {
    font-size: 18px;
    line-height: 1.4;
    color: #0d2626;
}

.cu-pg .det-val a {
    color: #0d2626;
    text-decoration: none;
    transition: color 0.15s ease-out;
}

.cu-pg .det-val a:hover {
    color: #FC6663;
}

/* FORM */
.cu-pg .frm-wrap {
    background: #fff;
    border-radius: 10px;
    padding: 40px;
    box-shadow: 2px 7px 18px 0 rgba(1, 90, 91, 0.08), inset 0 1px 3px 0 rgba(1, 90, 91, 0.04);
}

.cu-pg .frm-ttl {
    font-size: 22px;
    line-height: 1.15;
    color: #0d2626;
    margin-bottom: 20px;
}

.cu-pg .frm-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin-bottom: 12px;
}

.cu-pg .frm-group {
    display: flex;
    flex-direction: column;
    gap: 4px;
    margin-bottom: 12px;
}

.cu-pg .frm-group.full {
    width: 100%;
}

.cu-pg .frm-lbl {
    font-size: 15px;
    line-height: 1.4;
    color: #2a4040;
    font-weight: 600;
}

.cu-pg .frm-inp {
    width: 100%;
    padding: 12px;
    font-size: 15px;
    line-height: 1.4;
    color: #0d2626;
    background: #fff;
    border: 1.5px solid #c5d8d8;
    border-radius: 6px;
    outline: none;
    transition: border-color 0.15s ease-out, box-shadow 0.15s ease-out;
    box-sizing: border-box;
}

.cu-pg .frm-inp::placeholder {
    color: rgba(42, 64, 64, 0.4);
}

.cu-pg .frm-inp:focus {
    border-color: #015A5B;
    box-shadow: 2px 3px 3px 0 rgba(1, 90, 91, 0.06);
}

.cu-pg .frm-select {
    width: 100%;
    padding: 12px;
    font-size: 15px;
    line-height: 1.4;
    color: #0d2626;
    background: #fff;
    border: 1.5px solid #c5d8d8;
    border-radius: 6px;
    outline: none;
    appearance: none;
    -webkit-appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%23015A5B' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 12px center;
    padding-right: 40px;
    cursor: pointer;
    transition: border-color 0.15s ease-out, box-shadow 0.15s ease-out;
    box-sizing: border-box;
}

.cu-pg .frm-select:focus {
    border-color: #015A5B;
    box-shadow: 2px 3px 3px 0 rgba(1, 90, 91, 0.06);
}

.cu-pg .frm-check-row {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 20px;
    margin-top: 8px;
}

.cu-pg .frm-check {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
    margin-top: 2px;
    accent-color: #015A5B;
    cursor: pointer;
}

.cu-pg .frm-check-txt {
    font-size: 15px;
    line-height: 1.6;
    color: #2a4040;
}

.cu-pg .frm-check-txt a {
    color: #015A5B;
    text-decoration: underline;
    text-underline-offset: 3px;
    transition: color 0.12s ease;
}

.cu-pg .frm-check-txt a:hover {
    color: #FC6663;
}

.cu-pg .frm-btn {
    display: inline-flex;
    flex-direction: row;
    align-items: center;
    gap: 8px;
    padding: 12px 20px;
    background: #015A5B;
    color: #fff;
    font-size: 15px;
    line-height: 1.4;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    transition: background 0.15s ease-out, padding-right 0.2s ease-out, box-shadow 0.15s ease-out;
    font-weight: 600;
}

.cu-pg .frm-btn svg {
    width: 16px;
    height: 16px;
    fill: none;
    stroke: #fff;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
    transition: transform 0.2s ease-out;
}

.cu-pg .frm-btn:hover {
    background: #FC6663;
    padding-right: 28px;
    box-shadow: 2px 7px 18px 0 rgba(252, 102, 99, 0.08);
}

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

.cu-pg .frm-btn:focus {
    outline: 2px solid #FC6663;
    outline-offset: 3px;
}

/* LOAD ANIMATION */
@keyframes cu-reveal {
    from {
        opacity: 0;
        transform: rotate(-1.5deg) translateY(24px);
    }

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

.cu-pg .tb-inner {
    animation: cu-reveal 0.2s ease-out both;
}

.cu-pg .cg-grid {
    animation: cu-reveal 0.18s ease-out 0.08s both;
}

/* RESPONSIVE */
@media (max-width: 860px) {
    .cu-pg .tb-inner {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
    }

    .cu-pg .tb-img {
        width: 100%;
    }

    .cu-pg .tb-img img {
        height: 200px;
        border-radius: 10px;
    }

    .cu-pg .tb-h1 {
        font-size: 38px;
    }

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

    .cu-pg .frm-row {
        grid-template-columns: 1fr;
    }

    .cu-pg .frm-wrap {
        padding: 20px;
    }
}

@media (max-width: 540px) {
    .cu-pg .tb-h1 {
        font-size: 28px;
    }

    .cu-pg .cg-h2 {
        font-size: 28px;
    }
}

.ld-pg {
    background: #fff;
    overflow-x: clip;
}

.ld-pg .mx {
    max-width: 1140px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 20px;
    padding-right: 20px;
}

.ld-pg .divider-atm {
    height: 1px;
    background: transparent;
    box-shadow: 0 4px 18px 0 rgba(1, 90, 91, 0.10);
    margin: 0;
}

@keyframes diagWave {
    from {
        opacity: 0;
        transform: translate(-12px, 12px);
    }

    to {
        opacity: 1;
        transform: translate(0, 0);
    }
}

.ld-pg .anim {
    animation: diagWave 0.18s ease-out both;
}

.ld-pg .anim-d1 {
    animation-delay: 0.05s;
}

.ld-pg .anim-d2 {
    animation-delay: 0.10s;
}

.ld-pg .anim-d3 {
    animation-delay: 0.15s;
}

.ld-pg .anim-d4 {
    animation-delay: 0.20s;
}

.ld-pg .anim-d5 {
    animation-delay: 0.25s;
}

/* ── SECTION 1: TITLE BLOCK ── */
.ld-pg .tb {
    padding-top: 80px;
    padding-bottom: 80px;
    background: #fff;
    position: relative;
}

.ld-pg .tb-frame {
    border: 1px solid rgba(1, 90, 91, 0.18);
    border-radius: 6px;
    padding: 40px;
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 40px;
    position: relative;
}

.ld-pg .tb-frame::before {
    content: '';
    position: absolute;
    top: 8px;
    left: 8px;
    right: -8px;
    bottom: -8px;
    border: 1px solid rgba(252, 102, 99, 0.15);
    border-radius: 6px;
    pointer-events: none;
}

.ld-pg .tb-text {
    flex: 1 1 0;
    min-width: 0;
}

.ld-pg .tb-label {
    display: inline-block;
    border: 1px solid rgba(1, 90, 91, 0.35);
    border-radius: 4px;
    padding: 4px 12px;
    font-size: 15px;
    color: #015A5B;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.ld-pg .tb-h1 {
    font-size: 52px;
    line-height: 1.15;
    color: #111;
    margin-bottom: 20px;
    background: linear-gradient(90deg, #015A5B 50%, #FC6663 50%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.ld-pg .tb-sub {
    font-size: 18px;
    line-height: 1.6;
    color: #2a2a2a;
    max-width: 480px;
    margin-bottom: 40px;
}

.ld-pg .tb-cta {
    display: inline-flex;
    flex-direction: row;
    align-items: center;
    gap: 8px;
    background: #015A5B;
    color: #F4FFC1;
    font-size: 15px;
    border-radius: 4px;
    padding: 12px 20px;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: padding-right 0.15s ease-out, box-shadow 0.15s ease-out;
    box-shadow: 2px 7px 18px 0 rgba(1, 90, 91, 0.08);
}

.ld-pg .tb-cta:hover {
    padding-right: 28px;
    box-shadow: 2px 10px 40px 0 rgba(1, 90, 91, 0.10);
}

.ld-pg .tb-cta-arr {
    font-size: 18px;
    line-height: 1;
}

.ld-pg .tb-img-wrap {
    flex: 0 0 380px;
    width: 380px;
    height: 320px;
    border-radius: 6px;
    overflow: hidden;
    box-shadow: 2px 10px 40px 0 rgba(1, 90, 91, 0.10);
    position: relative;
}

.ld-pg .tb-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    filter: blur(0px);
}

.ld-pg .tb-img-wrap::after {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at center, transparent 55%, rgba(255, 255, 255, 0.35) 100%);
    pointer-events: none;
}

/* ── SECTION 2: WHAT IS AVAILABLE ── */
.ld-pg .avail {
    padding-top: 80px;
    padding-bottom: 80px;
    background: linear-gradient(0deg, #fff 0%, #f2f8f8 100%);
}

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

.ld-pg .avail-h2 {
    font-size: 38px;
    line-height: 1.15;
    color: #111;
    max-width: 520px;
    background: linear-gradient(90deg, #015A5B 50%, #FC6663 50%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.ld-pg .avail-intro {
    font-size: 15px;
    line-height: 1.6;
    color: #2a2a2a;
    max-width: 320px;
}

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

.ld-pg .av-card {
    background: #fff;
    border-radius: 6px;
    padding: 20px;
    box-shadow: 2px 7px 18px 0 rgba(1, 90, 91, 0.08);
    transition: box-shadow 0.18s ease-out, transform 0.18s ease-out;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.ld-pg .av-card:hover {
    box-shadow: 2px 10px 40px 0 rgba(1, 90, 91, 0.10);
    transform: translateY(-2px);
}

.ld-pg .av-icon {
    width: 40px;
    height: 40px;
    border-radius: 4px;
    background: #F4FFC1;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
}

.ld-pg .av-icon svg {
    width: 22px;
    height: 22px;
}

.ld-pg .av-name {
    font-size: 18px;
    line-height: 1.4;
    color: #015A5B;
    font-weight: 600;
}

.ld-pg .av-desc {
    font-size: 15px;
    line-height: 1.6;
    color: #2a2a2a;
}

.ld-pg .av-link {
    display: inline-flex;
    flex-direction: row;
    align-items: center;
    gap: 4px;
    font-size: 15px;
    color: #FC6663;
    text-decoration: none;
    margin-top: auto;
    transition: gap 0.12s ease-out;
}

.ld-pg .av-link:hover {
    gap: 8px;
}

/* ── SECTION 3: HESITATION ── */
.ld-pg .hesit {
    padding-top: 80px;
    padding-bottom: 80px;
    background: #015A5B;
}

.ld-pg .hesit-inner {
    display: flex;
    flex-direction: row;
    gap: 40px;
    align-items: flex-start;
}

.ld-pg .hesit-left {
    flex: 0 0 480px;
}

.ld-pg .hesit-right {
    flex: 1 1 0;
    min-width: 0;
}

.ld-pg .hesit-tag {
    display: inline-block;
    border: 1px solid rgba(244, 255, 193, 0.4);
    border-radius: 4px;
    padding: 4px 12px;
    font-size: 15px;
    color: #F4FFC1;
    letter-spacing: 0.07em;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.ld-pg .hesit-h2 {
    font-size: 38px;
    line-height: 1.15;
    color: #F4FFC1;
    margin-bottom: 20px;
}

.ld-pg .hesit-img {
    width: 100%;
    height: 280px;
    object-fit: cover;
    border-radius: 6px;
    display: block;
    box-shadow: 2px 10px 40px 0 rgba(252, 102, 99, 0.10);
    margin-top: 40px;
}

.ld-pg .hesit-body {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.ld-pg .hesit-q {
    font-size: 22px;
    line-height: 1.4;
    color: #F4FFC1;
    font-weight: 600;
}

.ld-pg .hesit-a {
    font-size: 15px;
    line-height: 1.6;
    color: rgba(244, 255, 193, 0.85);
}

.ld-pg .hesit-note {
    border: 1px solid rgba(244, 255, 193, 0.3);
    border-radius: 4px;
    padding: 12px 20px;
    font-size: 15px;
    line-height: 1.6;
    color: #F4FFC1;
    margin-top: 8px;
}

/* ── SECTION 4: REAL PEOPLE ── */
.ld-pg .voices {
    padding-top: 80px;
    padding-bottom: 80px;
    background: #fff;
}

.ld-pg .voices-head {
    margin-bottom: 40px;
}

.ld-pg .voices-h2 {
    font-size: 38px;
    line-height: 1.15;
    color: #111;
    margin-bottom: 12px;
    background: linear-gradient(90deg, #FC6663 50%, #015A5B 50%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.ld-pg .voices-sub {
    font-size: 15px;
    line-height: 1.6;
    color: #2a2a2a;
    max-width: 560px;
}

.ld-pg .voices-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.ld-pg .voice-card {
    background: #fff;
    border-radius: 6px;
    padding: 20px;
    box-shadow: inset 0 2px 8px 0 rgba(1, 90, 91, 0.06), 2px 3px 3px 0 rgba(1, 90, 91, 0.06);
    display: flex;
    flex-direction: column;
    gap: 12px;
    transition: box-shadow 0.18s ease-out;
}

.ld-pg .voice-card:hover {
    box-shadow: inset 0 2px 8px 0 rgba(1, 90, 91, 0.06), 2px 10px 40px 0 rgba(1, 90, 91, 0.10);
}

.ld-pg .voice-card.wide {
    grid-column: span 2;
    display: grid;
    grid-template-columns: 260px 1fr;
    gap: 20px;
    align-items: center;
}

.ld-pg .voice-img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 4px;
    display: block;
    box-shadow: 2px 7px 18px 0 rgba(1, 90, 91, 0.08);
}

.ld-pg .voice-img.tall {
    height: 260px;
}

.ld-pg .voice-quote {
    font-size: 18px;
    line-height: 1.6;
    color: #111;
    font-style: italic;
}

.ld-pg .voice-context {
    font-size: 15px;
    line-height: 1.4;
    color: #2a2a2a;
}

.ld-pg .voice-who {
    font-size: 15px;
    line-height: 1.4;
    color: #015A5B;
    font-weight: 600;
}

.ld-pg .voice-before-after {
    display: flex;
    flex-direction: row;
    gap: 12px;
    margin-top: 8px;
}

.ld-pg .ba-pill {
    border-radius: 4px;
    padding: 4px 12px;
    font-size: 15px;
    line-height: 1.4;
}

.ld-pg .ba-pill.before {
    background: rgba(252, 102, 99, 0.10);
    color: #c0302e;
}

.ld-pg .ba-pill.after {
    background: rgba(1, 90, 91, 0.10);
    color: #015A5B;
}

/* ── SECTION 5: ENVIRONMENT ── */
.ld-pg .env {
    padding-top: 80px;
    padding-bottom: 80px;
    background: #F4FFC1;
}

.ld-pg .env-inner {
    display: flex;
    flex-direction: row;
    gap: 40px;
    align-items: flex-start;
}

.ld-pg .env-text {
    flex: 1 1 0;
    min-width: 0;
}

.ld-pg .env-aside {
    flex: 0 0 340px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.ld-pg .env-h2 {
    font-size: 38px;
    line-height: 1.15;
    color: #015A5B;
    margin-bottom: 20px;
}

.ld-pg .env-p {
    font-size: 15px;
    line-height: 1.6;
    color: #1a3535;
    margin-bottom: 20px;
}

.ld-pg .env-cols {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin-top: 20px;
}

.ld-pg .env-item {
    background: rgba(1, 90, 91, 0.07);
    border-radius: 4px;
    padding: 12px;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.ld-pg .env-item-title {
    font-size: 15px;
    font-weight: 600;
    color: #015A5B;
}

.ld-pg .env-item-desc {
    font-size: 15px;
    line-height: 1.4;
    color: #1a3535;
}

.ld-pg .env-stat {
    background: #015A5B;
    border-radius: 6px;
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 4px;
    transition: box-shadow 0.15s ease-out;
    box-shadow: 2px 3px 3px 0 rgba(1, 90, 91, 0.06);
}

.ld-pg .env-stat:hover {
    box-shadow: 2px 10px 40px 0 rgba(1, 90, 91, 0.10);
}

.ld-pg .env-stat-num {
    font-size: 38px;
    line-height: 1.15;
    color: #F4FFC1;
    font-weight: 700;
}

.ld-pg .env-stat-label {
    font-size: 15px;
    line-height: 1.4;
    color: rgba(244, 255, 193, 0.8);
}

/* ── SECTION 6: CONDITIONS ── */
.ld-pg .cond {
    padding-top: 80px;
    padding-bottom: 80px;
    background: #fff;
}

.ld-pg .cond-h2 {
    font-size: 38px;
    line-height: 1.15;
    color: #111;
    margin-bottom: 12px;
    background: linear-gradient(90deg, #015A5B 50%, #FC6663 50%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.ld-pg .cond-intro {
    font-size: 15px;
    line-height: 1.6;
    color: #2a2a2a;
    max-width: 600px;
    margin-bottom: 40px;
}

.ld-pg .cond-layout {
    display: flex;
    flex-direction: row;
    gap: 40px;
    align-items: flex-start;
}

.ld-pg .cond-list {
    flex: 1 1 0;
    min-width: 0;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.ld-pg .cond-row {
    display: flex;
    flex-direction: row;
    gap: 12px;
    align-items: flex-start;
}

.ld-pg .cond-num {
    flex: 0 0 40px;
    height: 40px;
    border-radius: 4px;
    background: #F4FFC1;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    font-weight: 700;
    color: #015A5B;
}

.ld-pg .cond-body {
    flex: 1 1 0;
    min-width: 0;
}

.ld-pg .cond-title {
    font-size: 18px;
    line-height: 1.4;
    color: #015A5B;
    font-weight: 600;
    margin-bottom: 4px;
}

.ld-pg .cond-desc {
    font-size: 15px;
    line-height: 1.6;
    color: #2a2a2a;
}

.ld-pg .cond-aside {
    flex: 0 0 360px;
    background: rgba(1, 90, 91, 0.04);
    border-radius: 6px;
    padding: 20px;
    box-shadow: inset 2px 3px 3px 0 rgba(1, 90, 91, 0.06);
}

.ld-pg .cond-aside-h {
    font-size: 22px;
    line-height: 1.4;
    color: #015A5B;
    margin-bottom: 12px;
    font-weight: 600;
}

.ld-pg .cond-aside-p {
    font-size: 15px;
    line-height: 1.6;
    color: #2a2a2a;
    margin-bottom: 20px;
}

.ld-pg .cond-link {
    display: inline-flex;
    flex-direction: row;
    align-items: center;
    gap: 8px;
    background: #FC6663;
    color: #fff;
    font-size: 15px;
    border-radius: 4px;
    padding: 12px 20px;
    text-decoration: none;
    transition: padding-right 0.15s ease-out, box-shadow 0.15s ease-out;
    box-shadow: 2px 3px 3px 0 rgba(252, 102, 99, 0.06);
}

.ld-pg .cond-link:hover {
    padding-right: 28px;
    box-shadow: 2px 10px 40px 0 rgba(252, 102, 99, 0.10);
}

/* RESPONSIVE */
@media (max-width: 900px) {
    .ld-pg .tb-frame {
        flex-direction: column;
    }

    .ld-pg .tb-img-wrap {
        flex: none;
        width: 100%;
        height: 240px;
    }

    .ld-pg .tb-h1 {
        font-size: 38px;
    }

    .ld-pg .avail-grid {
        grid-template-columns: 1fr 1fr;
    }

    .ld-pg .avail-top {
        flex-direction: column;
        align-items: flex-start;
    }

    .ld-pg .hesit-inner {
        flex-direction: column;
    }

    .ld-pg .hesit-left {
        flex: none;
        width: 100%;
    }

    .ld-pg .voices-layout {
        grid-template-columns: 1fr;
    }

    .ld-pg .voice-card.wide {
        grid-column: span 1;
        grid-template-columns: 1fr;
    }

    .ld-pg .env-inner {
        flex-direction: column;
    }

    .ld-pg .env-aside {
        flex: none;
        width: 100%;
        flex-direction: row;
        flex-wrap: wrap;
    }

    .ld-pg .env-stat {
        flex: 1 1 140px;
    }

    .ld-pg .cond-layout {
        flex-direction: column;
    }

    .ld-pg .cond-aside {
        flex: none;
        width: 100%;
    }
}

@media (max-width: 600px) {
    .ld-pg .tb {
        padding-top: 40px;
        padding-bottom: 40px;
    }

    .ld-pg .tb-frame {
        padding: 20px;
    }

    .ld-pg .tb-h1 {
        font-size: 28px;
    }

    .ld-pg .avail-grid {
        grid-template-columns: 1fr;
    }

    .ld-pg .avail-h2,
    .ld-pg .hesit-h2,
    .ld-pg .voices-h2,
    .ld-pg .env-h2,
    .ld-pg .cond-h2 {
        font-size: 28px;
    }

    .ld-pg .env-cols {
        grid-template-columns: 1fr;
    }

    .ld-pg .voice-before-after {
        flex-direction: column;
    }
}

.succ-page {
    min-height: 60vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 80px 20px;
    background: #fff;
}

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

.succ-page .succ-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid #015A5B;
    border-radius: 10px;
    box-shadow: 2px 7px 18px 0 rgba(1, 90, 91, 0.08);
}

.succ-page .succ-icon svg {
    display: block;
}

.succ-page .succ-label {
    display: inline-block;
    font-size: 15px;
    line-height: 1.4;
    color: #015A5B;
    border: 1px solid #015A5B;
    border-radius: 4px;
    padding: 4px 12px;
    margin-bottom: 20px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.succ-page .succ-heading {
    font-size: 38px;
    line-height: 1.15;
    color: #015A5B;
    margin-bottom: 20px;
    background: linear-gradient(90deg, #015A5B 50%, #FC6663 50%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.succ-page .succ-text {
    font-size: 18px;
    line-height: 1.6;
    color: #2d3a3a;
    margin-bottom: 40px;
}

.succ-page .succ-divider {
    width: 40px;
    height: 3px;
    background: #FC6663;
    border-radius: 0px;
    margin: 0 auto 40px;
}

.succ-page .succ-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 15px;
    line-height: 1.4;
    color: #015A5B;
    text-decoration: none;
    border: 1px solid #015A5B;
    border-radius: 6px;
    padding: 12px 20px;
    background: #fff;
    box-shadow: 2px 3px 3px 0 rgba(1, 90, 91, 0.06);
    transition: padding-right 0.15s ease-out, box-shadow 0.15s ease-out;
}

.succ-page .succ-btn:hover {
    padding-right: 28px;
    box-shadow: 2px 7px 18px 0 rgba(1, 90, 91, 0.08);
}

.succ-page .succ-btn:focus-visible {
    outline: 2px solid #FC6663;
    outline-offset: 3px;
}

.succ-page .succ-btn svg {
    flex-shrink: 0;
    transition: transform 0.15s ease-out;
}

.succ-page .succ-btn:hover svg {
    transform: translateX(4px);
}

.pg404 {
    min-height: 80vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 80px 20px;
    background: #fff;
}

.pg404 .code {
    font-size: 68px;
    line-height: 1.15;
    font-weight: 700;
    letter-spacing: -2px;
    background: linear-gradient(90deg, #FC6663 50%, #015A5B 50%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 8px;
}

.pg404 .wrap {
    max-width: 520px;
    text-align: center;
}

.pg404 .wrap .label {
    display: inline-block;
    font-size: 15px;
    line-height: 1.4;
    color: #015A5B;
    border: 1px solid #015A5B;
    padding: 4px 12px;
    border-radius: 4px;
    margin-bottom: 20px;
}

.pg404 .wrap .ttl {
    font-size: 28px;
    line-height: 1.4;
    color: #1b2a2a;
    margin-bottom: 12px;
}

.pg404 .wrap .desc {
    font-size: 18px;
    line-height: 1.6;
    color: #2e4a4a;
    margin-bottom: 40px;
}

.pg404 .back-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 15px;
    line-height: 1.4;
    color: #fff;
    background: #015A5B;
    padding: 12px 20px;
    border-radius: 6px;
    text-decoration: none;
    box-shadow: 2px 7px 18px 0 rgba(1, 90, 91, 0.08);
    transition: padding-right 0.15s ease-out, box-shadow 0.15s ease-out;
}

.pg404 .back-btn:hover {
    padding-right: 28px;
    box-shadow: 2px 10px 40px 0 rgba(1, 90, 91, 0.10);
}

.pg404 .back-btn:focus-visible {
    outline: 2px solid #FC6663;
    outline-offset: 3px;
}

.pg404 .back-btn .arr {
    display: inline-block;
    width: 16px;
    height: 16px;
    flex-shrink: 0;
}

.pg404 .deco {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 40px;
}

.pg404 .deco span {
    display: block;
    height: 3px;
    border-radius: 0px;
}

.pg404 .deco .d1 {
    width: 40px;
    background: #FC6663;
}

.pg404 .deco .d2 {
    width: 12px;
    background: #015A5B;
}

.pg404 .deco .d3 {
    width: 20px;
    background: #F4FFC1;
    border: 1px solid #015A5B;
}