* {
    box-sizing: border-box;
}

body {
    margin: 0;
    min-height: 100dvh;
    -webkit-text-size-adjust: 100%;
    text-size-adjust: 100%;
}

@import url('https://cdn.jsdelivr.net/npm/@fontsource/cormorant@latest/400.css');
@import url('https://cdn.jsdelivr.net/npm/@fontsource/cormorant@latest/700.css');

.topstrip {
    height: 4px;
    background: linear-gradient(90deg, #DB5F52 0%, #3085BC 60%, #E6EBE2 100%);
    width: 100%;
}

.headplate {
    background: #fff;
    border-bottom: 1px solid #E6EBE2;
    box-shadow: 0 2px 4px 0 rgba(219, 95, 82, 0.07);
    position: relative;
    z-index: 100;
}

.headinner {
    max-width: 1500px;
    margin: 0 auto;
    padding: 0 32px;
    display: flex;
    align-items: stretch;
    gap: 32px;
}

.brandpod {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 16px 32px 16px 0;
    border-top: 2px solid #DB5F52;
    border-bottom: 2px solid #3085BC;
    border-radius: 0 0 8px 8px;
    background: #fff;
    box-shadow: 0 5px 25px 0 rgba(48, 133, 188, 0.11);
    min-width: 120px;
    flex-shrink: 0;
    margin: 0;
    position: relative;
}

.brandpod::after {
    content: "";
    position: absolute;
    right: 0;
    top: 16px;
    bottom: 16px;
    width: 1px;
    background: #E6EBE2;
}

.logocell {
    width: 64px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fff;
    border: 1px solid #E6EBE2;
    border-radius: 8px 0 8px 0;
    box-shadow: 0 2px 4px 0 rgba(219, 95, 82, 0.07);
    padding: 8px;
}

.logocell img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
}

.brandname {
    font-family: 'Cormorant', Georgia, serif;
    font-size: 16px;
    font-weight: 700;
    color: #1a2540;
    letter-spacing: 0.08em;
    margin-top: 8px;
    white-space: nowrap;
    line-height: 1.1;
}

.navdeck {
    display: flex;
    flex-direction: column;
    justify-content: center;
    flex: 1;
    padding: 16px 0;
    gap: 8px;
}

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

.navrow a {
    font-family: 'Cormorant', Georgia, serif;
    font-size: 16px;
    font-weight: 400;
    color: #2c3a52;
    text-decoration: none;
    padding: 8px 16px;
    border-radius: 8px;
    line-height: 1.3;
    letter-spacing: 0.03em;
    transition: color 0.2s ease-out, background-color 0.35s ease-out;
    white-space: nowrap;
    display: inline-block;
    min-height: 44px;
    display: flex;
    align-items: center;
}

.navrow a:hover,
.navrow a:focus {
    color: #DB5F52;
    background-color: #E6EBE2;
    outline: none;
}

.navrow a:focus {
    border-color: #3085BC;
}

.navrow a.active {
    color: #DB5F52;
    font-weight: 700;
}

.regionpod {
    display: flex;
    align-items: center;
    padding: 16px 0 16px 16px;
    flex-shrink: 0;
}

.regionsel {
    font-family: 'Cormorant', Georgia, serif;
    font-size: 16px;
    color: #2c3a52;
    border: 1px solid #E6EBE2;
    border-radius: 8px;
    padding: 8px 16px;
    background: #fff;
    cursor: pointer;
    min-height: 44px;
    transition: border-color 0.2s ease-out, background-color 0.25s ease-out;
    outline: none;
    letter-spacing: 0.03em;
}

.regionsel:hover,
.regionsel:focus {
    border-color: #3085BC;
    background-color: #E6EBE2;
}

@media (max-width: 1024px) {
    .headinner {
        padding: 0 16px;
        gap: 16px;
    }

    .navrow a {
        font-size: 16px;
        padding: 8px 8px;
    }

    .brandpod {
        padding: 16px 16px 16px 0;
    }
}

@media (max-width: 768px) {
    .headinner {
        flex-wrap: wrap;
        padding: 0 16px;
        gap: 8px;
    }

    .brandpod {
        padding: 16px;
        border-radius: 0 0 8px 8px;
        min-width: 100px;
    }

    .brandpod::after {
        display: none;
    }

    .navdeck {
        width: 100%;
        padding: 8px 0;
    }

    .navrow {
        gap: 8px;
    }

    .regionpod {
        padding: 8px 0;
    }
}

@media (max-width: 360px) {
    .navrow a {
        font-size: 16px;
        padding: 8px;
    }

    .logocell {
        width: 52px;
        height: 52px;
    }
}

.footplate {
    background: #2c3a52;
    position: relative;
    overflow: hidden;
}

.footplate::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image: repeating-linear-gradient(0deg,
            transparent,
            transparent 31px,
            rgba(230, 235, 226, 0.04) 31px,
            rgba(230, 235, 226, 0.04) 32px), repeating-linear-gradient(90deg,
            transparent,
            transparent 31px,
            rgba(230, 235, 226, 0.04) 31px,
            rgba(230, 235, 226, 0.04) 32px);
    pointer-events: none;
}

.footinner {
    max-width: 1500px;
    margin: 0 auto;
    padding: 64px 32px 32px;
    position: relative;
    z-index: 1;
}

.footgrid {
    display: grid;
    grid-template-columns: 2fr 3fr;
    gap: 64px;
    align-items: start;
}

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

.footlogopod {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
}

.footlogobox {
    width: 64px;
    height: 64px;
    background: #fff;
    border-radius: 8px 0 8px 0;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 8px;
    box-shadow: 0 5px 25px 0 rgba(219, 95, 82, 0.11);
    border: 1px solid rgba(230, 235, 226, 0.3);
}

.footlogobox img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
}

.footbrand {
    font-family: 'Cormorant', Georgia, serif;
    font-size: 24px;
    font-weight: 700;
    color: #fff;
    letter-spacing: 0.06em;
    line-height: 1.1;
}

.footdesc {
    font-family: 'Cormorant', Georgia, serif;
    font-size: 16px;
    color: rgba(230, 235, 226, 0.75);
    line-height: 1.6;
    max-width: 280px;
}

.footcontact {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-top: 8px;
}

.footcontact a,
.footcontact span {
    font-family: 'Cormorant', Georgia, serif;
    font-size: 16px;
    color: rgba(230, 235, 226, 0.8);
    text-decoration: none;
    line-height: 1.3;
    transition: color 0.2s ease-out;
}

.footcontact a:hover,
.footcontact a:focus {
    color: #DB5F52;
    outline: none;
}

.footrightcell {
    display: flex;
    flex-direction: column;
    gap: 32px;
    padding-top: 8px;
}

.footlinksrow {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 0;
}

.footlink {
    font-family: 'Cormorant', Georgia, serif;
    font-size: 16px;
    color: rgba(230, 235, 226, 0.85);
    text-decoration: none;
    padding: 8px 16px;
    line-height: 1.3;
    letter-spacing: 0.03em;
    transition: color 0.22s ease-out;
    white-space: nowrap;
    min-height: 44px;
    display: flex;
    align-items: center;
}

.footlink:hover,
.footlink:focus {
    color: #DB5F52;
    outline: none;
}

.footdivider {
    width: 1px;
    height: 16px;
    background: rgba(230, 235, 226, 0.25);
    flex-shrink: 0;
}

.footpolicydeck {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 0;
    padding-top: 16px;
    border-top: 1px solid rgba(230, 235, 226, 0.12);
}

.footpolicylink {
    font-family: 'Cormorant', Georgia, serif;
    font-size: 16px;
    color: rgba(230, 235, 226, 0.55);
    text-decoration: none;
    padding: 8px 16px;
    letter-spacing: 0.03em;
    line-height: 1.3;
    transition: color 0.18s ease-out;
    min-height: 44px;
    display: flex;
    align-items: center;
}

.footpolicylink:hover,
.footpolicylink:focus {
    color: #E6EBE2;
    outline: none;
}

.footpolicydiv {
    width: 1px;
    height: 14px;
    background: rgba(230, 235, 226, 0.2);
    flex-shrink: 0;
}

.footbottom {
    margin-top: 32px;
    padding-top: 16px;
    border-top: 1px solid rgba(230, 235, 226, 0.1);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    position: relative;
    z-index: 1;
}

.footlogocenter {
    width: 52px;
    height: 52px;
    background: #fff;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 8px;
    box-shadow: 0 8px 52px 0 rgba(219, 95, 82, 0.14);
}

.footlogocenter img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
}

.footcopy {
    font-family: 'Cormorant', Georgia, serif;
    font-size: 16px;
    color: rgba(230, 235, 226, 0.4);
    letter-spacing: 0.05em;
    line-height: 1.3;
    text-align: center;
}

.footaccentbar {
    height: 3px;
    background: linear-gradient(90deg, #3085BC 0%, #DB5F52 50%, #E6EBE2 100%);
    width: 100%;
}

@media (max-width: 1024px) {
    .footgrid {
        grid-template-columns: 1fr 2fr;
        gap: 32px;
    }

    .footinner {
        padding: 64px 16px 32px;
    }
}

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

    .footdesc {
        max-width: 100%;
    }
}

@media (max-width: 360px) {
    .footinner {
        padding: 32px 16px 16px;
    }

    .footlinksrow {
        flex-direction: column;
        align-items: flex-start;
        gap: 0;
    }

    .footdivider {
        display: none;
    }
}

.cookiebox {
    position: fixed;
    top: 32px;
    right: 32px;
    width: 300px;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 8px 52px 0 rgba(219, 95, 82, 0.14);
    padding: 16px;
    z-index: 2000;
    border-top: 3px solid #DB5F52;
    transform: translateX(360px);
    transition: transform 0.38s ease-out;
}

.cookiebox.visible {
    transform: translateX(0);
}

.cookieiconrow {
    display: flex;
    align-items: center;
    margin-bottom: 8px;
}

.cookieicon {
    width: 32px;
    height: 32px;
    background: #E6EBE2;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.cookieicon svg {
    width: 18px;
    height: 18px;
}

.cookietext {
    font-family: 'Cormorant', Georgia, serif;
    font-size: 16px;
    color: #2c3a52;
    line-height: 1.6;
    margin-bottom: 16px;
}

.cookiebtnrow {
    display: flex;
    align-items: center;
    gap: 16px;
}

.cookieaccept {
    font-family: 'Cormorant', Georgia, serif;
    font-size: 16px;
    color: #DB5F52;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    text-decoration: underline;
    text-underline-offset: 3px;
    line-height: 1.3;
    min-height: 44px;
    transition: color 0.2s ease-out;
}

.cookieaccept:hover,
.cookieaccept:focus {
    color: #3085BC;
    outline: none;
}

.cookiedecline {
    font-family: 'Cormorant', Georgia, serif;
    font-size: 16px;
    color: rgba(44, 58, 82, 0.6);
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    text-decoration: underline;
    text-underline-offset: 3px;
    line-height: 1.3;
    min-height: 44px;
    transition: color 0.2s ease-out;
}

.cookiedecline:hover,
.cookiedecline:focus {
    color: #2c3a52;
    outline: none;
}

.prefbtn {
    position: fixed;
    bottom: 32px;
    right: 32px;
    width: 44px;
    height: 44px;
    background: #fff;
    border: 1px solid #E6EBE2;
    border-radius: 48px;
    box-shadow: 0 5px 25px 0 rgba(48, 133, 188, 0.11);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1999;
    transition: box-shadow 0.22s ease-out, border-color 0.22s ease-out;
}

.prefbtn:hover,
.prefbtn:focus {
    border-color: #3085BC;
    box-shadow: 0 8px 52px 0 rgba(48, 133, 188, 0.14);
    outline: none;
}

.prefbtn svg {
    width: 20px;
    height: 20px;
}

@media (max-width: 768px) {
    .cookiebox {
        right: 16px;
        top: 16px;
        width: calc(100vw - 32px);
        max-width: 300px;
    }
}

@media (max-width: 360px) {
    .cookiebox {
        right: 8px;
        top: 8px;
        width: calc(100vw - 16px);
    }

    .prefbtn {
        bottom: 16px;
        right: 16px;
    }
}

.policy-block {
    max-width: 1500px;
    margin: 0 auto;
    padding: 64px 96px;
    color: #2a2a35;
    font-size: 19px;
    line-height: 1.9;
}

.policy-block strong,
.policy-block b {
    font-weight: 700;
    color: #1e1e28;
}

.policy-block em,
.policy-block i {
    font-style: italic;
    color: #3a3a48;
}

.policy-block a {
    color: #3085BC;
    text-decoration: underline;
    text-decoration-thickness: 1px;
    text-underline-offset: 3px;
    transition: color 0.2s ease-out, text-decoration-color 0.35s ease-out;
}

.policy-block a:hover {
    color: #DB5F52;
    text-decoration-color: #DB5F52;
}

.policy-block a:visited {
    color: #256a99;
}

.policy-block table {
    width: 100%;
    border-collapse: collapse;
    margin: 32px 0;
    font-size: 16px;
    line-height: 1.6;
    box-shadow: 0 2px 4px 0 rgba(48, 133, 188, 0.07), 0 5px 25px 0 rgba(48, 133, 188, 0.11);
    border-radius: 8px;
    overflow: hidden;
}

.policy-block thead {
    background-color: #3085BC;
    color: #ffffff;
}

.policy-block thead th {
    padding: 16px 32px;
    text-align: left;
    font-size: 16px;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    border: none;
}

.policy-block tbody tr {
    border-bottom: 1px solid #E6EBE2;
    transition: background-color 0.15s ease-out;
}

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

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

.policy-block tbody tr:hover {
    background-color: #edf2f8;
}

.policy-block th,
.policy-block td {
    padding: 16px 32px;
    text-align: left;
    vertical-align: top;
}

.policy-block td {
    color: #2a2a35;
    font-size: 16px;
    line-height: 1.6;
}

.policy-block div {
    margin: 32px 0;
}

.policy-block div:first-child {
    margin-top: 0;
}

.policy-block div:last-child {
    margin-bottom: 0;
}

@media (max-width: 1024px) {
    .policy-block {
        padding: 64px 64px;
    }
}

@media (max-width: 768px) {
    .policy-block {
        padding: 32px 32px;
        font-size: 16px;
    }

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

    .policy-block thead th,
    .policy-block td {
        padding: 16px;
    }
}

@media (max-width: 360px) {
    .policy-block {
        padding: 32px 16px;
    }

    .policy-block thead th,
    .policy-block td {
        padding: 8px 16px;
    }
}

.gdtl {
    max-width: 1500px;
    margin: 0 auto;
    overflow-x: clip;
    position: relative;
}

.gdtl .titblk {
    position: relative;
    padding: 64px 64px 96px;
    background: linear-gradient(to bottom, transparent 0%, #3085BC 100%);
    overflow: hidden;
}

.gdtl .titblk::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 512 512' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.08'/%3E%3C/svg%3E");
    background-size: 256px 256px;
    pointer-events: none;
    z-index: 1;
}

.gdtl .titblk-img {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.gdtl .titblk-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: blur(3px) brightness(0.45);
    transform: scale(1.08);
}

.gdtl .titblk-geo {
    position: absolute;
    width: 320px;
    height: 320px;
    border: 2px solid rgba(48, 133, 188, 0.22);
    border-radius: 8px;
    top: -64px;
    right: 96px;
    animation: geoRotate 28s linear infinite;
    z-index: 2;
    pointer-events: none;
}

@keyframes geoRotate {
    from {
        transform: rotate(0deg);
    }

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

.gdtl .titblk-geo2 {
    position: absolute;
    width: 180px;
    height: 180px;
    border: 1px solid rgba(219, 95, 82, 0.18);
    border-radius: 8px;
    bottom: 32px;
    right: 160px;
    animation: geoRotate 18s linear infinite reverse;
    z-index: 2;
    pointer-events: none;
}

.gdtl .titblk-body {
    position: relative;
    z-index: 3;
    max-width: 760px;
}

.gdtl .titblk-tag {
    display: inline-block;
    font-size: 16px;
    line-height: 1.3;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #E6EBE2;
    background: rgba(219, 95, 82, 0.82);
    padding: 8px 16px;
    border-radius: 8px;
    margin-bottom: 32px;
}

.gdtl .titblk-h1 {
    font-size: 70px;
    line-height: 1.1;
    color: #fff;
    margin: 0 0 32px;
}

.gdtl .titblk-sub {
    font-size: 19px;
    line-height: 1.6;
    color: #E6EBE2;
    margin: 0;
}

.gdtl .artbody {
    display: grid;
    grid-template-columns: 1fr 340px;
    gap: 64px;
    padding: 96px 64px;
    align-items: start;
    background: #fff;
    position: relative;
}

.gdtl .artbody::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(to right, #DB5F52, #3085BC);
}

.gdtl .artcol-main {
    min-width: 0;
}

.gdtl .artcol-side {
    position: sticky;
    top: 32px;
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.gdtl .arttext {
    font-size: 19px;
    line-height: 1.9;
    color: #2a2d35;
}

.gdtl .arttext p {
    margin: 0 0 32px;
    counter-increment: para;
}

.gdtl .arttext p::before {
    content: counter(para, decimal-leading-zero);
    display: inline-block;
    font-size: 16px;
    line-height: 1.3;
    color: #DB5F52;
    font-weight: 700;
    letter-spacing: 0.06em;
    margin-right: 16px;
    vertical-align: top;
    margin-top: 4px;
}

.gdtl .arttext {
    counter-reset: para;
}

.gdtl .arttext h2 {
    font-size: 24px;
    line-height: 1.3;
    color: #1e2330;
    margin: 64px 0 16px;
    padding-bottom: 8px;
    border-bottom: 2px solid #E6EBE2;
    position: relative;
}

.gdtl .arttext h2::after {
    content: "";
    display: inline-block;
    width: 6px;
    height: 6px;
    border-radius: 48px;
    background: #DB5F52;
    margin-left: 8px;
    vertical-align: middle;
    margin-bottom: 3px;
}

.gdtl .arttext h4 {
    font-size: 19px;
    line-height: 1.3;
    color: #1e2330;
    margin: 32px 0 16px;
}

.gdtl .arttext strong {
    color: #1e2330;
    font-weight: 700;
}

.gdtl .arttext a {
    color: #3085BC;
    text-decoration: underline double #3085BC;
    text-underline-offset: 3px;
    transition: color 0.2s ease-out;
}

.gdtl .arttext a:hover {
    color: #DB5F52;
    text-decoration-color: #DB5F52;
}

.gdtl .arttext ul,
.gdtl .arttext ol {
    margin: 0 0 32px;
    padding-left: 32px;
}

.gdtl .arttext li {
    font-size: 19px;
    line-height: 1.6;
    margin-bottom: 8px;
    color: #2a2d35;
}

.gdtl .arttext ol li::marker {
    color: #DB5F52;
    font-weight: 700;
}

.gdtl .arttext table {
    width: 100%;
    border-collapse: collapse;
    margin: 32px 0;
    font-size: 16px;
    line-height: 1.6;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 4px 0 rgba(48, 133, 188, 0.07);
}

.gdtl .arttext th,
.gdtl .arttext td {
    padding: 16px;
    text-align: left;
    border-bottom: 1px solid #E6EBE2;
    color: #2a2d35;
}

.gdtl .arttext th {
    background: #3085BC;
    color: #fff;
    font-size: 16px;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.gdtl .arttext tfoot td {
    background: #E6EBE2;
    font-weight: 700;
    color: #1e2330;
}

.gdtl .arttext tbody tr:nth-child(even) td {
    background: rgba(230, 235, 226, 0.4);
}

.gdtl .arttext details {
    border: 1px solid #E6EBE2;
    border-radius: 8px;
    margin: 0 0 16px;
    overflow: hidden;
}

.gdtl .arttext summary {
    font-size: 19px;
    line-height: 1.6;
    color: #1e2330;
    font-weight: 600;
    padding: 16px;
    cursor: pointer;
    list-style: none;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    transition: background 0.2s ease-out;
}

.gdtl .arttext summary:hover {
    background: rgba(230, 235, 226, 0.6);
}

.gdtl .arttext summary::after {
    content: "";
    width: 10px;
    height: 10px;
    border-right: 2px solid #3085BC;
    border-bottom: 2px solid #3085BC;
    transform: rotate(45deg);
    flex-shrink: 0;
    transition: transform 0.25s ease-out;
}

.gdtl .arttext details[open] summary::after {
    transform: rotate(-135deg);
}

.gdtl .arttext details>*:not(summary) {
    padding: 0 16px 16px;
    font-size: 19px;
    line-height: 1.6;
    color: #2a2d35;
}

.gdtl .keytermhl {
    background: rgba(219, 95, 82, 0.13);
    color: #b84035;
    padding: 2px 8px;
    border-radius: 8px;
    font-weight: 600;
}

.gdtl .sidebox {
    background: #E6EBE2;
    border-radius: 8px;
    padding: 32px;
    box-shadow: 0 5px 25px 0 rgba(48, 133, 188, 0.11);
}

.gdtl .sidebox-h {
    font-size: 16px;
    line-height: 1.3;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #3085BC;
    font-weight: 700;
    margin: 0 0 16px;
}

.gdtl .sidebox-h::after {
    content: "";
    display: inline-block;
    width: 5px;
    height: 5px;
    border-radius: 48px;
    background: #DB5F52;
    margin-left: 6px;
    vertical-align: middle;
    margin-bottom: 2px;
}

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

.gdtl .sidebox-list li {
    font-size: 16px;
    line-height: 1.6;
    color: #2a2d35;
    padding: 8px 0;
    border-bottom: 1px solid rgba(48, 133, 188, 0.12);
}

.gdtl .sidebox-list li:last-child {
    border-bottom: none;
}

.gdtl .sidebox-list li span {
    display: block;
    font-size: 16px;
    color: #DB5F52;
    font-weight: 700;
    letter-spacing: 0.04em;
}

.gdtl .sidecta {
    background: linear-gradient(to bottom, #3085BC, rgba(48, 133, 188, 0.82));
    border-radius: 8px;
    padding: 32px;
    box-shadow: 0 8px 52px 0 rgba(48, 133, 188, 0.14);
}

.gdtl .sidecta-h {
    font-size: 19px;
    line-height: 1.3;
    color: #fff;
    margin: 0 0 16px;
}

.gdtl .sidecta-p {
    font-size: 16px;
    line-height: 1.6;
    color: #E6EBE2;
    margin: 0 0 32px;
}

.gdtl .sidecta-btn {
    display: block;
    width: 100%;
    text-align: center;
    font-size: 16px;
    line-height: 1.3;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: #3085BC;
    background: #fff;
    border: none;
    border-radius: 8px;
    padding: 16px;
    cursor: pointer;
    text-decoration: none;
    position: relative;
    overflow: hidden;
    transition: color 0.22s ease-out;
    box-shadow: 0 2px 4px 0 rgba(48, 133, 188, 0.07);
}

.gdtl .sidecta-btn::before {
    content: "";
    position: absolute;
    inset: 0;
    background: #DB5F52;
    transform: translateY(100%);
    transition: transform 0.28s ease-out;
    z-index: 0;
}

.gdtl .sidecta-btn:hover::before {
    transform: translateY(0);
}

.gdtl .sidecta-btn:hover {
    color: #fff;
}

.gdtl .sidecta-btn span {
    position: relative;
    z-index: 1;
}

.gdtl .sidegloss {
    background: #fff;
    border-radius: 8px;
    padding: 32px;
    box-shadow: 0 5px 25px 0 rgba(219, 95, 82, 0.11);
    inset-shadow: inset 0 2px 4px 0 rgba(219, 95, 82, 0.06);
}

.gdtl .sidegloss-h {
    font-size: 16px;
    line-height: 1.3;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #DB5F52;
    font-weight: 700;
    margin: 0 0 16px;
}

.gdtl .sidegloss-h::after {
    content: "";
    display: inline-block;
    width: 5px;
    height: 5px;
    border-radius: 48px;
    background: #3085BC;
    margin-left: 6px;
    vertical-align: middle;
    margin-bottom: 2px;
}

.gdtl .glossterm {
    display: flex;
    flex-direction: column;
    gap: 4px;
    padding: 16px 0;
    border-bottom: 1px solid #E6EBE2;
}

.gdtl .glossterm:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.gdtl .glossterm dt {
    font-size: 16px;
    line-height: 1.3;
    color: #1e2330;
    font-weight: 700;
    letter-spacing: 0.04em;
}

.gdtl .glossterm dd {
    font-size: 16px;
    line-height: 1.6;
    color: #5a6070;
    margin: 0;
}

.gdtl .bgpan {
    position: absolute;
    inset: 0;
    z-index: 0;
    overflow: hidden;
    border-radius: 0;
}

.gdtl .bgpan-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 130%;
    height: 100%;
    object-fit: cover;
    animation: panBg 40s linear infinite alternate;
    opacity: 0.06;
}

@keyframes panBg {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-23%);
    }
}

@media (max-width: 1024px) {
    .gdtl .titblk {
        padding: 64px 32px 96px;
    }

    .gdtl .titblk-h1 {
        font-size: 48px;
    }

    .gdtl .artbody {
        grid-template-columns: 1fr;
        padding: 64px 32px;
        gap: 64px;
    }

    .gdtl .artcol-side {
        position: static;
    }

    .gdtl .titblk-geo {
        display: none;
    }
}

@media (max-width: 768px) {
    .gdtl .titblk {
        padding: 32px 16px 64px;
    }

    .gdtl .titblk-h1 {
        font-size: 32px;
        margin-bottom: 16px;
    }

    .gdtl .titblk-tag {
        margin-bottom: 16px;
    }

    .gdtl .artbody {
        padding: 32px 16px;
        gap: 32px;
    }

    .gdtl .arttext h2 {
        font-size: 19px;
        margin-top: 32px;
    }

    .gdtl .arttext p::before {
        display: none;
    }

    .gdtl .sidecta,
    .gdtl .sidebox,
    .gdtl .sidegloss {
        padding: 16px;
    }
}

@media (max-width: 360px) {
    .gdtl .titblk-h1 {
        font-size: 24px;
    }

    .gdtl .arttext {
        font-size: 16px;
    }

    .gdtl .arttext li {
        font-size: 16px;
    }
}

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

.evts .pg-wrap {
    max-width: 1500px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 32px;
    padding-right: 32px;
}

.evts .dot-acc {
    display: inline-block;
    width: 7px;
    height: 7px;
    border-radius: 48px;
    background: #DB5F52;
    margin-left: 6px;
    vertical-align: middle;
    position: relative;
    top: -3px;
}

.evts .dot-acc.blue {
    background: #3085BC;
}

.evts .num-acc {
    color: #DB5F52;
    font-size: 19px;
    font-weight: 700;
    margin-right: 8px;
    line-height: 1.3;
}

.evts .dbl-link {
    color: #3085BC;
    text-decoration: none;
    border-bottom: 2px solid #3085BC;
    box-shadow: inset 0 -4px 0 0 rgba(48, 133, 188, 0.18);
    transition: color 0.22s ease-out, box-shadow 0.18s ease-out;
}

.evts .dbl-link:hover {
    color: #DB5F52;
    border-bottom-color: #DB5F52;
    box-shadow: inset 0 -4px 0 0 rgba(219, 95, 82, 0.18);
}

.evts .btn-prim {
    display: inline-block;
    background: #DB5F52;
    color: #fff;
    font-size: 19px;
    font-weight: 700;
    padding: 16px 32px;
    border-radius: 8px;
    border: none;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    transition: color 0.25s ease-out;
    text-decoration: none;
    line-height: 1.3;
    box-shadow: 0 5px 25px 0 rgba(219, 95, 82, 0.11);
}

.evts .btn-prim::before {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 0;
    background: #3085BC;
    border-radius: 8px;
    transition: height 0.28s ease-out;
    z-index: 0;
}

.evts .btn-prim:hover::before {
    height: 100%;
}

.evts .btn-prim span {
    position: relative;
    z-index: 1;
}

.evts .btn-prim:focus {
    outline: 3px solid #3085BC;
    outline-offset: 3px;
}

.evts .btn-sec {
    display: inline-block;
    background: transparent;
    color: #3085BC;
    font-size: 16px;
    font-weight: 600;
    padding: 8px 16px;
    border-radius: 8px;
    border: 2px solid #3085BC;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    transition: color 0.2s ease-out;
    text-decoration: none;
    line-height: 1.3;
}

.evts .btn-sec::before {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 0;
    background: #E6EBE2;
    transition: height 0.22s ease-out;
    z-index: 0;
}

.evts .btn-sec:hover::before {
    height: 100%;
}

.evts .btn-sec span {
    position: relative;
    z-index: 1;
}

.evts .btn-sec:focus {
    outline: 3px solid #DB5F52;
    outline-offset: 3px;
}

/* ===================== SECTION 1 - TITLE BLOCK ===================== */
.evts .titlesec {
    padding-top: 96px;
    padding-bottom: 64px;
    background: #fff;
    position: relative;
}

.evts .titlesec .gridbg {
    position: absolute;
    inset: 0;
    pointer-events: none;
    background-image:
        linear-gradient(rgba(48, 133, 188, 0.05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(48, 133, 188, 0.05) 1px, transparent 1px);
    background-size: 48px 48px;
    z-index: 0;
}

.evts .titlesec .corner-rects {
    position: absolute;
    bottom: 32px;
    right: 32px;
    pointer-events: none;
    z-index: 0;
}

.evts .titlesec .corner-rects span {
    display: block;
    border: 1.5px solid rgba(219, 95, 82, 0.13);
    border-radius: 8px;
    position: absolute;
}

.evts .titlesec .corner-rects span:nth-child(1) {
    width: 48px;
    height: 48px;
    right: 0;
    bottom: 0;
}

.evts .titlesec .corner-rects span:nth-child(2) {
    width: 80px;
    height: 80px;
    right: -16px;
    bottom: -16px;
}

.evts .titlesec .corner-rects span:nth-child(3) {
    width: 112px;
    height: 112px;
    right: -32px;
    bottom: -32px;
}

.evts .titlesec .corner-rects span:nth-child(4) {
    width: 144px;
    height: 144px;
    right: -48px;
    bottom: -48px;
}

.evts .titlesec .trow {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 32px;
    position: relative;
    z-index: 1;
}

.evts .titlesec .timg {
    flex: 0 0 220px;
    width: 220px;
    height: 320px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 8px 52px 0 rgba(219, 95, 82, 0.14);
    position: relative;
}

.evts .titlesec .timg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    filter: brightness(1.05) contrast(1.02);
}

.evts .titlesec .timg-glow {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(255, 255, 255, 0.18) 0%, transparent 60%);
    pointer-events: none;
}

.evts .titlesec .timg-right {
    flex: 0 0 180px;
    width: 180px;
    height: 260px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 25px 0 rgba(48, 133, 188, 0.11);
    background: linear-gradient(to bottom, #3085BC, rgba(48, 133, 188, 0.3));
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 32px 16px;
    position: relative;
}

.evts .titlesec .timg-right .stat-num {
    font-size: 70px;
    font-weight: 900;
    color: #fff;
    line-height: 1.1;
    display: block;
}

.evts .titlesec .timg-right .stat-label {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.6;
    text-align: center;
    margin-top: 8px;
}

.evts .titlesec .tmid {
    flex: 1 1 0;
    min-width: 0;
}

.evts .titlesec .tlabel {
    font-size: 16px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #3085BC;
    font-weight: 600;
    margin-bottom: 16px;
}

.evts .titlesec .th1 {
    font-size: 70px;
    font-weight: 900;
    line-height: 1.1;
    color: #1b2333;
    margin-bottom: 32px;
}

.evts .titlesec .tpoints {
    list-style: none;
    padding: 0;
    margin: 0 0 32px 0;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.evts .titlesec .tpoints li {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    gap: 8px;
    font-size: 19px;
    line-height: 1.6;
    color: #2c3a4f;
}

.evts .titlesec .tpoints li .pnum {
    color: #DB5F52;
    font-weight: 700;
    font-size: 19px;
    flex-shrink: 0;
    line-height: 1.6;
}

/* ===================== SECTION 2 - UPCOMING EVENTS ===================== */
.evts .upcsec {
    padding-top: 96px;
    padding-bottom: 96px;
    background: #E6EBE2;
    margin-left: 64px;
    position: relative;
}

.evts .upcsec .corner-rects2 {
    position: absolute;
    top: 32px;
    left: 0;
    pointer-events: none;
    z-index: 0;
}

.evts .upcsec .corner-rects2 span {
    display: block;
    border: 1.5px solid rgba(48, 133, 188, 0.12);
    border-radius: 8px;
    position: absolute;
}

.evts .upcsec .corner-rects2 span:nth-child(1) {
    width: 40px;
    height: 40px;
    left: 0;
    top: 0;
}

.evts .upcsec .corner-rects2 span:nth-child(2) {
    width: 68px;
    height: 68px;
    left: -14px;
    top: -14px;
}

.evts .upcsec .corner-rects2 span:nth-child(3) {
    width: 96px;
    height: 96px;
    left: -28px;
    top: -28px;
}

.evts .upcsec .divline {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 16px;
    margin-bottom: 64px;
    position: relative;
    z-index: 1;
}

.evts .upcsec .divline::before,
.evts .upcsec .divline::after {
    content: '';
    flex: 1;
    height: 1px;
    background: rgba(48, 133, 188, 0.22);
}

.evts .upcsec .divline-word {
    font-size: 16px;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: #3085BC;
    font-weight: 600;
    white-space: nowrap;
}

.evts .upcsec .sec-head {
    font-size: 24px;
    font-weight: 800;
    color: #1b2333;
    margin-bottom: 8px;
    text-align: center;
    position: relative;
    z-index: 1;
}

.evts .upcsec .sec-sub {
    font-size: 19px;
    color: #3a4a5c;
    line-height: 1.6;
    text-align: center;
    max-width: 640px;
    margin: 0 auto 64px;
    position: relative;
    z-index: 1;
}

.evts .upcsec .evgrid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    position: relative;
    z-index: 1;
}

.evts .upcsec .evcard {
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 25px 0 rgba(48, 133, 188, 0.11);
    display: flex;
    flex-direction: column;
    transition: box-shadow 0.25s ease-out, transform 0.2s ease-out;
}

.evts .upcsec .evcard:hover {
    box-shadow: 0 8px 52px 0 rgba(48, 133, 188, 0.14);
    transform: translateY(-4px);
}

.evts .upcsec .evcard-top {
    background: linear-gradient(to bottom, #3085BC, rgba(48, 133, 188, 0.7));
    padding: 32px 32px 16px;
    position: relative;
}

.evts .upcsec .evcard-top.red {
    background: linear-gradient(to bottom, #DB5F52, rgba(219, 95, 82, 0.7));
}

.evts .upcsec .evdate {
    font-size: 16px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.85);
    font-weight: 600;
    margin-bottom: 8px;
}

.evts .upcsec .evtitle {
    font-size: 19px;
    font-weight: 800;
    color: #fff;
    line-height: 1.3;
}

.evts .upcsec .evcard-body {
    padding: 32px;
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.evts .upcsec .evmeta {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.evts .upcsec .evmeta-row {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 8px;
    font-size: 16px;
    color: #3a4a5c;
    line-height: 1.3;
}

.evts .upcsec .evmeta-icon {
    width: 16px;
    height: 16px;
    flex-shrink: 0;
}

.evts .upcsec .evdesc {
    font-size: 16px;
    color: #4a5568;
    line-height: 1.6;
    flex: 1;
}

.evts .upcsec .evcard-foot {
    padding: 0 32px 32px;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}

.evts .upcsec .evprice {
    font-size: 24px;
    font-weight: 800;
    color: #1b2333;
    line-height: 1.1;
}

.evts .upcsec .evprice-note {
    font-size: 16px;
    color: #3085BC;
    font-weight: 400;
}

/* ===================== SECTION 3 - IMAGE BG ATMOSPHERIC ===================== */
.evts .atmsec {
    padding-top: 96px;
    padding-bottom: 96px;
    position: relative;
    margin-right: 64px;
    overflow: hidden;
}

.evts .atmsec .atmbg {
    position: absolute;
    inset: 0;
    background-image: url('./graphics_directory/P1307.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    z-index: 0;
}

.evts .atmsec .atmoverlay {
    position: absolute;
    inset: 0;
    background: rgba(27, 35, 51, 0.82);
    z-index: 1;
}

.evts .atmsec .atmspot {
    position: absolute;
    width: 320px;
    height: 320px;
    border-radius: 48px;
    background: radial-gradient(circle at 30% 30%, rgba(219, 95, 82, 0.18) 0%, transparent 70%);
    top: -64px;
    right: -64px;
    z-index: 2;
    pointer-events: none;
    animation: spotdrift 9s ease-out infinite alternate;
}

@keyframes spotdrift {
    0% {
        transform: translate(0, 0);
        opacity: 0.7;
    }

    100% {
        transform: translate(-32px, 32px);
        opacity: 1;
    }
}

.evts .atmsec .atmcont {
    position: relative;
    z-index: 3;
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 64px;
}

.evts .atmsec .atmleft {
    flex: 1 1 0;
}

.evts .atmsec .atm-label {
    font-size: 16px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: rgba(230, 235, 226, 0.8);
    font-weight: 600;
    margin-bottom: 16px;
}

.evts .atmsec .atm-h2 {
    font-size: 70px;
    font-weight: 900;
    color: #fff;
    line-height: 1.1;
    margin-bottom: 32px;
}

.evts .atmsec .atm-body {
    font-size: 19px;
    color: rgba(255, 255, 255, 0.82);
    line-height: 1.6;
    margin-bottom: 32px;
}

.evts .atmsec .atmright {
    flex: 0 0 380px;
}

.evts .atmsec .atmstats {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.evts .atmsec .atmstat {
    background: rgba(255, 255, 255, 0.07);
    border-radius: 8px;
    padding: 32px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    box-shadow: inset 0 2px 4px 0 rgba(219, 95, 82, 0.07);
    transition: background 0.3s ease-out;
}

.evts .atmsec .atmstat:hover {
    background: rgba(255, 255, 255, 0.12);
}

.evts .atmsec .atmstat-num {
    font-size: 70px;
    font-weight: 900;
    color: #DB5F52;
    line-height: 1.1;
    display: block;
}

.evts .atmsec .atmstat-label {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.75);
    line-height: 1.6;
    margin-top: 8px;
}

/* ===================== SECTION 4 - FORMAT GUIDE ===================== */
.evts .fmtsec {
    padding-top: 96px;
    padding-bottom: 96px;
    background: #fff;
    margin-left: 32px;
    position: relative;
}

.evts .fmtsec .corner-rects3 {
    position: absolute;
    top: 32px;
    right: 32px;
    pointer-events: none;
    z-index: 0;
}

.evts .fmtsec .corner-rects3 span {
    display: block;
    border: 1.5px solid rgba(219, 95, 82, 0.1);
    border-radius: 8px;
    position: absolute;
}

.evts .fmtsec .corner-rects3 span:nth-child(1) {
    width: 44px;
    height: 44px;
    right: 0;
    top: 0;
}

.evts .fmtsec .corner-rects3 span:nth-child(2) {
    width: 72px;
    height: 72px;
    right: -14px;
    top: -14px;
}

.evts .fmtsec .corner-rects3 span:nth-child(3) {
    width: 100px;
    height: 100px;
    right: -28px;
    top: -28px;
}

.evts .fmtsec .divline2 {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 16px;
    margin-bottom: 64px;
    position: relative;
    z-index: 1;
}

.evts .fmtsec .divline2::before,
.evts .fmtsec .divline2::after {
    content: '';
    flex: 1;
    height: 1px;
    background: rgba(219, 95, 82, 0.2);
}

.evts .fmtsec .divline2-word {
    font-size: 16px;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: #DB5F52;
    font-weight: 600;
    white-space: nowrap;
}

.evts .fmtsec .fmt-head {
    font-size: 24px;
    font-weight: 800;
    color: #1b2333;
    margin-bottom: 8px;
    position: relative;
    z-index: 1;
}

.evts .fmtsec .fmt-sub {
    font-size: 19px;
    color: #3a4a5c;
    line-height: 1.6;
    max-width: 580px;
    margin-bottom: 64px;
    position: relative;
    z-index: 1;
}

.evts .fmtsec .fmtrow {
    display: flex;
    flex-direction: row;
    align-items: stretch;
    gap: 32px;
    position: relative;
    z-index: 1;
}

.evts .fmtsec .fmtleft {
    flex: 1 1 0;
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.evts .fmtsec .fmtitem {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    gap: 16px;
    padding: 32px;
    background: #E6EBE2;
    border-radius: 8px;
    box-shadow: 0 2px 4px 0 rgba(48, 133, 188, 0.07);
    transition: box-shadow 0.2s ease-out;
}

.evts .fmtsec .fmtitem:hover {
    box-shadow: 0 5px 25px 0 rgba(48, 133, 188, 0.11);
}

.evts .fmtsec .fmtnum {
    font-size: 70px;
    font-weight: 900;
    color: rgba(219, 95, 82, 0.13);
    line-height: 1.1;
    flex-shrink: 0;
    width: 64px;
    text-align: center;
}

.evts .fmtsec .fmttext {
    flex: 1;
}

.evts .fmtsec .fmttext h5 {
    font-size: 19px;
    font-weight: 700;
    color: #1b2333;
    margin-bottom: 8px;
    line-height: 1.3;
}

.evts .fmtsec .fmttext p {
    font-size: 16px;
    color: #4a5568;
    line-height: 1.6;
    margin: 0;
}

.evts .fmtsec .fmtright {
    flex: 0 0 340px;
    background: linear-gradient(to bottom, #DB5F52, rgba(219, 95, 82, 0.6));
    border-radius: 8px;
    padding: 32px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    box-shadow: 0 8px 52px 0 rgba(219, 95, 82, 0.14);
    box-shadow: inset 0 2px 4px 0 rgba(255, 255, 255, 0.1), 0 8px 52px 0 rgba(219, 95, 82, 0.14);
}

.evts .fmtsec .fmtright-head {
    font-size: 24px;
    font-weight: 800;
    color: #fff;
    line-height: 1.3;
    margin-bottom: 16px;
}

.evts .fmtsec .fmtright-body {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.6;
    margin-bottom: 32px;
}

.evts .fmtsec .fmtright-list {
    list-style: none;
    padding: 0;
    margin: 0 0 32px 0;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.evts .fmtsec .fmtright-list li {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    gap: 8px;
}

.evts .fmtsec .fmtright-list li .rnum {
    color: #fff;
    font-weight: 700;
    flex-shrink: 0;
}

.evts .fmtsec .btn-white {
    display: inline-block;
    background: #fff;
    color: #DB5F52;
    font-size: 16px;
    font-weight: 700;
    padding: 8px 16px;
    border-radius: 8px;
    border: none;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    transition: color 0.22s ease-out;
    text-decoration: none;
    line-height: 1.3;
    text-align: center;
}

.evts .fmtsec .btn-white::before {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 0;
    background: #E6EBE2;
    transition: height 0.2s ease-out;
    z-index: 0;
}

.evts .fmtsec .btn-white:hover::before {
    height: 100%;
}

.evts .fmtsec .btn-white span {
    position: relative;
    z-index: 1;
}

.evts .fmtsec .btn-white:focus {
    outline: 3px solid #fff;
    outline-offset: 3px;
}

/* ===================== RESPONSIVE ===================== */
@media (max-width: 1024px) {
    .evts .titlesec .th1 {
        font-size: 48px;
    }

    .evts .atmsec .atm-h2 {
        font-size: 48px;
    }

    .evts .titlesec .timg {
        flex: 0 0 160px;
        width: 160px;
        height: 240px;
    }

    .evts .titlesec .timg-right {
        flex: 0 0 140px;
        width: 140px;
        height: 200px;
    }

    .evts .titlesec .timg-right .stat-num {
        font-size: 48px;
    }

    .evts .upcsec {
        margin-left: 32px;
    }

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

    .evts .atmsec {
        margin-right: 32px;
    }

    .evts .atmsec .atmcont {
        flex-direction: column;
        gap: 32px;
    }

    .evts .atmsec .atmright {
        flex: 0 0 auto;
        width: 100%;
    }

    .evts .atmsec .atmstats {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .evts .atmsec .atmstat {
        flex: 1 1 200px;
    }

    .evts .fmtsec {
        margin-left: 16px;
    }

    .evts .fmtsec .fmtrow {
        flex-direction: column;
    }

    .evts .fmtsec .fmtright {
        flex: 0 0 auto;
    }
}

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

    .evts .titlesec {
        padding-top: 64px;
        padding-bottom: 64px;
    }

    .evts .titlesec .trow {
        flex-direction: column;
        align-items: flex-start;
    }

    .evts .titlesec .timg,
    .evts .titlesec .timg-right {
        display: none;
    }

    .evts .titlesec .th1 {
        font-size: 40px;
    }

    .evts .upcsec {
        margin-left: 0;
        padding-top: 64px;
        padding-bottom: 64px;
    }

    .evts .upcsec .evgrid {
        grid-template-columns: 1fr;
    }

    .evts .atmsec {
        margin-right: 0;
        padding-top: 64px;
        padding-bottom: 64px;
    }

    .evts .atmsec .atm-h2 {
        font-size: 40px;
    }

    .evts .fmtsec {
        margin-left: 0;
        padding-top: 64px;
        padding-bottom: 64px;
    }

    .evts .fmtsec .fmtnum {
        display: none;
    }
}

@media (max-width: 360px) {
    .evts .titlesec .th1 {
        font-size: 32px;
    }

    .evts .atmsec .atm-h2 {
        font-size: 32px;
    }

    .evts .btn-prim {
        font-size: 16px;
        padding: 16px 16px;
    }
}

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

.aboutus .au-limit {
    max-width: 1500px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 32px;
    padding-right: 32px;
}

.aboutus .dot-accent {
    display: inline-block;
    width: 7px;
    height: 7px;
    border-radius: 48px;
    background: #DB5F52;
    margin-left: 8px;
    vertical-align: middle;
    position: relative;
    top: -3px;
}

.aboutus .dot-accent.blue {
    background: #3085BC;
}

.aboutus .num-prefix {
    color: #DB5F52;
    font-size: 19px;
    line-height: 1.3;
    font-weight: 700;
    margin-right: 8px;
}

/* ── TITLE BLOCK ── */
.aboutus .titlewrap {
    position: relative;
    background: linear-gradient(to bottom, #3085BC 0%, transparent 100%);
    padding-top: 96px;
    padding-bottom: 96px;
    overflow: hidden;
}

.aboutus .titlewrap .curvebg {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 0;
}

.aboutus .titlewrap .curvebg svg {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
}

.aboutus .titlewrap .au-limit {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: row;
    gap: 64px;
    align-items: flex-end;
}

.aboutus .titlewrap .left-accent {
    flex: 0 0 30%;
    max-width: 30%;
}

.aboutus .titlewrap .right-body {
    flex: 1 1 0;
}

.aboutus .titlewrap .pre-label {
    font-size: 16px;
    line-height: 1.6;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #E6EBE2;
    opacity: 0.85;
    margin-bottom: 16px;
}

.aboutus .titlewrap .pre-desc {
    font-size: 19px;
    line-height: 1.6;
    color: #E6EBE2;
    margin-bottom: 32px;
    opacity: 0.92;
}

.aboutus .titlewrap .main-heading {
    font-size: 70px;
    line-height: 1.1;
    color: #ffffff;
    margin: 0 0 32px;
    font-weight: 800;
    letter-spacing: -0.02em;
}

.aboutus .titlewrap .img-frame {
    border-radius: 8px;
    overflow: hidden;
    position: relative;
    box-shadow: 0 8px 52px 0 rgba(48, 133, 188, 0.14);
}

.aboutus .titlewrap .img-frame img {
    width: 100%;
    height: 360px;
    object-fit: cover;
    display: block;
    transition: transform 0.45s ease-out, filter 0.25s ease-out;
}

.aboutus .titlewrap .img-frame:hover img {
    transform: scale(1.04);
    filter: brightness(1.07);
}

.aboutus .titlewrap .dashed-border {
    border: 2px dashed rgba(230, 235, 226, 0.4);
    border-radius: 8px;
    padding: 32px;
    margin-top: 32px;
}

.aboutus .titlewrap .dashed-border .stat-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
}

.aboutus .titlewrap .stat-item .stat-num {
    font-size: 70px;
    line-height: 1.1;
    color: #ffffff;
    font-weight: 800;
    display: block;
}

.aboutus .titlewrap .stat-item .stat-label {
    font-size: 16px;
    line-height: 1.6;
    color: #E6EBE2;
    opacity: 0.75;
    display: block;
}

/* ── SECTION 2: SPLIT STORY ── */
.aboutus .storysplit {
    background: #ffffff;
    padding-top: 96px;
    padding-bottom: 64px;
}

.aboutus .storysplit .au-limit {
    display: flex;
    flex-direction: row;
    gap: 64px;
    align-items: flex-start;
}

.aboutus .storysplit .left-col {
    flex: 0 0 30%;
    max-width: 30%;
    position: sticky;
    top: 32px;
}

.aboutus .storysplit .left-col .section-num {
    font-size: 70px;
    line-height: 1.1;
    color: #E6EBE2;
    font-weight: 800;
    display: block;
    margin-bottom: 16px;
}

.aboutus .storysplit .left-col h2 {
    font-size: 24px;
    line-height: 1.3;
    color: #1b2a3b;
    margin: 0 0 16px;
    font-weight: 700;
}

.aboutus .storysplit .left-col .side-note {
    font-size: 16px;
    line-height: 1.6;
    color: #4a5568;
}

.aboutus .storysplit .right-col {
    flex: 1 1 0;
}

.aboutus .storysplit .altrow {
    display: flex;
    flex-direction: row;
    gap: 32px;
    align-items: center;
    padding: 32px 0;
    border-top: 1px solid #E6EBE2;
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.35s ease-out, transform 0.4s ease-out;
}

.aboutus .storysplit .altrow.even {
    flex-direction: row-reverse;
}

.aboutus .storysplit .altrow.visible {
    opacity: 1;
    transform: translateY(0);
}

.aboutus .storysplit .altrow .row-img {
    flex: 0 0 220px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 25px 0 rgba(219, 95, 82, 0.11);
}

.aboutus .storysplit .altrow .row-img img {
    width: 220px;
    height: 180px;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease-out, brightness 0.25s ease-out;
}

.aboutus .storysplit .altrow .row-img:hover img {
    transform: scale(1.05);
    filter: brightness(1.06);
}

.aboutus .storysplit .altrow .row-text h4 {
    font-size: 19px;
    line-height: 1.3;
    color: #1b2a3b;
    margin: 0 0 16px;
    font-weight: 700;
}

.aboutus .storysplit .altrow .row-text p {
    font-size: 16px;
    line-height: 1.6;
    color: #4a5568;
    margin: 0;
}

.aboutus .storysplit .altrow .row-text .para-num {
    color: #DB5F52;
    font-weight: 700;
    margin-right: 8px;
}

/* ── SECTION 3: METRICS DARK BG ── */
.aboutus .metricsdark {
    position: relative;
    padding-top: 96px;
    padding-bottom: 96px;
}

.aboutus .metricsdark .bg-img {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.aboutus .metricsdark .bg-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    will-change: transform;
}

.aboutus .metricsdark .dark-overlay {
    position: absolute;
    inset: 0;
    background: rgba(14, 24, 38, 0.91);
    z-index: 1;
}

.aboutus .metricsdark .au-limit {
    position: relative;
    z-index: 2;
}

.aboutus .metricsdark .metrics-header {
    text-align: center;
    margin-bottom: 64px;
}

.aboutus .metricsdark .metrics-header h2 {
    font-size: 70px;
    line-height: 1.1;
    color: #ffffff;
    margin: 0 0 16px;
    font-weight: 800;
}

.aboutus .metricsdark .metrics-header p {
    font-size: 19px;
    line-height: 1.6;
    color: #E6EBE2;
    opacity: 0.8;
    max-width: 560px;
    margin: 0 auto;
}

.aboutus .metricsdark .twobytwo {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
    max-width: 820px;
    margin: 0 auto;
}

.aboutus .metricsdark .metric-card {
    background: rgba(230, 235, 226, 0.07);
    border: 1px solid rgba(230, 235, 226, 0.18);
    border-radius: 8px;
    padding: 32px;
    text-align: center;
    opacity: 0;
    transform: translateY(32px);
    transition: opacity 0.3s ease-out, transform 0.38s ease-out;
    box-shadow: inset 0 2px 8px 0 rgba(48, 133, 188, 0.08);
}

.aboutus .metricsdark .metric-card.visible {
    opacity: 1;
    transform: translateY(0);
}

.aboutus .metricsdark .metric-card:nth-child(2) {
    transition-delay: 0.1s;
}

.aboutus .metricsdark .metric-card:nth-child(3) {
    transition-delay: 0.18s;
}

.aboutus .metricsdark .metric-card:nth-child(4) {
    transition-delay: 0.28s;
}

.aboutus .metricsdark .metric-card .m-val {
    font-size: 70px;
    line-height: 1.1;
    font-weight: 800;
    color: #DB5F52;
    display: block;
}

.aboutus .metricsdark .metric-card .m-label {
    font-size: 16px;
    line-height: 1.6;
    color: #E6EBE2;
    opacity: 0.75;
    display: block;
    margin-top: 8px;
}

/* ── SECTION 4: TEAM / APPROACH ── */
.aboutus .approachgrid {
    background: #E6EBE2;
    padding-top: 64px;
    padding-bottom: 96px;
}

.aboutus .approachgrid .au-limit {
    display: grid;
    grid-template-columns: 1fr;
    gap: 64px;
}

.aboutus .approachgrid .ag-head {
    text-align: center;
}

.aboutus .approachgrid .ag-head h2 {
    font-size: 70px;
    line-height: 1.1;
    color: #1b2a3b;
    margin: 0 0 16px;
    font-weight: 800;
}

.aboutus .approachgrid .ag-head p {
    font-size: 19px;
    line-height: 1.6;
    color: #4a5568;
    max-width: 580px;
    margin: 0 auto;
}

.aboutus .approachgrid .pillars {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.aboutus .approachgrid .pillar-card {
    background: #ffffff;
    border-radius: 8px;
    padding: 32px;
    box-shadow: 0 2px 4px 0 rgba(219, 95, 82, 0.07);
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.4s ease-out, transform 0.45s ease-out, box-shadow 0.2s ease-out;
}

.aboutus .approachgrid .pillar-card.visible {
    opacity: 1;
    transform: translateY(0);
}

.aboutus .approachgrid .pillar-card:nth-child(2) {
    transition-delay: 0.12s;
}

.aboutus .approachgrid .pillar-card:nth-child(3) {
    transition-delay: 0.24s;
}

.aboutus .approachgrid .pillar-card:hover {
    box-shadow: 0 8px 52px 0 rgba(219, 95, 82, 0.14);
}

.aboutus .approachgrid .pillar-card .pnum {
    font-size: 70px;
    line-height: 1.1;
    color: #E6EBE2;
    font-weight: 800;
    display: block;
    margin-bottom: 8px;
}

.aboutus .approachgrid .pillar-card h5 {
    font-size: 19px;
    line-height: 1.3;
    color: #1b2a3b;
    margin: 0 0 16px;
    font-weight: 700;
}

.aboutus .approachgrid .pillar-card p {
    font-size: 16px;
    line-height: 1.6;
    color: #4a5568;
    margin: 0;
}

.aboutus .approachgrid .dashed-featured {
    border: 2px dashed #3085BC;
    border-radius: 8px;
    padding: 32px;
    display: flex;
    flex-direction: row;
    gap: 64px;
    align-items: center;
    background: #ffffff;
}

.aboutus .approachgrid .dashed-featured .feat-text {
    flex: 1 1 0;
}

.aboutus .approachgrid .dashed-featured .feat-text h3 {
    font-size: 24px;
    line-height: 1.3;
    color: #1b2a3b;
    margin: 0 0 16px;
    font-weight: 700;
}

.aboutus .approachgrid .dashed-featured .feat-text p {
    font-size: 16px;
    line-height: 1.6;
    color: #4a5568;
    margin: 0 0 16px;
}

.aboutus .approachgrid .dashed-featured .feat-link {
    font-size: 16px;
    line-height: 1.6;
    color: #3085BC;
    text-decoration: underline;
    text-decoration-style: double;
    text-underline-offset: 4px;
    transition: color 0.2s ease-out;
}

.aboutus .approachgrid .dashed-featured .feat-link:hover {
    color: #DB5F52;
}

.aboutus .approachgrid .dashed-featured .feat-cta {
    flex: 0 0 auto;
}

.aboutus .approachgrid .dashed-featured .feat-cta a {
    display: inline-block;
    font-size: 19px;
    line-height: 1.3;
    font-weight: 700;
    color: #ffffff;
    background: #DB5F52;
    border-radius: 8px;
    padding: 16px 32px;
    text-decoration: none;
    position: relative;
    overflow: hidden;
    box-shadow: 0 5px 25px 0 rgba(219, 95, 82, 0.11);
    transition: color 0.25s ease-out, box-shadow 0.25s ease-out;
}

.aboutus .approachgrid .dashed-featured .feat-cta a::before {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 0;
    background: #3085BC;
    transition: height 0.35s ease-out;
    z-index: 0;
}

.aboutus .approachgrid .dashed-featured .feat-cta a:hover::before {
    height: 100%;
}

.aboutus .approachgrid .dashed-featured .feat-cta a span {
    position: relative;
    z-index: 1;
}

.aboutus .approachgrid .dashed-featured .feat-cta a:hover {
    box-shadow: 0 8px 52px 0 rgba(48, 133, 188, 0.14);
}

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
    .aboutus .titlewrap .main-heading {
        font-size: 70px;
    }

    .aboutus .titlewrap .au-limit {
        flex-direction: column;
        gap: 32px;
    }

    .aboutus .titlewrap .left-accent {
        flex: 0 0 100%;
        max-width: 100%;
    }

    .aboutus .storysplit .au-limit {
        flex-direction: column;
        gap: 32px;
    }

    .aboutus .storysplit .left-col {
        flex: 0 0 100%;
        max-width: 100%;
        position: static;
    }

    .aboutus .approachgrid .pillars {
        grid-template-columns: 1fr 1fr;
    }

    .aboutus .approachgrid .dashed-featured {
        flex-direction: column;
        gap: 32px;
    }
}

@media (max-width: 768px) {
    .aboutus .titlewrap {
        padding-top: 64px;
        padding-bottom: 64px;
    }

    .aboutus .titlewrap .main-heading {
        font-size: 24px;
    }

    .aboutus .titlewrap .stat-item .stat-num {
        font-size: 24px;
    }

    .aboutus .metricsdark .metrics-header h2 {
        font-size: 24px;
    }

    .aboutus .metricsdark .metric-card .m-val {
        font-size: 24px;
    }

    .aboutus .metricsdark .twobytwo {
        grid-template-columns: 1fr;
    }

    .aboutus .approachgrid .ag-head h2 {
        font-size: 24px;
    }

    .aboutus .approachgrid .pillars {
        grid-template-columns: 1fr;
    }

    .aboutus .approachgrid .pillar-card .pnum {
        font-size: 24px;
    }

    .aboutus .storysplit .altrow {
        flex-direction: column;
    }

    .aboutus .storysplit .altrow.even {
        flex-direction: column;
    }

    .aboutus .storysplit .altrow .row-img {
        flex: 0 0 auto;
        width: 100%;
    }

    .aboutus .storysplit .altrow .row-img img {
        width: 100%;
        height: 200px;
    }

    .aboutus .storysplit .left-col .section-num {
        font-size: 24px;
    }
}

@media (max-width: 360px) {
    .aboutus .au-limit {
        padding-left: 16px;
        padding-right: 16px;
    }

    .aboutus .titlewrap .dashed-border .stat-grid {
        grid-template-columns: 1fr;
    }
}

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

.contus .geo-rotate {
    position: fixed;
    top: 10%;
    right: -120px;
    width: 340px;
    height: 340px;
    border: 2px solid rgba(48, 133, 188, 0.08);
    border-radius: 8px;
    animation: geoSpin 28s linear infinite;
    pointer-events: none;
    z-index: 0;
}

.contus .geo-rotate2 {
    position: fixed;
    bottom: 15%;
    left: -80px;
    width: 220px;
    height: 220px;
    border: 2px solid rgba(219, 95, 82, 0.07);
    border-radius: 8px;
    animation: geoSpin 38s linear infinite reverse;
    pointer-events: none;
    z-index: 0;
}

@keyframes geoSpin {
    from {
        transform: rotate(0deg);
    }

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

.contus .pg-editorial {
    position: relative;
    z-index: 1;
    background: #fff;
    padding: 96px 32px 64px;
}

.contus .pg-editorial .editorial-frame {
    max-width: 1500px;
    margin: 0 auto;
    position: relative;
}

.contus .pg-editorial .frame-line-top {
    position: absolute;
    top: -32px;
    left: 0;
    right: 0;
    height: 1px;
    background: repeating-linear-gradient(to right,
            #3085BC 0px,
            #3085BC 8px,
            transparent 8px,
            transparent 16px);
}

.contus .pg-editorial .frame-line-bottom {
    position: absolute;
    bottom: -32px;
    left: 0;
    right: 0;
    height: 1px;
    background: repeating-linear-gradient(to right,
            #DB5F52 0px,
            #DB5F52 8px,
            transparent 8px,
            transparent 16px);
}

.contus .pg-editorial .frame-line-left {
    position: absolute;
    top: -32px;
    bottom: -32px;
    left: -16px;
    width: 1px;
    background: repeating-linear-gradient(to bottom,
            #3085BC 0px,
            #3085BC 8px,
            transparent 8px,
            transparent 16px);
}

.contus .pg-editorial .frame-line-right {
    position: absolute;
    top: -32px;
    bottom: -32px;
    right: -16px;
    width: 1px;
    background: repeating-linear-gradient(to bottom,
            #DB5F52 0px,
            #DB5F52 8px,
            transparent 8px,
            transparent 16px);
}

.contus .pg-editorial .ed-label {
    font-size: 16px;
    letter-spacing: 0.18em;
    color: #3085BC;
    text-transform: uppercase;
    margin-bottom: 16px;
    display: block;
}

.contus .pg-editorial .ed-heading {
    font-size: 70px;
    line-height: 1.1;
    color: #1b2332;
    margin: 0 0 8px;
    max-width: 700px;
    position: relative;
    display: inline-block;
}

.contus .pg-editorial .ed-heading .dot-acc {
    display: inline-block;
    width: 10px;
    height: 10px;
    border-radius: 48px;
    background: #DB5F52;
    margin-left: 8px;
    vertical-align: middle;
    position: relative;
    top: -6px;
}

.contus .pg-editorial .underline-draw {
    display: block;
    width: 0;
    height: 2px;
    background: #DB5F52;
    margin-top: 8px;
    animation: drawLine 0.45s ease-out 0.2s forwards;
}

@keyframes drawLine {
    from {
        width: 0;
    }

    to {
        width: 100%;
    }
}

.contus .pg-editorial .ed-sub {
    font-size: 19px;
    line-height: 1.6;
    color: #3a4455;
    margin: 32px 0 0;
    max-width: 520px;
}

.contus .divider-dashed {
    border: none;
    border-top: 1px dashed #c8d0d8;
    margin: 64px auto;
    max-width: 1500px;
}

.contus .form-zone {
    position: relative;
    z-index: 1;
    background: #E6EBE2;
    clip-path: polygon(0 0, 100% 0, 100% 94%, 0 100%);
    padding: 96px 32px 128px;
}

.contus .form-zone .fz-inner {
    max-width: 1500px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1.4fr;
    gap: 64px;
    align-items: start;
}

.contus .form-zone .fz-aside {
    position: sticky;
    top: 64px;
}

.contus .form-zone .fz-aside .aside-label {
    font-size: 16px;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: #DB5F52;
    display: block;
    margin-bottom: 16px;
}

.contus .form-zone .fz-aside .aside-heading {
    font-size: 24px;
    line-height: 1.3;
    color: #1b2332;
    margin: 0 0 32px;
    position: relative;
    display: inline-block;
}

.contus .form-zone .fz-aside .aside-heading .dot-acc {
    display: inline-block;
    width: 8px;
    height: 8px;
    border-radius: 48px;
    background: #3085BC;
    margin-left: 6px;
    vertical-align: middle;
    position: relative;
    top: -4px;
}

.contus .form-zone .fz-aside .contact-list {
    list-style: none;
    padding: 0;
    margin: 0 0 32px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.contus .form-zone .fz-aside .contact-list li {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.contus .form-zone .fz-aside .contact-list .cl-type {
    font-size: 16px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #6a7585;
}

.contus .form-zone .fz-aside .contact-list .cl-val {
    font-size: 19px;
    line-height: 1.3;
    color: #1b2332;
    text-decoration: none;
    position: relative;
    display: inline-block;
    transition: color 0.25s ease-out;
}

.contus .form-zone .fz-aside .contact-list .cl-val::after {
    content: '';
    display: block;
    position: absolute;
    bottom: -3px;
    left: 0;
    right: 0;
    height: 1px;
    background: #1b2332;
}

.contus .form-zone .fz-aside .contact-list .cl-val::before {
    content: '';
    display: block;
    position: absolute;
    bottom: -6px;
    left: 0;
    right: 0;
    height: 1px;
    background: #1b2332;
}

.contus .form-zone .fz-aside .contact-list .cl-val:hover {
    color: #DB5F52;
}

.contus .form-zone .fz-aside .contact-list .cl-val:hover::after,
.contus .form-zone .fz-aside .contact-list .cl-val:hover::before {
    background: #DB5F52;
}

.contus .form-zone .fz-aside .addr-block {
    padding: 16px;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 4px 0 rgba(219, 95, 82, 0.07);
}

.contus .form-zone .fz-aside .addr-block .addr-label {
    font-size: 16px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #6a7585;
    display: block;
    margin-bottom: 8px;
}

.contus .form-zone .fz-aside .addr-block .addr-text {
    font-size: 19px;
    line-height: 1.6;
    color: #1b2332;
    margin: 0;
}

.contus .form-zone .fz-form {
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 5px 25px 0 rgba(48, 133, 188, 0.11);
    padding: 64px;
}

.contus .form-zone .fz-form .form-heading {
    font-size: 24px;
    line-height: 1.3;
    color: #1b2332;
    margin: 0 0 32px;
}

.contus .form-zone .fz-form .form-heading .dot-acc {
    display: inline-block;
    width: 8px;
    height: 8px;
    border-radius: 48px;
    background: #DB5F52;
    margin-left: 6px;
    vertical-align: middle;
    position: relative;
    top: -4px;
}

.contus .form-zone .fz-form .field-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-bottom: 16px;
}

.contus .form-zone .fz-form .field-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 16px;
}

.contus .form-zone .fz-form .field-label {
    font-size: 16px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #3a4455;
}

.contus .form-zone .fz-form .field-input {
    border: 1px solid #c8d0d8;
    border-radius: 8px;
    padding: 16px;
    font-size: 16px;
    color: #1b2332;
    background: #fff;
    outline: none;
    transition: border-color 0.2s ease-out, box-shadow 0.25s ease-out;
    width: 100%;
    box-sizing: border-box;
}

.contus .form-zone .fz-form .field-input::placeholder {
    text-transform: uppercase;
    font-size: 16px;
    letter-spacing: 0.08em;
    color: #9aa3ae;
}

.contus .form-zone .fz-form .field-input:focus {
    border-color: #3085BC;
    box-shadow: 0 2px 4px 0 rgba(48, 133, 188, 0.07);
}

.contus .form-zone .fz-form .field-select {
    border: 1px solid #c8d0d8;
    border-radius: 8px;
    padding: 16px;
    font-size: 16px;
    color: #1b2332;
    background: #fff;
    outline: none;
    transition: border-color 0.2s ease-out, box-shadow 0.25s ease-out;
    width: 100%;
    box-sizing: border-box;
    appearance: none;
    cursor: pointer;
}

.contus .form-zone .fz-form .field-select:focus {
    border-color: #3085BC;
    box-shadow: 0 2px 4px 0 rgba(48, 133, 188, 0.07);
}

.contus .form-zone .fz-form .select-wrap {
    position: relative;
}

.contus .form-zone .fz-form .select-wrap::after {
    content: '';
    position: absolute;
    right: 16px;
    top: 50%;
    transform: translateY(-50%);
    width: 0;
    height: 0;
    border-left: 5px solid transparent;
    border-right: 5px solid transparent;
    border-top: 6px solid #3a4455;
    pointer-events: none;
}

.contus .form-zone .fz-form .field-textarea {
    border: 1px solid #c8d0d8;
    border-radius: 8px;
    padding: 16px;
    font-size: 16px;
    color: #1b2332;
    background: #fff;
    outline: none;
    transition: border-color 0.2s ease-out, box-shadow 0.25s ease-out;
    width: 100%;
    box-sizing: border-box;
    resize: vertical;
    min-height: 120px;
}

.contus .form-zone .fz-form .field-textarea::placeholder {
    text-transform: uppercase;
    font-size: 16px;
    letter-spacing: 0.08em;
    color: #9aa3ae;
}

.contus .form-zone .fz-form .field-textarea:focus {
    border-color: #3085BC;
    box-shadow: 0 2px 4px 0 rgba(48, 133, 188, 0.07);
}

.contus .form-zone .fz-form .options-group {
    margin-bottom: 16px;
}

.contus .form-zone .fz-form .options-label {
    font-size: 16px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #3a4455;
    display: block;
    margin-bottom: 8px;
}

.contus .form-zone .fz-form .options-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
}

.contus .form-zone .fz-form .opt-item {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 8px;
    padding: 16px;
    border: 1px solid #c8d0d8;
    border-radius: 8px;
    cursor: pointer;
    transition: border-color 0.2s ease-out, background 0.2s ease-out;
}

.contus .form-zone .fz-form .opt-item:hover {
    border-color: #3085BC;
    background: rgba(48, 133, 188, 0.04);
}

.contus .form-zone .fz-form .opt-item input[type="radio"] {
    accent-color: #3085BC;
    width: 18px;
    height: 18px;
    cursor: pointer;
    flex-shrink: 0;
}

.contus .form-zone .fz-form .opt-item input[type="radio"]:checked+.opt-text {
    color: #3085BC;
}

.contus .form-zone .fz-form .opt-item:has(input:checked) {
    border-color: #3085BC;
    background: rgba(48, 133, 188, 0.06);
}

.contus .form-zone .fz-form .opt-text {
    font-size: 16px;
    color: #3a4455;
    line-height: 1.3;
    transition: color 0.2s ease-out;
}

.contus .form-zone .fz-form .privacy-row {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    gap: 16px;
    margin-bottom: 32px;
    padding: 16px;
    background: rgba(230, 235, 226, 0.5);
    border-radius: 8px;
}

.contus .form-zone .fz-form .privacy-row input[type="checkbox"] {
    accent-color: #DB5F52;
    width: 18px;
    height: 18px;
    cursor: pointer;
    flex-shrink: 0;
    margin-top: 2px;
}

.contus .form-zone .fz-form .privacy-text {
    font-size: 16px;
    line-height: 1.6;
    color: #3a4455;
    margin: 0;
}

.contus .form-zone .fz-form .privacy-text .priv-link {
    color: #3085BC;
    text-decoration: none;
    position: relative;
    display: inline;
    transition: color 0.2s ease-out;
}

.contus .form-zone .fz-form .privacy-text .priv-link::after {
    content: '';
    display: block;
    position: absolute;
    bottom: -2px;
    left: 0;
    right: 0;
    height: 1px;
    background: #3085BC;
}

.contus .form-zone .fz-form .privacy-text .priv-link::before {
    content: '';
    display: block;
    position: absolute;
    bottom: -5px;
    left: 0;
    right: 0;
    height: 1px;
    background: rgba(48, 133, 188, 0.4);
}

.contus .form-zone .fz-form .privacy-text .priv-link:hover {
    color: #DB5F52;
}

.contus .form-zone .fz-form .submit-btn {
    display: inline-block;
    padding: 16px 64px;
    font-size: 19px;
    line-height: 1.3;
    color: #fff;
    background: #DB5F52;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    box-shadow: 0 5px 25px 0 rgba(219, 95, 82, 0.11);
    transition: color 0.2s ease-out, box-shadow 0.35s ease-out;
}

.contus .form-zone .fz-form .submit-btn::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 0;
    background: #3085BC;
    transition: height 0.28s ease-out;
    z-index: 0;
}

.contus .form-zone .fz-form .submit-btn:hover::after {
    height: 100%;
}

.contus .form-zone .fz-form .submit-btn:hover {
    box-shadow: 0 8px 52px 0 rgba(48, 133, 188, 0.14);
}

.contus .form-zone .fz-form .submit-btn span {
    position: relative;
    z-index: 1;
}

.contus .form-zone .fz-form .submit-btn:focus {
    outline: 2px solid #3085BC;
    outline-offset: 4px;
}

@media (max-width: 1024px) {
    .contus .pg-editorial .ed-heading {
        font-size: 48px;
    }

    .contus .form-zone .fz-inner {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .contus .form-zone .fz-aside {
        position: static;
    }

    .contus .form-zone .fz-form {
        padding: 32px;
    }
}

@media (max-width: 768px) {
    .contus .pg-editorial {
        padding: 64px 32px 64px;
    }

    .contus .pg-editorial .ed-heading {
        font-size: 40px;
    }

    .contus .form-zone {
        padding: 64px 32px 96px;
        clip-path: none;
    }

    .contus .form-zone .fz-form .field-row {
        grid-template-columns: 1fr;
    }

    .contus .form-zone .fz-form .options-grid {
        grid-template-columns: 1fr;
    }

    .contus .form-zone .fz-form {
        padding: 32px 16px;
    }
}

@media (max-width: 360px) {
    .contus .pg-editorial .ed-heading {
        font-size: 32px;
    }

    .contus .form-zone {
        padding: 64px 16px 96px;
    }

    .contus .form-zone .fz-form .submit-btn {
        width: 100%;
        padding: 16px 32px;
    }
}

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

.lprog .frame-deco {
    position: absolute;
    pointer-events: none;
}

.lprog .titleblock {
    position: relative;
    padding-top: 96px;
    padding-bottom: 64px;
    background: #1b2a3a;
    overflow: hidden;
}

.lprog .titleblock-bg {
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 8% 15%, rgba(48, 133, 188, 0.38) 0%, transparent 62%),
        radial-gradient(ellipse at 92% 85%, rgba(219, 95, 82, 0.18) 0%, transparent 55%);
    pointer-events: none;
}

.lprog .titleblock-img {
    position: absolute;
    inset: 0;
    background-image: url('./graphics_directory/P2388.jpg');
    background-size: cover;
    background-position: center 30%;
    background-attachment: fixed;
    opacity: 0.22;
    mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 1) 0%, rgba(0, 0, 0, 0.6) 60%, rgba(0, 0, 0, 0) 100%);
    -webkit-mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 1) 0%, rgba(0, 0, 0, 0.6) 60%, rgba(0, 0, 0, 0) 100%);
    pointer-events: none;
}

.lprog .titleblock-frame {
    position: absolute;
    top: 24px;
    left: 32px;
    right: 32px;
    bottom: 24px;
    border: 1px solid rgba(48, 133, 188, 0.28);
    border-radius: 8px;
    pointer-events: none;
}

.lprog .titleblock-frame::before {
    content: '';
    position: absolute;
    top: 6px;
    left: 6px;
    right: 6px;
    bottom: 6px;
    border: 1px solid rgba(219, 95, 82, 0.14);
    border-radius: 8px;
}

.lprog .titleblock-strokes {
    position: absolute;
    top: 48px;
    right: 64px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    pointer-events: none;
}

.lprog .titleblock-strokes span {
    display: block;
    height: 2px;
    background: rgba(48, 133, 188, 0.45);
    border-radius: 8px;
}

.lprog .titleblock-inner {
    position: relative;
    max-width: 1500px;
    margin: 0 auto;
    padding: 0 64px;
    clip-path: inset(0 0 0 0);
    animation: wipeIn 0.45s ease-out both;
}

@keyframes wipeIn {
    from {
        clip-path: inset(0 100% 0 0);
    }

    to {
        clip-path: inset(0 0% 0 0);
    }
}

.lprog .titleblock-label {
    display: inline-block;
    font-size: 16px;
    line-height: 1.3;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #3085BC;
    background: rgba(48, 133, 188, 0.12);
    border-radius: 48px;
    padding: 8px 16px;
    margin-bottom: 32px;
}

.lprog .titleblock-h1 {
    font-size: 70px;
    line-height: 1.1;
    color: #ffffff;
    margin: 0 0 32px 0;
    max-width: 820px;
}

.lprog .titleblock-h1 .punct {
    color: #DB5F52;
}

.lprog .titleblock-sub {
    font-size: 19px;
    line-height: 1.6;
    color: rgba(230, 235, 226, 0.82);
    max-width: 560px;
    margin: 0;
}

.lprog .divider-tri {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    padding: 16px 0;
    background: #ffffff;
}

.lprog .divider-tri svg {
    display: block;
}

.lprog .overview {
    background: #ffffff;
    padding: 96px 0 64px;
}

.lprog .overview-inner {
    max-width: 1500px;
    margin: 0 auto;
    padding: 0 64px;
    display: grid;
    grid-template-columns: 1fr 380px;
    gap: 64px;
    align-items: start;
}

.lprog .overview-text {
    text-align: left;
}

.lprog .sec-label {
    display: inline-block;
    font-size: 16px;
    line-height: 1.3;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #DB5F52;
    margin-bottom: 16px;
}

.lprog .overview-text h2 {
    font-size: 70px;
    line-height: 1.1;
    color: #1b2a3a;
    margin: 0 0 32px 0;
}

.lprog .overview-text h2 .dot {
    display: inline-block;
    width: 10px;
    height: 10px;
    background: #DB5F52;
    border-radius: 48px;
    margin-left: 8px;
    vertical-align: middle;
    position: relative;
    top: -6px;
}

.lprog .para-block {
    margin-bottom: 32px;
}

.lprog .para-num {
    font-size: 16px;
    line-height: 1.3;
    color: #DB5F52;
    font-weight: 700;
    letter-spacing: 0.08em;
    display: block;
    margin-bottom: 8px;
}

.lprog .para-text {
    font-size: 19px;
    line-height: 1.6;
    color: #2c3e50;
    margin: 0;
}

.lprog .overview-aside {
    display: flex;
    flex-direction: column;
    gap: 16px;
    position: sticky;
    top: 32px;
}

.lprog .stat-card {
    background: #E6EBE2;
    border-radius: 8px;
    padding: 32px;
    box-shadow: 0 2px 4px 0 rgba(48, 133, 188, 0.07);
    transition: transform 0.25s ease-out, box-shadow 0.35s ease-out;
}

.lprog .stat-card:hover {
    transform: translateY(-4px) perspective(600px) rotateX(2deg);
    box-shadow: 0 8px 52px 0 rgba(48, 133, 188, 0.14);
}

.lprog .stat-num {
    font-size: 70px;
    line-height: 1.1;
    color: #3085BC;
    display: block;
    margin-bottom: 8px;
}

.lprog .stat-desc {
    font-size: 16px;
    line-height: 1.6;
    color: #2c3e50;
    margin: 0;
}

.lprog .divider-tri2 {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    padding: 16px 0;
    background: #E6EBE2;
}

.lprog .modules {
    background: #E6EBE2;
    padding: 64px 0 96px;
}

.lprog .modules-inner {
    max-width: 1500px;
    margin: 0 auto;
    padding: 0 64px;
}

.lprog .modules-head {
    text-align: center;
    margin-bottom: 64px;
}

.lprog .modules-head h2 {
    font-size: 70px;
    line-height: 1.1;
    color: #1b2a3a;
    margin: 0 0 16px 0;
}

.lprog .modules-head h2 .dot {
    display: inline-block;
    width: 10px;
    height: 10px;
    background: #3085BC;
    border-radius: 48px;
    margin-left: 8px;
    vertical-align: middle;
    position: relative;
    top: -6px;
}

.lprog .modules-head p {
    font-size: 19px;
    line-height: 1.6;
    color: #2c3e50;
    max-width: 560px;
    margin: 0 auto;
}

.lprog .modules-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.lprog .mod-card {
    background: #ffffff;
    border-radius: 8px;
    padding: 32px;
    box-shadow: 0 5px 25px 0 rgba(48, 133, 188, 0.11);
    transition: box-shadow 0.28s ease-out, transform 0.22s ease-out;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.lprog .mod-card:hover {
    box-shadow: 0 8px 52px 0 rgba(48, 133, 188, 0.14);
    transform: translateY(-3px);
}

.lprog .mod-num {
    font-size: 24px;
    line-height: 1.3;
    color: #DB5F52;
    font-weight: 700;
}

.lprog .mod-card h3 {
    font-size: 24px;
    line-height: 1.3;
    color: #1b2a3a;
    margin: 0;
}

.lprog .mod-card p {
    font-size: 16px;
    line-height: 1.6;
    color: #2c3e50;
    margin: 0;
    flex: 1;
}

.lprog .mod-tag {
    display: inline-block;
    font-size: 16px;
    line-height: 1.3;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #3085BC;
    background: rgba(48, 133, 188, 0.1);
    border-radius: 48px;
    padding: 8px 16px;
    align-self: flex-start;
}

.lprog .divider-tri3 {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    padding: 16px 0;
    background: #ffffff;
}

.lprog .details {
    background: #ffffff;
    padding: 96px 0;
}

.lprog .details-inner {
    max-width: 1500px;
    margin: 0 auto;
    padding: 0 64px;
    display: grid;
    grid-template-columns: 420px 1fr;
    gap: 64px;
    align-items: start;
}

.lprog .details-img-wrap {
    position: relative;
}

.lprog .details-img {
    width: 100%;
    height: 520px;
    object-fit: cover;
    border-radius: 8px;
    display: block;
    box-shadow: 0 8px 52px 0 rgba(219, 95, 82, 0.14);
    transition: box-shadow 0.38s ease-out, transform 0.3s ease-out;
}

.lprog .details-img-wrap:hover .details-img {
    transform: translateY(-6px) perspective(800px) rotateY(-2deg);
    box-shadow: 0 8px 52px 0 rgba(219, 95, 82, 0.22);
}

.lprog .details-img-accent {
    position: absolute;
    bottom: -16px;
    right: -16px;
    width: 80px;
    height: 80px;
    background: #DB5F52;
    border-radius: 8px;
    opacity: 0.18;
    pointer-events: none;
}

.lprog .details-text {
    text-align: center;
}

.lprog .details-text h2 {
    font-size: 70px;
    line-height: 1.1;
    color: #1b2a3a;
    margin: 0 0 32px 0;
}

.lprog .details-text h2 .dot {
    display: inline-block;
    width: 10px;
    height: 10px;
    background: #DB5F52;
    border-radius: 48px;
    margin-left: 8px;
    vertical-align: middle;
    position: relative;
    top: -6px;
}

.lprog .details-list {
    list-style: none;
    padding: 0;
    margin: 0 0 32px 0;
    display: flex;
    flex-direction: column;
    gap: 16px;
    text-align: left;
}

.lprog .details-list li {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    gap: 16px;
    padding: 16px;
    background: #E6EBE2;
    border-radius: 8px;
}

.lprog .dlist-num {
    font-size: 19px;
    line-height: 1.3;
    color: #DB5F52;
    font-weight: 700;
    flex-shrink: 0;
    width: 32px;
}

.lprog .dlist-body {
    flex: 1;
}

.lprog .dlist-body h5 {
    font-size: 19px;
    line-height: 1.3;
    color: #1b2a3a;
    margin: 0 0 8px 0;
}

.lprog .dlist-body p {
    font-size: 16px;
    line-height: 1.6;
    color: #2c3e50;
    margin: 0;
}

.lprog .cta-row {
    display: flex;
    flex-direction: row;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

.lprog .btn-primary {
    display: inline-block;
    font-size: 19px;
    line-height: 1.3;
    color: #ffffff;
    background: #DB5F52;
    border: none;
    border-radius: 8px;
    padding: 16px 32px;
    cursor: pointer;
    text-decoration: none;
    position: relative;
    overflow: hidden;
    box-shadow: 0 5px 25px 0 rgba(219, 95, 82, 0.11);
    transition: color 0.2s ease-out, box-shadow 0.32s ease-out;
}

.lprog .btn-primary::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 0;
    background: rgba(0, 0, 0, 0.18);
    transition: height 0.22s ease-out;
    border-radius: 8px;
}

.lprog .btn-primary:hover::after {
    height: 100%;
}

.lprog .btn-primary:focus {
    outline: 3px solid #3085BC;
    outline-offset: 3px;
}

.lprog .btn-secondary {
    display: inline-block;
    font-size: 16px;
    line-height: 1.3;
    color: #3085BC;
    background: transparent;
    border: 2px solid #3085BC;
    border-radius: 8px;
    padding: 16px 32px;
    cursor: pointer;
    text-decoration: none;
    position: relative;
    overflow: hidden;
    transition: color 0.18s ease-out, border-color 0.18s ease-out;
}

.lprog .btn-secondary::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 0;
    background: #3085BC;
    transition: height 0.2s ease-out;
    border-radius: 6px;
}

.lprog .btn-secondary:hover {
    color: #ffffff;
}

.lprog .btn-secondary:hover::after {
    height: 100%;
}

.lprog .btn-secondary span {
    position: relative;
    z-index: 1;
}

.lprog .btn-primary span {
    position: relative;
    z-index: 1;
}

.lprog .btn-secondary:focus {
    outline: 3px solid #DB5F52;
    outline-offset: 3px;
}

@media (max-width: 1024px) {
    .lprog .titleblock-inner {
        padding: 0 32px;
    }

    .lprog .titleblock-h1 {
        font-size: 70px;
    }

    .lprog .overview-inner {
        grid-template-columns: 1fr;
        padding: 0 32px;
        gap: 32px;
    }

    .lprog .overview-aside {
        position: static;
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 16px;
    }

    .lprog .modules-inner {
        padding: 0 32px;
    }

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

    .lprog .details-inner {
        grid-template-columns: 1fr;
        padding: 0 32px;
        gap: 32px;
    }

    .lprog .details-img {
        height: 320px;
    }
}

@media (max-width: 768px) {
    .lprog .titleblock {
        padding-top: 64px;
        padding-bottom: 32px;
    }

    .lprog .titleblock-inner {
        padding: 0 16px;
    }

    .lprog .titleblock-h1 {
        font-size: 24px;
        line-height: 1.3;
    }

    .lprog .titleblock-frame {
        top: 16px;
        left: 16px;
        right: 16px;
        bottom: 16px;
    }

    .lprog .titleblock-strokes {
        display: none;
    }

    .lprog .overview {
        padding: 64px 0 32px;
    }

    .lprog .overview-inner {
        padding: 0 16px;
        gap: 32px;
    }

    .lprog .overview-text h2 {
        font-size: 24px;
        line-height: 1.3;
    }

    .lprog .overview-aside {
        grid-template-columns: 1fr;
    }

    .lprog .modules {
        padding: 32px 0 64px;
    }

    .lprog .modules-inner {
        padding: 0 16px;
    }

    .lprog .modules-head h2 {
        font-size: 24px;
        line-height: 1.3;
    }

    .lprog .modules-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .lprog .details {
        padding: 64px 0;
    }

    .lprog .details-inner {
        padding: 0 16px;
    }

    .lprog .details-text h2 {
        font-size: 24px;
        line-height: 1.3;
    }

    .lprog .details-img {
        height: 240px;
    }
}

@media (max-width: 360px) {
    .lprog .titleblock-h1 {
        font-size: 24px;
    }

    .lprog .cta-row {
        flex-direction: column;
    }

    .lprog .btn-primary,
    .lprog .btn-secondary {
        text-align: center;
    }
}

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

.rtpg .pgwrap {
    max-width: 1500px;
    margin: 0 auto;
    padding: 0 32px;
}

.rtpg .pgwrap.narrow {
    max-width: 1100px;
}

/* On-load rotate reveal animation */
@keyframes rotateReveal {
    from {
        opacity: 0;
        transform: rotate(-4deg) translateY(16px);
    }

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

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(24px);
    }

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

/* ========== SECTION 1: TITLE BLOCK ========== */
.rtpg .titlesec {
    position: relative;
    padding: 96px 0 64px;
    background: #f4f2ee;
    display: flex;
    align-items: stretch;
    min-height: 0;
}

.rtpg .titlesec .pgwrap {
    width: 100%;
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 64px;
    position: relative;
    z-index: 1;
}

.rtpg .titlesec .decobg {
    position: absolute;
    inset: 0;
    overflow: hidden;
    pointer-events: none;
}

.rtpg .titlesec .decobg .circle1 {
    position: absolute;
    top: -80px;
    left: -80px;
    width: 360px;
    height: 360px;
    border-radius: 48px;
    background: #DB5F52;
    opacity: 0.05;
}

.rtpg .titlesec .decobg .circle2 {
    position: absolute;
    bottom: -60px;
    left: 200px;
    width: 240px;
    height: 240px;
    border-radius: 48px;
    background: #3085BC;
    opacity: 0.06;
}

.rtpg .titlesec .decobg .circle3 {
    position: absolute;
    top: 40px;
    left: 40%;
    width: 160px;
    height: 160px;
    border-radius: 48px;
    background: #DB5F52;
    opacity: 0.04;
}

.rtpg .titlesec .txtarea {
    flex: 1 1 0;
    min-width: 0;
    animation: rotateReveal 0.45s ease-out both;
}

.rtpg .titlesec .txtarea .bracket {
    display: inline-block;
    font-size: 16px;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: #DB5F52;
    font-weight: 600;
    margin-bottom: 16px;
    animation: fadeUp 0.35s ease-out 0.1s both;
}

.rtpg .titlesec .txtarea .maintitle {
    font-size: 70px;
    line-height: 1.1;
    font-weight: 800;
    color: #1b1b1b;
    margin: 0 0 16px;
    animation: rotateReveal 0.45s ease-out 0.15s both;
}

.rtpg .titlesec .txtarea .maintitle .accentword {
    color: #DB5F52;
}

.rtpg .titlesec .txtarea .subtitle {
    font-size: 24px;
    line-height: 1.3;
    color: #3085BC;
    font-weight: 500;
    margin: 0 0 24px;
    animation: fadeUp 0.4s ease-out 0.22s both;
}

.rtpg .titlesec .txtarea .desc {
    font-size: 19px;
    line-height: 1.6;
    color: #3a3a3a;
    margin: 0 0 32px;
    max-width: 560px;
    animation: fadeUp 0.38s ease-out 0.3s both;
}

.rtpg .titlesec .txtarea .dotaccent {
    display: inline-block;
    width: 8px;
    height: 8px;
    border-radius: 48px;
    background: #DB5F52;
    margin-left: 6px;
    vertical-align: middle;
}

.rtpg .titlesec .txtarea .btnrow {
    display: flex;
    flex-direction: row;
    gap: 16px;
    flex-wrap: wrap;
    animation: fadeUp 0.35s ease-out 0.38s both;
}

.rtpg .titlesec .txtarea .btnprimary {
    position: relative;
    display: inline-block;
    padding: 16px 32px;
    font-size: 19px;
    font-weight: 700;
    color: #fff;
    background: #DB5F52;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    overflow: hidden;
    box-shadow: 0 5px 25px 0 rgba(219, 95, 82, 0.11);
    transition: color 0.25s ease-out, box-shadow 0.2s ease-out;
    text-decoration: none;
}

.rtpg .titlesec .txtarea .btnprimary::before {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 0;
    background: #3085BC;
    transition: height 0.28s ease-out;
    z-index: 0;
}

.rtpg .titlesec .txtarea .btnprimary:hover::before {
    height: 100%;
}

.rtpg .titlesec .txtarea .btnprimary span {
    position: relative;
    z-index: 1;
}

.rtpg .titlesec .txtarea .btnprimary:hover {
    box-shadow: 0 8px 52px 0 rgba(219, 95, 82, 0.14);
}

.rtpg .titlesec .txtarea .btnsec {
    display: inline-block;
    padding: 16px 24px;
    font-size: 16px;
    font-weight: 500;
    color: #3085BC;
    background: transparent;
    border: 2px solid #3085BC;
    border-radius: 8px;
    cursor: pointer;
    text-decoration: none;
    transition: background 0.2s ease-out, color 0.2s ease-out;
}

.rtpg .titlesec .txtarea .btnsec:hover {
    background: #3085BC;
    color: #fff;
}

.rtpg .titlesec .imgstrip {
    flex: 0 0 360px;
    width: 360px;
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 8px 52px 0 rgba(219, 95, 82, 0.14);
    animation: rotateReveal 0.45s ease-out 0.2s both;
}

.rtpg .titlesec .imgstrip img {
    width: 100%;
    height: 520px;
    object-fit: cover;
    display: block;
    transition: transform 0.45s ease-out;
}

.rtpg .titlesec .imgstrip:hover img {
    transform: scale(1.03);
}

.rtpg .titlesec .imgstrip .imgoverlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, #f4f2ee 0%, transparent 55%);
    pointer-events: none;
}

/* ========== SECTION 2: INVESTMENT SIGNAL ========== */
.rtpg .investsec {
    padding: 96px 0;
    background: #fff;
}

.rtpg .investsec .pgwrap {
    display: flex;
    flex-direction: column;
    gap: 64px;
}

.rtpg .investsec .invhead {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    gap: 64px;
}

.rtpg .investsec .invhead .headtxt {
    flex: 1 1 0;
}

.rtpg .investsec .invhead .headtxt h2 {
    font-size: 70px;
    line-height: 1.1;
    font-weight: 800;
    color: #1b1b1b;
    margin: 0 0 16px;
}

.rtpg .investsec .invhead .headtxt h2 .dotacc {
    display: inline-block;
    width: 10px;
    height: 10px;
    border-radius: 48px;
    background: #3085BC;
    margin-left: 6px;
    vertical-align: middle;
}

.rtpg .investsec .invhead .headtxt .leadp {
    font-size: 19px;
    line-height: 1.6;
    color: #3a3a3a;
    max-width: 480px;
}

.rtpg .investsec .invhead .pullquote {
    flex: 0 0 340px;
    background: #E6EBE2;
    border-radius: 8px;
    padding: 32px;
    font-size: 24px;
    line-height: 1.3;
    color: #1b1b1b;
    font-weight: 600;
    box-shadow: 0 2px 4px 0 rgba(48, 133, 188, 0.07);
    position: relative;
}

.rtpg .investsec .invhead .pullquote::after {
    content: "";
    display: block;
    width: 32px;
    height: 4px;
    background: #DB5F52;
    border-radius: 8px;
    margin-top: 16px;
}

.rtpg .investsec .tiers {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.rtpg .investsec .tiercard {
    background: #f4f2ee;
    border-radius: 8px;
    padding: 32px;
    box-shadow: 0 2px 4px 0 rgba(219, 95, 82, 0.07);
    transition: box-shadow 0.25s ease-out, transform 0.2s ease-out;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.rtpg .investsec .tiercard:hover {
    box-shadow: 0 8px 52px 0 rgba(219, 95, 82, 0.14);
    transform: translateY(-4px);
}

.rtpg .investsec .tiercard.featured {
    background: #3085BC;
    color: #fff;
}

.rtpg .investsec .tiercard .tierlabel {
    font-size: 16px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    font-weight: 700;
    color: #DB5F52;
}

.rtpg .investsec .tiercard.featured .tierlabel {
    color: #E6EBE2;
}

.rtpg .investsec .tiercard .tiertype {
    font-size: 24px;
    font-weight: 700;
    color: #1b1b1b;
    line-height: 1.3;
}

.rtpg .investsec .tiercard.featured .tiertype {
    color: #fff;
}

.rtpg .investsec .tiercard .tierdesc {
    font-size: 16px;
    line-height: 1.6;
    color: #5a5a5a;
}

.rtpg .investsec .tiercard.featured .tierdesc {
    color: #d0e4f0;
}

.rtpg .investsec .tiercard .progressbar {
    display: flex;
    flex-direction: row;
    gap: 4px;
    margin-top: 8px;
}

.rtpg .investsec .tiercard .prseg {
    height: 8px;
    flex: 1 1 0;
    border-radius: 8px;
    background: #d5d0c8;
    transition: background 0.35s ease-out;
}

.rtpg .investsec .tiercard .prseg.filled {
    background: #DB5F52;
}

.rtpg .investsec .tiercard.featured .prseg {
    background: rgba(255, 255, 255, 0.25);
}

.rtpg .investsec .tiercard.featured .prseg.filled {
    background: #fff;
}

.rtpg .investsec .tiercard .progrlabel {
    font-size: 16px;
    color: #888;
    line-height: 1.6;
}

.rtpg .investsec .tiercard.featured .progrlabel {
    color: #b8d4e8;
}

/* ========== SECTION 3: SUPPORT ========== */
.rtpg .suppsec {
    padding: 96px 0;
    background: #2a4a6b;
    position: relative;
}

.rtpg .suppsec .pgwrap {
    position: relative;
    z-index: 1;
}

.rtpg .suppsec .suppgrid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
}

.rtpg .suppsec .suppimg {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
}

.rtpg .suppsec .suppimg img {
    width: 100%;
    height: 480px;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease-out;
}

.rtpg .suppsec .suppimg:hover img {
    transform: scale(1.04);
}

.rtpg .suppsec .suppimg .imgborder {
    position: absolute;
    inset: 0;
    border: 0px solid rgba(219, 95, 82, 0.7);
    border-radius: 8px;
    transition: border-width 0.22s ease-out, border-color 0.22s ease-out;
    pointer-events: none;
}

.rtpg .suppsec .suppimg:hover .imgborder {
    border-width: 4px;
}

.rtpg .suppsec .supptxt {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.rtpg .suppsec .supptxt h2 {
    font-size: 70px;
    line-height: 1.1;
    font-weight: 800;
    color: #fff;
    margin: 0;
}

.rtpg .suppsec .supptxt h2 .dotacc {
    display: inline-block;
    width: 10px;
    height: 10px;
    border-radius: 48px;
    background: #DB5F52;
    margin-left: 6px;
    vertical-align: middle;
}

.rtpg .suppsec .supptxt .suppbody {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.rtpg .suppsec .supptxt .suppbody .spara {
    font-size: 19px;
    line-height: 1.6;
    color: #c5d8e8;
}

.rtpg .suppsec .supptxt .suppbody .spara .numprefix {
    color: #DB5F52;
    font-weight: 700;
    margin-right: 8px;
}

.rtpg .suppsec .suppitems {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.rtpg .suppsec .suppitem {
    background: rgba(255, 255, 255, 0.07);
    border-radius: 8px;
    padding: 16px 32px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    transition: background 0.2s ease-out;
}

.rtpg .suppsec .suppitem:hover {
    background: rgba(255, 255, 255, 0.13);
}

.rtpg .suppsec .suppitem .sihead {
    font-size: 16px;
    font-weight: 700;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.rtpg .suppsec .suppitem .sibody {
    font-size: 16px;
    line-height: 1.6;
    color: #a8c4d8;
}

/* ========== SECTION 4: LONG-TERM VALUE ========== */
.rtpg .valuesec {
    padding: 96px 0;
    background: #E6EBE2;
}

.rtpg .valuesec .pgwrap {
    display: flex;
    flex-direction: column;
    gap: 64px;
}

.rtpg .valuesec .valhead {
    text-align: center;
}

.rtpg .valuesec .valhead h2 {
    font-size: 70px;
    line-height: 1.1;
    font-weight: 800;
    color: #1b1b1b;
    margin: 0 0 16px;
}

.rtpg .valuesec .valhead h2 .dotacc {
    display: inline-block;
    width: 10px;
    height: 10px;
    border-radius: 48px;
    background: #DB5F52;
    margin-left: 6px;
    vertical-align: middle;
}

.rtpg .valuesec .valhead .valead {
    font-size: 19px;
    line-height: 1.6;
    color: #4a4a4a;
    max-width: 640px;
    margin: 0 auto;
}

.rtpg .valuesec .valgrid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
}

.rtpg .valuesec .valgrid .valrow {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
    grid-column: 1 / -1;
}

.rtpg .valuesec .valgrid .valrow.single {
    grid-template-columns: 1fr;
    grid-column: 1 / -1;
}

.rtpg .valuesec .valcard {
    background: #fff;
    border-radius: 8px;
    padding: 32px;
    box-shadow: 0 2px 4px 0 rgba(48, 133, 188, 0.07);
    display: flex;
    flex-direction: column;
    gap: 16px;
    transition: box-shadow 0.3s ease-out, transform 0.22s ease-out;
    position: relative;
}

.rtpg .valuesec .valcard:hover {
    box-shadow: 0 8px 52px 0 rgba(48, 133, 188, 0.14);
    transform: translateY(-3px);
}

.rtpg .valuesec .valcard.wide {
    grid-column: 1 / -1;
    flex-direction: row;
    align-items: center;
    gap: 64px;
}

.rtpg .valuesec .valcard .vcnum {
    font-size: 70px;
    line-height: 1.1;
    font-weight: 800;
    color: #DB5F52;
    opacity: 0.18;
    position: absolute;
    top: 16px;
    right: 24px;
}

.rtpg .valuesec .valcard h4 {
    font-size: 24px;
    line-height: 1.3;
    font-weight: 700;
    color: #1b1b1b;
    margin: 0;
}

.rtpg .valuesec .valcard .vcdesc {
    font-size: 16px;
    line-height: 1.6;
    color: #5a5a5a;
}

.rtpg .valuesec .valcard .vcdesc .numprefix {
    color: #DB5F52;
    font-weight: 700;
    margin-right: 6px;
}

.rtpg .valuesec .valcard .vcimg {
    flex: 0 0 320px;
    width: 320px;
    height: 220px;
    border-radius: 8px;
    overflow: hidden;
    position: relative;
}

.rtpg .valuesec .valcard .vcimg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease-out;
}

.rtpg .valuesec .valcard .vcimg .imgborder {
    position: absolute;
    inset: 0;
    border: 0px solid rgba(48, 133, 188, 0.7);
    border-radius: 8px;
    transition: border-width 0.25s ease-out;
    pointer-events: none;
}

.rtpg .valuesec .valcard:hover .vcimg .imgborder {
    border-width: 4px;
}

.rtpg .valuesec .valcard .vctxt {
    flex: 1 1 0;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.rtpg .valuesec .valcard .wordgroup {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 8px;
}

.rtpg .valuesec .valcard .wordtag {
    padding: 8px 16px;
    background: #E6EBE2;
    border-radius: 48px;
    font-size: 16px;
    color: #3085BC;
    font-weight: 600;
    cursor: default;
    transition: background 0.2s ease-out, color 0.18s ease-out;
}

.rtpg .valuesec .valcard .wordtag:hover {
    background: #3085BC;
    color: #fff;
}

/* ========== RESPONSIVE ========== */
@media (max-width: 1024px) {
    .rtpg .titlesec .pgwrap {
        gap: 32px;
    }

    .rtpg .titlesec .txtarea .maintitle {
        font-size: 48px;
    }

    .rtpg .titlesec .imgstrip {
        flex: 0 0 280px;
        width: 280px;
    }

    .rtpg .titlesec .imgstrip img {
        height: 400px;
    }

    .rtpg .investsec .invhead {
        flex-direction: column;
        gap: 32px;
    }

    .rtpg .investsec .invhead .pullquote {
        flex: 0 0 auto;
        width: 100%;
    }

    .rtpg .investsec .tiers {
        grid-template-columns: 1fr;
    }

    .rtpg .suppsec .suppgrid {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .rtpg .suppsec .suppimg img {
        height: 300px;
    }

    .rtpg .suppsec .supptxt h2 {
        font-size: 48px;
    }

    .rtpg .valuesec .valgrid .valrow {
        grid-template-columns: 1fr;
    }

    .rtpg .valuesec .valcard.wide {
        flex-direction: column;
        gap: 32px;
    }

    .rtpg .valuesec .valcard .vcimg {
        flex: 0 0 auto;
        width: 100%;
        height: 220px;
    }

    .rtpg .investsec .invhead .headtxt h2 {
        font-size: 48px;
    }

    .rtpg .valuesec .valhead h2 {
        font-size: 48px;
    }
}

@media (max-width: 768px) {
    .rtpg .pgwrap {
        padding: 0 16px;
    }

    .rtpg .titlesec {
        padding: 64px 0 32px;
    }

    .rtpg .titlesec .pgwrap {
        flex-direction: column;
        gap: 32px;
    }

    .rtpg .titlesec .imgstrip {
        flex: 0 0 auto;
        width: 100%;
    }

    .rtpg .titlesec .imgstrip img {
        height: 280px;
    }

    .rtpg .titlesec .txtarea .maintitle {
        font-size: 40px;
    }

    .rtpg .investsec {
        padding: 64px 0;
    }

    .rtpg .suppsec {
        padding: 64px 0;
    }

    .rtpg .valuesec {
        padding: 64px 0;
    }

    .rtpg .suppsec .supptxt h2 {
        font-size: 36px;
    }

    .rtpg .valuesec .valhead h2 {
        font-size: 36px;
    }

    .rtpg .investsec .invhead .headtxt h2 {
        font-size: 36px;
    }
}

@media (max-width: 360px) {
    .rtpg .titlesec .txtarea .maintitle {
        font-size: 32px;
    }

    .rtpg .titlesec .txtarea .subtitle {
        font-size: 19px;
    }

    .rtpg .titlesec .txtarea .btnrow {
        flex-direction: column;
    }

    .rtpg .investsec .invhead .headtxt h2 {
        font-size: 28px;
    }

    .rtpg .suppsec .supptxt h2 {
        font-size: 28px;
    }

    .rtpg .valuesec .valhead h2 {
        font-size: 28px;
    }
}

.gdpage {
    max-width: 1500px;
    margin: 0 auto;
    overflow-x: clip;
}

.gdpage .reveal-mask {
    animation: revealClip 0.45s ease-out both;
}

@keyframes revealClip {
    from {
        clip-path: inset(0 50% 0 50%);
    }

    to {
        clip-path: inset(0 0% 0 0%);
    }
}

.gdpage .pgbanner {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 64px;
    padding: 96px 64px;
    background: #2a1a18;
    position: relative;
}

.gdpage .pgbanner::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: repeating-linear-gradient(45deg,
            transparent,
            transparent 18px,
            rgba(219, 95, 82, 0.06) 18px,
            rgba(219, 95, 82, 0.06) 20px);
    pointer-events: none;
}

.gdpage .pgbanner .imgcol {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 8px 52px 0 rgba(219, 95, 82, 0.14);
}

.gdpage .pgbanner .imgcol img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    mix-blend-mode: luminosity;
    opacity: 0.82;
}

.gdpage .pgbanner .imgcol::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(219, 95, 82, 0.18), transparent);
    pointer-events: none;
}

.gdpage .pgbanner .imgdeco {
    position: absolute;
    top: -16px;
    left: -16px;
    width: 80px;
    height: 80px;
    border: 2px solid rgba(219, 95, 82, 0.35);
    border-radius: 8px;
    pointer-events: none;
}

.gdpage .pgbanner .textcol {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 32px;
}

.gdpage .pgbanner .pgsuper {
    font-size: 16px;
    line-height: 1.3;
    letter-spacing: 0.12em;
    color: rgba(219, 95, 82, 0.9);
    text-transform: uppercase;
}

.gdpage .pgbanner .pgtitle {
    font-size: 70px;
    line-height: 1.1;
    color: #fff;
    margin: 0;
}

.gdpage .pgbanner .pgtitle .dotacc {
    display: inline-block;
    width: 10px;
    height: 10px;
    background: #DB5F52;
    border-radius: 48px;
    margin-left: 8px;
    vertical-align: middle;
    position: relative;
    top: -6px;
}

.gdpage .pgbanner .pgdesc {
    font-size: 19px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.72);
    max-width: 560px;
    margin: 0;
}

.gdpage .pgbanner .pgstat {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    max-width: 400px;
}

.gdpage .pgbanner .statitem {
    background: rgba(255, 255, 255, 0.06);
    border-radius: 8px;
    padding: 16px;
    border-top: 2px solid rgba(219, 95, 82, 0.4);
}

.gdpage .pgbanner .statnum {
    font-size: 24px;
    line-height: 1.1;
    color: #DB5F52;
    display: block;
}

.gdpage .pgbanner .statlbl {
    font-size: 16px;
    line-height: 1.3;
    color: rgba(255, 255, 255, 0.55);
}

.gdpage .cardgrid {
    padding: 96px 64px;
    background: #fff;
}

.gdpage .cardgrid .gridlabel {
    font-size: 16px;
    line-height: 1.3;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #3085BC;
    margin-bottom: 32px;
    display: block;
}

.gdpage .cardgrid .gridtitle {
    font-size: 24px;
    line-height: 1.3;
    color: #1e1e1e;
    margin: 0 0 64px;
}

.gdpage .cardgrid .gridtitle .dotacc {
    display: inline-block;
    width: 8px;
    height: 8px;
    background: #3085BC;
    border-radius: 48px;
    margin-left: 6px;
    vertical-align: middle;
    position: relative;
    top: -3px;
}

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

.gdpage .cards .postcard {
    border-radius: 8px;
    background: #fff;
    box-shadow: 0 2px 4px 0 rgba(219, 95, 82, 0.07), 0 5px 25px 0 rgba(219, 95, 82, 0.11);
    display: flex;
    flex-direction: column;
    overflow: hidden;
    transition: box-shadow 0.25s ease-out, transform 0.2s ease-out;
}

.gdpage .cards .postcard:hover {
    box-shadow: 0 8px 52px 0 rgba(219, 95, 82, 0.14);
    transform: translateY(-4px);
}

.gdpage .cards .postcard .cardimg {
    width: 100%;
    height: 200px;
    overflow: hidden;
    position: relative;
}

.gdpage .cards .postcard .cardimg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease-out;
}

.gdpage .cards .postcard:hover .cardimg img {
    transform: scale(1.04);
}

.gdpage .cards .postcard .cardbody {
    padding: 32px;
    display: flex;
    flex-direction: column;
    gap: 16px;
    flex: 1;
}

.gdpage .cards .postcard .cardsub {
    font-size: 16px;
    line-height: 1.3;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #DB5F52;
}

.gdpage .cards .postcard .cardtitle {
    font-size: 19px;
    line-height: 1.3;
    color: #1e1e1e;
    margin: 0;
}

.gdpage .cards .postcard .carddesc {
    font-size: 16px;
    line-height: 1.6;
    color: #444;
    margin: 0;
    flex: 1;
}

.gdpage .cards .postcard .cardlink {
    display: inline-block;
    font-size: 16px;
    line-height: 1.3;
    color: #3085BC;
    text-decoration: underline;
    text-decoration-style: double;
    text-underline-offset: 4px;
    transition: color 0.2s ease-out;
    align-self: flex-start;
}

.gdpage .cards .postcard .cardlink:hover {
    color: #DB5F52;
}

.gdpage .cards .postcard.featured {
    grid-column: span 2;
    flex-direction: row;
}

.gdpage .cards .postcard.featured .cardimg {
    width: 45%;
    height: auto;
    flex-shrink: 0;
}

.gdpage .cards .postcard.featured .cardbody {
    padding: 64px 32px;
}

.gdpage .cards .postcard.featured .cardtitle {
    font-size: 24px;
    line-height: 1.3;
}

.gdpage .infostrip {
    padding: 64px;
    background: #E6EBE2;
    position: relative;
}

.gdpage .infostrip::before,
.gdpage .infostrip::after {
    content: '';
    position: absolute;
    left: 64px;
    right: 64px;
    height: 1px;
    background: rgba(48, 133, 188, 0.2);
}

.gdpage .infostrip::before {
    top: 0;
}

.gdpage .infostrip::after {
    bottom: 0;
}

.gdpage .infostrip .stripinner {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 64px;
    max-width: 1500px;
}

.gdpage .infostrip .striptxt {
    flex: 1;
}

.gdpage .infostrip .striphead {
    font-size: 24px;
    line-height: 1.3;
    color: #1e1e1e;
    margin: 0 0 16px;
    text-align: center;
}

.gdpage .infostrip .striphead .dotacc {
    display: inline-block;
    width: 8px;
    height: 8px;
    background: #DB5F52;
    border-radius: 48px;
    margin-left: 6px;
    vertical-align: middle;
    position: relative;
    top: -3px;
}

.gdpage .infostrip .stripdesc {
    font-size: 16px;
    line-height: 1.6;
    color: #444;
    margin: 0;
    text-align: center;
}

.gdpage .infostrip .metrics {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    flex-shrink: 0;
    width: 340px;
}

.gdpage .infostrip .mitem {
    background: #fff;
    border-radius: 8px;
    padding: 16px;
    box-shadow: 0 2px 4px 0 rgba(48, 133, 188, 0.07);
    position: relative;
}

.gdpage .infostrip .mitem::before {
    content: '';
    position: absolute;
    left: 0;
    top: 16px;
    bottom: 16px;
    width: 3px;
    background: #DB5F52;
    border-radius: 48px;
}

.gdpage .infostrip .mval {
    font-size: 24px;
    line-height: 1.1;
    color: #3085BC;
    display: block;
    padding-left: 8px;
}

.gdpage .infostrip .mlbl {
    font-size: 16px;
    line-height: 1.3;
    color: #555;
    padding-left: 8px;
}

.gdpage .methodsec {
    padding: 96px 64px;
    background: #fff;
    position: relative;
}

.gdpage .methodsec .mframe {
    position: absolute;
    top: 32px;
    left: 32px;
    right: 32px;
    bottom: 32px;
    border: 1px solid rgba(219, 95, 82, 0.12);
    border-radius: 8px;
    pointer-events: none;
}

.gdpage .methodsec .mframe::before {
    content: '';
    position: absolute;
    top: 8px;
    left: 8px;
    right: 8px;
    bottom: 8px;
    border: 1px solid rgba(219, 95, 82, 0.06);
    border-radius: 8px;
}

.gdpage .methodsec .sechead {
    text-align: center;
    margin-bottom: 64px;
}

.gdpage .methodsec .sechead .seclbl {
    font-size: 16px;
    line-height: 1.3;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #DB5F52;
    display: block;
    margin-bottom: 16px;
}

.gdpage .methodsec .sechead h2 {
    font-size: 24px;
    line-height: 1.3;
    color: #1e1e1e;
    margin: 0;
}

.gdpage .methodsec .sechead h2 .dotacc {
    display: inline-block;
    width: 8px;
    height: 8px;
    background: #DB5F52;
    border-radius: 48px;
    margin-left: 6px;
    vertical-align: middle;
    position: relative;
    top: -3px;
}

.gdpage .methodsec .methodlist {
    display: flex;
    flex-direction: column;
    gap: 32px;
    max-width: 860px;
    margin: 0 auto;
}

.gdpage .methodsec .mrow {
    display: flex;
    flex-direction: row;
    gap: 32px;
    align-items: flex-start;
    padding: 32px;
    border-radius: 8px;
    background: #E6EBE2;
    transition: background 0.35s ease-out;
}

.gdpage .methodsec .mrow:hover {
    background: #dde4d7;
}

.gdpage .methodsec .mnum {
    font-size: 24px;
    line-height: 1.1;
    color: #DB5F52;
    font-weight: 700;
    flex-shrink: 0;
    width: 40px;
}

.gdpage .methodsec .mtxt h4 {
    font-size: 19px;
    line-height: 1.3;
    color: #1e1e1e;
    margin: 0 0 8px;
}

.gdpage .methodsec .mtxt p {
    font-size: 16px;
    line-height: 1.6;
    color: #444;
    margin: 0;
}

.gdpage .ctaband {
    padding: 96px 64px;
    background: linear-gradient(to bottom, #DB5F52, rgba(219, 95, 82, 0));
    background-color: #2a1a18;
    text-align: center;
    position: relative;
}

.gdpage .ctaband .bandinner {
    max-width: 640px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 32px;
    align-items: center;
}

.gdpage .ctaband h3 {
    font-size: 24px;
    line-height: 1.3;
    color: #fff;
    margin: 0;
}

.gdpage .ctaband h3 .dotacc {
    display: inline-block;
    width: 8px;
    height: 8px;
    background: #E6EBE2;
    border-radius: 48px;
    margin-left: 6px;
    vertical-align: middle;
    position: relative;
    top: -3px;
}

.gdpage .ctaband .banddesc {
    font-size: 16px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.72);
    margin: 0;
}

.gdpage .ctaband .bandbtn {
    display: inline-block;
    font-size: 19px;
    line-height: 1.3;
    color: #fff;
    background: transparent;
    border: 2px solid rgba(255, 255, 255, 0.5);
    border-radius: 8px;
    padding: 16px 64px;
    text-decoration: none;
    position: relative;
    overflow: hidden;
    transition: color 0.25s ease-out, border-color 0.25s ease-out;
    cursor: pointer;
}

.gdpage .ctaband .bandbtn::before {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 0;
    background: #fff;
    transition: height 0.35s ease-out;
    z-index: 0;
}

.gdpage .ctaband .bandbtn:hover::before {
    height: 100%;
}

.gdpage .ctaband .bandbtn:hover {
    color: #DB5F52;
    border-color: #fff;
}

.gdpage .ctaband .bandbtn span {
    position: relative;
    z-index: 1;
}

@media (max-width: 1024px) {
    .gdpage .pgbanner {
        grid-template-columns: 1fr;
        padding: 64px 32px;
        gap: 32px;
    }

    .gdpage .pgbanner .imgcol {
        height: 280px;
    }

    .gdpage .pgbanner .pgtitle {
        font-size: 24px;
    }

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

    .gdpage .cards .postcard.featured {
        grid-column: span 2;
        flex-direction: column;
    }

    .gdpage .cards .postcard.featured .cardimg {
        width: 100%;
        height: 220px;
    }

    .gdpage .cardgrid {
        padding: 64px 32px;
    }

    .gdpage .infostrip {
        padding: 64px 32px;
    }

    .gdpage .infostrip .stripinner {
        flex-direction: column;
        gap: 32px;
    }

    .gdpage .infostrip .metrics {
        width: 100%;
    }

    .gdpage .methodsec {
        padding: 64px 32px;
    }

    .gdpage .ctaband {
        padding: 64px 32px;
    }
}

@media (max-width: 768px) {
    .gdpage .pgbanner {
        padding: 64px 16px;
    }

    .gdpage .pgbanner .pgstat {
        max-width: 100%;
    }

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

    .gdpage .cards .postcard.featured {
        grid-column: span 1;
    }

    .gdpage .cardgrid {
        padding: 64px 16px;
    }

    .gdpage .infostrip {
        padding: 64px 16px;
    }

    .gdpage .infostrip::before,
    .gdpage .infostrip::after {
        left: 16px;
        right: 16px;
    }

    .gdpage .methodsec {
        padding: 64px 16px;
    }

    .gdpage .methodsec .mframe {
        display: none;
    }

    .gdpage .ctaband {
        padding: 64px 16px;
    }
}

@media (max-width: 360px) {
    .gdpage .pgbanner .pgtitle {
        font-size: 19px;
    }

    .gdpage .pgbanner .pgstat {
        grid-template-columns: 1fr;
    }

    .gdpage .infostrip .metrics {
        grid-template-columns: 1fr;
    }

    .gdpage .ctaband .bandbtn {
        padding: 16px 32px;
    }
}

.successPage {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 96px 32px;
    background-color: #f4f6f3;
}

.successPage .successWrapper {
    max-width: 640px;
    width: 100%;
    background: #ffffff;
    border-radius: 8px;
    box-shadow: 0 8px 52px 0 rgba(219, 95, 82, 0.14);
    padding: 64px;
    text-align: center;
}

.successPage .successIcon {
    width: 72px;
    height: 72px;
    margin: 0 auto 32px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.successPage .successIcon svg {
    width: 72px;
    height: 72px;
    display: block;
}

.successPage .successHeading {
    font-size: 24px;
    line-height: 1.3;
    color: #1b2a1e;
    margin: 0 0 16px;
    letter-spacing: -0.01em;
}

.successPage .successText {
    font-size: 16px;
    line-height: 1.6;
    color: #3d4f42;
    margin: 0 0 32px;
}

.successPage .successDivider {
    width: 48px;
    height: 2px;
    background: #DB5F52;
    margin: 0 auto 32px;
    border-radius: 8px;
}

.successPage .successMeta {
    font-size: 16px;
    line-height: 1.6;
    color: #5a6b5e;
    margin: 0 0 32px;
}

.successPage .successMeta a {
    color: #3085BC;
    text-decoration: underline;
    text-decoration-style: double;
    transition: color 0.2s ease-out;
}

.successPage .successMeta a:hover {
    color: #DB5F52;
}

.successPage .successActions {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}

.successPage .btnPrimary {
    display: inline-block;
    font-size: 16px;
    line-height: 1.3;
    font-weight: 600;
    color: #ffffff;
    background-color: #DB5F52;
    border: none;
    border-radius: 8px;
    padding: 16px 32px;
    cursor: pointer;
    text-decoration: none;
    position: relative;
    overflow: hidden;
    transition: color 0.25s ease-out, box-shadow 0.2s ease-out;
    box-shadow: 0 2px 4px 0 rgba(219, 95, 82, 0.07);
}

.successPage .btnPrimary::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 0;
    background-color: rgba(0, 0, 0, 0.12);
    transition: height 0.22s ease-out;
    border-radius: 8px;
}

.successPage .btnPrimary:hover {
    box-shadow: 0 5px 25px 0 rgba(219, 95, 82, 0.11);
}

.successPage .btnPrimary:hover::after {
    height: 100%;
}

.successPage .btnPrimary:focus {
    outline: 3px solid #3085BC;
    outline-offset: 3px;
}

.successPage .btnSecondary {
    display: inline-block;
    font-size: 16px;
    line-height: 1.3;
    color: #3085BC;
    background-color: transparent;
    border: 1.5px solid #3085BC;
    border-radius: 8px;
    padding: 12px 24px;
    cursor: pointer;
    text-decoration: none;
    position: relative;
    overflow: hidden;
    transition: color 0.35s ease-out, border-color 0.35s ease-out, box-shadow 0.28s ease-out;
}

.successPage .btnSecondary::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 0;
    background-color: #3085BC;
    transition: height 0.3s ease-out;
    border-radius: 6px;
    z-index: 0;
}

.successPage .btnSecondary span {
    position: relative;
    z-index: 1;
}

.successPage .btnSecondary:hover {
    color: #ffffff;
    box-shadow: 0 5px 25px 0 rgba(48, 133, 188, 0.11);
}

.successPage .btnSecondary:hover::after {
    height: 100%;
}

.successPage .btnSecondary:focus {
    outline: 3px solid #DB5F52;
    outline-offset: 3px;
}

.successPage .successBrand {
    margin-top: 64px;
    font-size: 16px;
    line-height: 1.6;
    color: #8a9b8e;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

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

    .successPage .successWrapper {
        padding: 32px 16px;
    }

    .successPage .successActions {
        flex-direction: column;
        gap: 16px;
    }

    .successPage .btnPrimary,
    .successPage .btnSecondary {
        width: 100%;
        text-align: center;
    }
}

@media (max-width: 360px) {
    .successPage .successHeading {
        font-size: 19px;
    }

    .successPage .successWrapper {
        padding: 32px 8px;
    }
}