@import "https://cdn.jsdelivr.net/npm/@fontsource/pt-sans@latest/400.css";
@import "https://cdn.jsdelivr.net/npm/@fontsource/pt-sans@latest/700.css";

body {
    margin: 0;
    overflow-x: hidden;
    min-height: 100vh;
    word-break: break-word;
    overflow-wrap: anywhere
}

.masthead {
    background: linear-gradient(135deg, #F4F4F0 0%, #c7d3b459 100%);
    border-bottom: 2px solid #8c9c4f2e;
    position: relative
}

.topbar {
    max-width: 1440px;
    margin: 0 auto;
    padding: 12px 48px 8px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 24px
}

.brandunit {
    display: flex;
    align-items: center;
    gap: 24px
}

.markframe {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #ffffffd9;
    box-shadow: 0 0 0 2px #8c9c4f40 1px 4px 25px 1px #8c9c4f1c;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px)
}

.markframe img {
    width: 100%;
    height: 100%;
    object-fit: contain
}

.companytext {
    display: flex;
    flex-direction: column;
    gap: 4px
}

.companyname {
    font-family: 'PT Sans', sans-serif;
    font-size: 28px;
    line-height: 1.2;
    font-weight: 700;
    color: #2d3319;
    letter-spacing: .02em
}

.tagline {
    font-family: 'PT Sans', sans-serif;
    font-size: 13px;
    line-height: 1.4;
    font-weight: 400;
    color: #5a6338;
    letter-spacing: .01em
}

.utility {
    display: flex;
    align-items: center;
    gap: 24px;
    flex-wrap: wrap
}

.contactchip {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 12px;
    background: #ffffffb3;
    border: 1px solid #8c9c4f33;
    border-radius: 6px;
    box-shadow: 1px 3px 5px 1px #8c9c4f0f;
    transition: transform .15s ease-out, box-shadow .15s ease-out
}

.contactchip:hover {
    transform: translateY(-1px);
    box-shadow: 1px 4px 25px 1px #8c9c4f1c
}

.contactchip svg {
    width: 16px;
    height: 16px;
    fill: #8C9C4F
}

.contactchip a {
    font-family: 'PT Sans', sans-serif;
    font-size: 13px;
    line-height: 1.4;
    font-weight: 400;
    color: #2d3319;
    text-decoration: none;
    transition: color .12s ease-out
}

.contactchip a:hover {
    color: #8C9C4F
}

.contactchip a:focus {
    outline: 2px solid #8C9C4F;
    outline-offset: 2px;
    text-decoration: underline
}

.navzone {
    max-width: 1440px;
    margin: 0 auto;
    padding: 12px 48px 24px
}

.primarynav {
    display: flex;
    gap: 48px;
    flex-wrap: wrap;
    align-items: center
}

.navitem {
    position: relative
}

.navlink {
    font-family: 'PT Sans', sans-serif;
    font-size: 16px;
    line-height: 1.4;
    font-weight: 700;
    color: #3a4520;
    text-decoration: none;
    padding: 12px 8px;
    display: block;
    transition: color .18s ease-out, transform .12s ease-out;
    perspective: 600px
}

.navlink:hover {
    color: #8C9C4F;
    transform: rotateX(3deg) rotateY(-2deg)
}

.navlink:focus {
    outline: 2px solid #8C9C4F;
    outline-offset: 4px;
    text-decoration: underline
}

.navlink::after {
    content: '';
    position: absolute;
    bottom: 8px;
    left: 8px;
    right: 8px;
    height: 2px;
    background: linear-gradient(90deg, #8C9C4F 0%, #C7D3B4 100%);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform .5s ease
}

.navlink:hover::after {
    transform: scaleX(1)
}

.established {
    margin-left: auto;
    font-family: 'PT Sans', sans-serif;
    font-size: 13px;
    line-height: 1.4;
    font-weight: 400;
    color: #5a6338;
    padding: 8px 12px;
    background: #8c9c4f14;
    border-radius: 20px
}

@media (max-width: 1366px) {

    .topbar,
    .navzone {
        padding-left: 24px;
        padding-right: 24px
    }

    .primarynav {
        gap: 24px
    }

    .companyname {
        font-size: 28px
    }
}

@media (max-width: 768px) {
    .topbar {
        padding: 12px 12px 8px
    }

    .navzone {
        padding: 12px 12px 24px
    }

    .brandunit {
        gap: 12px
    }

    .companyname {
        font-size: 28px
    }

    .tagline {
        font-size: 13px
    }

    .utility {
        width: 100%;
        justify-content: flex-start
    }

    .contactchip {
        flex: 1 1 auto
    }

    .primarynav {
        gap: 12px;
        flex-direction: column;
        align-items: flex-start
    }

    .navitem {
        width: 100%
    }

    .navlink {
        padding: 12px 0
    }

    .established {
        margin-left: 0;
        width: 100%;
        text-align: center
    }
}

@media (max-width: 375px) {

    .topbar,
    .navzone {
        padding-left: 8px;
        padding-right: 8px
    }

    .markframe {
        width: 48px;
        height: 48px
    }

    .companyname {
        font-size: 28px
    }

    .contactchip {
        padding: 8px
    }
}

.baseboard {
    background: linear-gradient(165deg, #2d3319 0%, #3a4520 100%);
    color: #F4F4F0;
    padding: 48px 0 24px;
    border-top: 2px solid #8c9c4f40
}

.basecontent {
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 48px
}

.basegrid {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 96px;
    margin-bottom: 48px
}

.brandcolumn {
    display: flex;
    flex-direction: column;
    gap: 24px
}

.footermarkframe {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f4f4f0f2;
    box-shadow: 0 0 0 2px #8c9c4f59 1px 4px 25px 1px #8c9c4f24;
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px)
}

.footermarkframe img {
    width: 100%;
    height: 100%;
    object-fit: contain
}

.footerbrand {
    font-family: 'PT Sans', sans-serif;
    font-size: 28px;
    line-height: 1.2;
    font-weight: 700;
    color: #F4F4F0;
    letter-spacing: .02em
}

.footerdescription {
    font-family: 'PT Sans', sans-serif;
    font-size: 13px;
    line-height: 1.6;
    font-weight: 400;
    color: #C7D3B4;
    margin-top: 12px
}

.navcolumns {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 48px
}

.footersection {
    display: flex;
    flex-direction: column;
    gap: 24px
}

.sectionlabel {
    font-family: 'PT Sans', sans-serif;
    font-size: 16px;
    line-height: 1.4;
    font-weight: 700;
    color: #F4F4F0;
    text-transform: uppercase;
    letter-spacing: .08em;
    margin-bottom: 8px
}

.footerlinks {
    display: flex;
    flex-direction: column;
    gap: 12px
}

.footerlink {
    font-family: 'PT Sans', sans-serif;
    font-size: 13px;
    line-height: 1.6;
    font-weight: 400;
    color: #C7D3B4;
    text-decoration: none;
    transition: color .15s ease-out, transform .12s ease-out;
    display: inline-block;
    perspective: 500px
}

.footerlink:hover {
    color: #F4F4F0;
    transform: translateX(4px) rotateY(-2deg)
}

.footerlink:focus {
    outline: 2px solid #8C9C4F;
    outline-offset: 2px;
    text-decoration: underline;
    color: #F4F4F0
}

.contactgroup {
    display: flex;
    flex-direction: column;
    gap: 12px
}

.contactrow {
    display: flex;
    align-items: flex-start;
    gap: 12px
}

.contactrow svg {
    width: 16px;
    height: 16px;
    fill: #8C9C4F;
    flex-shrink: 0;
    margin-top: 2px
}

.contactdetail {
    font-family: 'PT Sans', sans-serif;
    font-size: 13px;
    line-height: 1.6;
    font-weight: 400;
    color: #C7D3B4
}

.contactdetail a {
    color: #C7D3B4;
    text-decoration: none;
    transition: color .15s ease-out
}

.contactdetail a:hover {
    color: #F4F4F0
}

.contactdetail a:focus {
    outline: 2px solid #8C9C4F;
    outline-offset: 2px;
    text-decoration: underline;
    color: #F4F4F0
}

.legalbar {
    padding-top: 24px;
    border-top: 1px solid #c7d3b433;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 24px;
    flex-wrap: wrap
}

.copyright {
    font-family: 'PT Sans', sans-serif;
    font-size: 13px;
    line-height: 1.4;
    font-weight: 400;
    color: #8C9C4F
}

.legallinks {
    display: flex;
    gap: 24px;
    flex-wrap: wrap
}

.legallink {
    font-family: 'PT Sans', sans-serif;
    font-size: 13px;
    line-height: 1.4;
    font-weight: 400;
    color: #8C9C4F;
    text-decoration: none;
    transition: color .15s ease-out
}

.legallink:hover {
    color: #F4F4F0
}

.legallink:focus {
    outline: 2px solid #8C9C4F;
    outline-offset: 2px;
    text-decoration: underline;
    color: #F4F4F0
}

@media (max-width: 1366px) {
    .basecontent {
        padding: 0 24px
    }

    .basegrid {
        gap: 48px
    }

    .navcolumns {
        gap: 24px
    }
}

@media (max-width: 768px) {
    .basecontent {
        padding: 0 12px
    }

    .basegrid {
        grid-template-columns: 1fr;
        gap: 48px
    }

    .navcolumns {
        grid-template-columns: 1fr;
        gap: 48px
    }

    .legalbar {
        flex-direction: column;
        align-items: flex-start
    }

    .legallinks {
        flex-direction: column;
        gap: 12px
    }
}

@media (max-width: 375px) {
    .basecontent {
        padding: 0 8px
    }

    .basegrid {
        gap: 24px
    }

    .navcolumns {
        gap: 24px
    }

    .footermarkframe {
        width: 48px;
        height: 48px
    }
}

.consentbar {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(180deg, #2d3319fa 0%, #3a4520fa 100%);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-top: 2px solid #8c9c4f4d;
    box-shadow: 1px 9px 48px 1px #8c9c4f24;
    padding: 24px 48px;
    z-index: 1000;
    display: none;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity .5s ease, transform .5s ease
}

.consentbar.visible {
    opacity: 1;
    transform: translateY(0)
}

.consentcontent {
    max-width: 1440px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 48px;
    flex-wrap: wrap
}

.consenttext {
    flex: 1 1 400px
}

.consentheadline {
    font-family: 'PT Sans', sans-serif;
    font-size: 16px;
    line-height: 1.4;
    font-weight: 700;
    color: #F4F4F0;
    margin-bottom: 8px
}

.consentdescription {
    font-family: 'PT Sans', sans-serif;
    font-size: 13px;
    line-height: 1.6;
    font-weight: 400;
    color: #C7D3B4
}

.consentactions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    align-items: center
}

.consentbtn {
    font-family: 'PT Sans', sans-serif;
    font-size: 13px;
    line-height: 1.4;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .08em;
    padding: 12px 24px;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    transition: transform .18s ease-out, box-shadow .18s ease-out, background .18s ease-out;
    min-width: 120px;
    perspective: 600px
}

.consentbtn:hover {
    transform: scale(1.05) rotateX(2deg)
}

.consentbtn:focus {
    outline: 2px solid #8C9C4F;
    outline-offset: 4px
}

.primarybtn {
    background: linear-gradient(135deg, #8C9C4F 0%, #a5b862 100%);
    color: #F4F4F0;
    box-shadow: 1px 4px 25px 1px #8c9c4f1c
}

.primarybtn:hover {
    background: linear-gradient(135deg, #a5b862 0%, #8C9C4F 100%);
    box-shadow: 1px 9px 48px 1px #8c9c4f24
}

.secondarybtn {
    background: #c7d3b426;
    color: #C7D3B4;
    border: 1px solid #c7d3b44d;
    box-shadow: 1px 3px 5px 1px #8c9c4f0f;
    min-width: 100px
}

.secondarybtn:hover {
    background: #c7d3b440;
    color: #F4F4F0;
    box-shadow: 1px 4px 25px 1px #8c9c4f1c
}

.settingslink {
    font-family: 'PT Sans', sans-serif;
    font-size: 13px;
    line-height: 1.4;
    font-weight: 400;
    color: #8C9C4F;
    text-decoration: none;
    padding: 8px 12px;
    transition: color .15s ease-out;
    cursor: pointer
}

.settingslink:hover {
    color: #F4F4F0;
    text-decoration: underline
}

.settingslink:focus {
    outline: 2px solid #8C9C4F;
    outline-offset: 2px;
    text-decoration: underline
}

.preferencepanel {
    display: none;
    margin-top: 24px;
    padding-top: 24px;
    border-top: 1px solid #c7d3b433
}

.preferencegroup {
    display: flex;
    flex-direction: column;
    gap: 12px
}

.preferenceoption {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px;
    background: #f4f4f00d;
    border-radius: 6px;
    border: 1px solid #c7d3b426
}

.preferenceoption input[type="checkbox"] {
    width: 20px;
    height: 20px;
    cursor: pointer;
    accent-color: #8C9C4F
}

.preferencelabel {
    font-family: 'PT Sans', sans-serif;
    font-size: 13px;
    line-height: 1.4;
    font-weight: 400;
    color: #C7D3B4;
    cursor: pointer
}

@media (max-width: 768px) {
    .consentbar {
        padding: 24px 12px
    }

    .consentcontent {
        flex-direction: column;
        align-items: flex-start;
        gap: 24px
    }

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

    .consentbtn {
        width: 100%
    }
}

@media (max-width: 375px) {
    .consentbar {
        padding: 24px 8px
    }
}

.policy-main {
    max-width: 1440px;
    margin: 0 auto;
    padding: 48px 24px;
    background: #fff
}

.policy-main h1 {
    font-size: 66px;
    line-height: 1.2;
    margin: 0 0 48px;
    color: #2a2a2a;
    letter-spacing: -.02em
}

.policy-main h2 {
    font-size: 28px;
    line-height: 1.4;
    margin: 96px 0 24px;
    color: #2a2a2a
}

.policy-main h3 {
    font-size: 16px;
    line-height: 1.4;
    margin: 48px 0 12px;
    color: #2a2a2a;
    font-weight: 600
}

.policy-main h4,
.policy-main h5,
.policy-main h6 {
    font-size: 16px;
    line-height: 1.4;
    margin: 24px 0 12px;
    color: #2a2a2a;
    font-weight: 600
}

.policy-main p {
    font-size: 16px;
    line-height: 1.9;
    margin: 0 0 24px;
    color: #3a3a3a
}

.policy-main ul,
.policy-main ol {
    font-size: 16px;
    line-height: 1.9;
    margin: 0 0 24px;
    padding: 0 0 0 24px;
    color: #3a3a3a
}

.policy-main li {
    margin: 0 0 12px
}

.policy-main li:last-child {
    margin-bottom: 0
}

.policy-main strong,
.policy-main b {
    font-weight: 600;
    color: #2a2a2a
}

.policy-main a {
    color: #8C9C4F;
    text-decoration: underline;
    transition: color .15s ease-out
}

.policy-main a:hover {
    color: #6d7a3d
}

.policy-main hr {
    border: none;
    height: 1px;
    background: linear-gradient(to right, #C7D3B4, #F4F4F0);
    margin: 48px 0
}

.policy-main table {
    width: 100%;
    border-collapse: collapse;
    margin: 0 0 48px;
    font-size: 16px;
    line-height: 1.6;
    box-shadow: 1px 3px 5px 1px #8c9c4f0f;
    border-radius: 6px;
    overflow: hidden
}

.policy-main thead {
    background: linear-gradient(135deg, #8C9C4F 0%, #a0b05f 100%)
}

.policy-main thead tr {
    color: #fff
}

.policy-main th {
    padding: 24px;
    text-align: left;
    font-weight: 600;
    color: #fff
}

.policy-main td {
    padding: 24px;
    border-bottom: 1px solid #F4F4F0;
    color: #3a3a3a
}

.policy-main tbody tr {
    transition: background-color .15s ease-out
}

.policy-main tbody tr:hover {
    background-color: #fafbf8
}

.policy-main tbody tr:last-child td {
    border-bottom: none
}

.policy-main div {
    margin: 0 0 24px
}

@media (max-width: 1366px) {
    .policy-main {
        padding: 48px 24px
    }

    .policy-main h1 {
        font-size: 48px
    }

    .policy-main h2 {
        font-size: 24px
    }
}

@media (max-width: 768px) {
    .policy-main {
        padding: 24px 12px
    }

    .policy-main h1 {
        font-size: 28px;
        margin-bottom: 24px
    }

    .policy-main h2 {
        font-size: 20px;
        margin: 48px 0 12px
    }

    .policy-main h3 {
        margin: 24px 0 12px
    }

    .policy-main table {
        font-size: 13px
    }

    .policy-main th,
    .policy-main td {
        padding: 12px
    }

    .policy-main ul,
    .policy-main ol {
        padding-left: 24px
    }
}

@media (max-width: 375px) {
    .policy-main {
        padding: 24px 8px
    }

    .policy-main h1 {
        font-size: 24px
    }

    .policy-main table {
        font-size: 13px
    }

    .policy-main th,
    .policy-main td {
        padding: 8px
    }
}

.base {
    max-width: 1440px;
    margin: 0 auto;
    background: #fff;
    color: #1a1a1a;
    overflow-x: clip
}

.base img {
    max-width: 100%;
    height: auto;
    display: block
}

.base ::selection {
    background: #C7D3B4;
    color: #000
}

.base input::placeholder,
.base textarea::placeholder {
    transition: opacity 500ms ease-out
}

.base input:focus::placeholder,
.base textarea:focus::placeholder {
    opacity: 0
}

.titlezone {
    position: relative;
    padding: 96px 24px 192px;
    text-align: center;
    background: linear-gradient(180deg, #F4F4F0 0%, #fff 100%)
}

.titlezone::before,
.titlezone::after {
    content: '';
    position: absolute;
    width: 48px;
    height: 48px;
    border: 2px solid #8C9C4F;
    pointer-events: none
}

.titlezone::before {
    top: 48px;
    left: 48px;
    border-right: none;
    border-bottom: none
}

.titlezone::after {
    top: 48px;
    right: 48px;
    border-left: none;
    border-bottom: none
}

.titlezone h1 {
    font-size: 66px;
    line-height: 1.2;
    margin: 0 0 24px;
    color: #2d2d2d;
    letter-spacing: -.02em;
    text-shadow: 2px 2px 4px #8c9c4f26
}

.titlezone .lead {
    font-size: 28px;
    line-height: 1.6;
    margin: 0 auto 48px;
    max-width: 840px;
    color: #4a4a4a
}

.titlezone .visual {
    max-width: 960px;
    margin: 0 auto;
    position: relative;
    border-radius: 6px;
    overflow: hidden;
    box-shadow: 1px 9px 48px 1px #8c9c4f24
}

.titlezone .visual::after {
    content: '';
    position: absolute;
    bottom: 24px;
    right: 24px;
    width: 96px;
    height: 96px;
    border: 2px solid #8C9C4F;
    border-top: none;
    border-left: none;
    pointer-events: none
}

.titlezone .visual img {
    width: 100%;
    height: 480px;
    object-fit: cover;
    filter: sepia(0.15) saturate(1.1) brightness(1.05)
}

.offerings {
    position: relative;
    padding: 96px 24px;
    background: #fff;
    overflow: hidden
}

.offerings::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 400%;
    background: radial-gradient(ellipse at 50% 50%, #c7d3b41f 0%, #f4f4f014 45%, transparent 70%);
    animation: bgdrift 90s linear infinite;
    pointer-events: none
}

@keyframes bgdrift {
    0% {
        transform: translateY(0)
    }

    100% {
        transform: translateY(-75%)
    }
}

.offerings .wrapper {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 1
}

.offerings h2 {
    font-size: 66px;
    line-height: 1.2;
    margin: 0 0 12px;
    text-align: center;
    color: #2d2d2d;
    text-shadow: 1px 2px 3px #8c9c4f1f
}

.offerings .intro {
    font-size: 28px;
    line-height: 1.6;
    text-align: center;
    margin: 0 auto 48px;
    max-width: 760px;
    color: #4a4a4a
}

.offerings .grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    position: relative
}

.offerings .card {
    background: #fff;
    border-radius: 6px;
    padding: 24px;
    box-shadow: 1px 4px 25px 1px #8c9c4f1c;
    position: relative;
    transition: transform 550ms ease-out, box-shadow 550ms ease-out;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px)
}

.offerings .card:hover {
    transform: scale(1.04);
    box-shadow: 1px 9px 48px 1px #8c9c4f24;
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px)
}

.offerings .card::after {
    content: '';
    position: absolute;
    bottom: -6px;
    right: -6px;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #8c9c4f26, #c7d3b433);
    border-radius: 6px;
    z-index: -1;
    transition: opacity 500ms ease-out;
    opacity: 0
}

.offerings .card:hover::after {
    opacity: 1
}

.offerings .card.featured {
    grid-row: span 2;
    padding: 48px 24px
}

.offerings .card h3 {
    font-size: 28px;
    line-height: 1.4;
    margin: 0 0 12px;
    color: #2d2d2d
}

.offerings .card.featured h3 {
    font-size: 28px;
    margin-bottom: 24px
}

.offerings .card p {
    font-size: 16px;
    line-height: 1.6;
    margin: 0;
    color: #4a4a4a
}

.offerings .card.compact {
    padding: 24px
}

.offerings .card.compact h3 {
    font-size: 28px;
    margin-bottom: 8px
}

.offerings .card.compact p {
    font-size: 13px;
    line-height: 1.4
}

.methodology {
    padding: 96px 24px;
    background: linear-gradient(180deg, #F4F4F0 0%, #fff 100%);
    position: relative
}

.methodology::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent 0%, #8C9C4F 50%, transparent 100%)
}

.methodology::after {
    content: '';
    position: absolute;
    top: 4px;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, #C7D3B4 50%, transparent 100%)
}

.methodology .wrapper {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: start
}

.methodology .content h2 {
    font-size: 66px;
    line-height: 1.2;
    margin: 0 0 24px;
    color: #2d2d2d;
    text-shadow: 2px 3px 5px #8c9c4f2e
}

.methodology .content .description {
    font-size: 28px;
    line-height: 1.6;
    margin: 0 0 48px;
    color: #4a4a4a
}

.methodology .steps {
    display: flex;
    flex-direction: column;
    gap: 24px
}

.methodology .step {
    position: relative;
    padding-left: 96px
}

.methodology .step::before {
    content: attr(data-number);
    position: absolute;
    left: 0;
    top: -8px;
    font-size: 66px;
    line-height: 1;
    color: #8c9c4f26;
    font-weight: 700
}

.methodology .step h4 {
    font-size: 28px;
    line-height: 1.4;
    margin: 0 0 8px;
    color: #2d2d2d
}

.methodology .step p {
    font-size: 16px;
    line-height: 1.6;
    margin: 0;
    color: #4a4a4a
}

.methodology .visual {
    position: relative;
    border-radius: 6px;
    overflow: hidden;
    box-shadow: 1px 4px 25px 1px #8c9c4f1c;
    height: 100%;
    min-height: 640px
}

.methodology .visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 600ms ease-out
}

.methodology .visual:hover img {
    transform: scale(1.06)
}

.stories {
    padding: 96px 24px;
    background: #fff;
    position: relative
}

.stories::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 1200px;
    height: 1200px;
    transform: translate(-50%, -50%);
    background: radial-gradient(ellipse at 50% 50%, #c7d3b414 0%, transparent 65%);
    pointer-events: none
}

.stories .wrapper {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 1
}

.stories h2 {
    font-size: 66px;
    line-height: 1.2;
    text-align: center;
    margin: 0 0 48px;
    color: #2d2d2d;
    text-shadow: 1px 2px 4px #8c9c4f1a
}

.stories .testimonials {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 48px
}

.stories .testimonial {
    position: relative;
    perspective: 1200px
}

.stories .testimonial .cardinner {
    background: linear-gradient(135deg, #F4F4F0 0%, #fff 100%);
    border-radius: 20px;
    padding: 48px;
    box-shadow: 1px 4px 25px 1px #8c9c4f1c;
    transition: transform 500ms ease-out, box-shadow 500ms ease-out;
    position: relative
}

.stories .testimonial:hover .cardinner {
    transform: rotateY(2deg) rotateX(-1deg);
    box-shadow: 1px 9px 48px 1px #8c9c4f24
}

.stories .testimonial .quote {
    font-size: 28px;
    line-height: 1.6;
    margin: 0 0 24px;
    color: #2d2d2d;
    font-style: italic
}

.stories .testimonial .attribution {
    display: flex;
    align-items: center;
    gap: 24px;
    margin-top: 24px;
    padding-top: 24px;
    border-top: 2px solid #8c9c4f33
}

.stories .testimonial .photo {
    width: 72px;
    height: 72px;
    border-radius: 2px;
    overflow: hidden;
    flex-shrink: 0;
    box-shadow: 1px 3px 5px 1px #8c9c4f0f
}

.stories .testimonial .photo img {
    width: 100%;
    height: 100%;
    object-fit: cover
}

.stories .testimonial .details h4 {
    font-size: 16px;
    line-height: 1.4;
    margin: 0 0 4px;
    color: #2d2d2d;
    font-weight: 700
}

.stories .testimonial .details p {
    font-size: 13px;
    line-height: 1.4;
    margin: 0;
    color: #6a6a6a
}

.environment {
    padding: 96px 24px;
    background: linear-gradient(180deg, #fff 0%, #F4F4F0 100%);
    position: relative
}

.environment::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: #8C9C4F
}

.environment::after {
    content: '';
    position: absolute;
    bottom: 6px;
    left: 0;
    right: 0;
    height: 1px;
    background: #C7D3B4
}

.environment .wrapper {
    max-width: 1200px;
    margin: 0 auto;
    position: relative
}

.environment h2 {
    font-size: 66px;
    line-height: 1.2;
    text-align: center;
    margin: 0 0 24px;
    color: #2d2d2d;
    text-shadow: 2px 2px 6px #8c9c4f1f
}

.environment .subtitle {
    font-size: 28px;
    line-height: 1.6;
    text-align: center;
    margin: 0 auto 48px;
    max-width: 840px;
    color: #4a4a4a
}

.environment .features {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-bottom: 48px
}

.environment .feature {
    background: #fff;
    border-radius: 6px;
    padding: 24px;
    box-shadow: 1px 3px 5px 1px #8c9c4f0f;
    transition: transform 450ms ease-out;
    position: relative
}

.environment .feature:hover {
    transform: scale(1.06)
}

.environment .feature .icon {
    width: 48px;
    height: 48px;
    margin-bottom: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #8C9C4F, #C7D3B4);
    border-radius: 2px;
    color: #fff;
    font-size: 28px
}

.environment .feature h4 {
    font-size: 28px;
    line-height: 1.4;
    margin: 0 0 12px;
    color: #2d2d2d
}

.environment .feature p {
    font-size: 16px;
    line-height: 1.6;
    margin: 0;
    color: #4a4a4a
}

.environment .cta {
    text-align: center;
    margin-top: 48px
}

.environment .cta button {
    background: linear-gradient(135deg, #8C9C4F 0%, #C7D3B4 100%);
    color: #fff;
    border: none;
    padding: 24px 48px;
    font-size: 16px;
    text-transform: uppercase;
    letter-spacing: .08em;
    border-radius: 6px;
    cursor: pointer;
    box-shadow: 1px 4px 25px 1px #8c9c4f1c;
    transition: transform 500ms ease-out, box-shadow 500ms ease-out;
    font-weight: 700
}

.environment .cta button:hover {
    transform: scale(1.08);
    box-shadow: 1px 9px 48px 1px #8c9c4f24
}

.environment .cta button:focus {
    outline: 2px solid #8C9C4F;
    outline-offset: 4px
}

@media (max-width: 1366px) {
    .titlezone h1 {
        font-size: 56px
    }

    .titlezone .lead,
    .offerings .intro,
    .methodology .content .description,
    .environment .subtitle {
        font-size: 24px
    }

    .offerings h2,
    .methodology .content h2,
    .stories h2,
    .environment h2 {
        font-size: 56px
    }

    .offerings .card h3,
    .methodology .step h4,
    .environment .feature h4 {
        font-size: 24px
    }

    .stories .testimonial .quote {
        font-size: 24px
    }
}

@media (max-width: 768px) {
    .titlezone {
        padding: 48px 24px 96px
    }

    .titlezone h1 {
        font-size: 42px
    }

    .titlezone .lead {
        font-size: 20px
    }

    .titlezone .visual img {
        height: 320px
    }

    .titlezone::before,
    .titlezone::after {
        width: 32px;
        height: 32px
    }

    .titlezone::before {
        top: 24px;
        left: 24px
    }

    .titlezone::after {
        top: 24px;
        right: 24px
    }

    .offerings,
    .methodology,
    .stories,
    .environment {
        padding: 48px 24px
    }

    .offerings h2,
    .methodology .content h2,
    .stories h2,
    .environment h2 {
        font-size: 42px
    }

    .offerings .intro,
    .methodology .content .description,
    .environment .subtitle {
        font-size: 20px
    }

    .offerings .grid {
        grid-template-columns: 1fr
    }

    .offerings .card.featured {
        grid-row: span 1
    }

    .methodology .wrapper {
        grid-template-columns: 1fr;
        gap: 24px
    }

    .methodology .visual {
        min-height: 400px
    }

    .methodology .step::before {
        font-size: 48px
    }

    .stories .testimonials {
        grid-template-columns: 1fr;
        gap: 24px
    }

    .stories .testimonial .cardinner {
        padding: 24px
    }

    .stories .testimonial .quote {
        font-size: 20px
    }

    .environment .features {
        grid-template-columns: 1fr
    }
}

@media (max-width: 375px) {
    .titlezone h1 {
        font-size: 32px
    }

    .titlezone .lead {
        font-size: 16px
    }

    .offerings h2,
    .methodology .content h2,
    .stories h2,
    .environment h2 {
        font-size: 32px
    }

    .offerings .intro,
    .methodology .content .description,
    .environment .subtitle {
        font-size: 16px
    }

    .offerings .card h3,
    .methodology .step h4,
    .environment .feature h4 {
        font-size: 20px
    }

    .stories .testimonial .quote {
        font-size: 16px
    }

    .environment .cta button {
        padding: 24px;
        font-size: 13px
    }
}

.learningprog {
    background: #fff;
    color: #1a1a1a;
    overflow-x: clip
}

.learningprog ::selection {
    background: #C7D3B4;
    color: #1a1a1a
}

.learningprog img {
    max-width: 100%;
    height: auto
}

.learningprog input::placeholder,
.learningprog textarea::placeholder {
    transition: opacity 500ms ease-out
}

.learningprog input:focus::placeholder,
.learningprog textarea:focus::placeholder {
    opacity: 0
}

.learningprog .herozone {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 96px 24px;
    background: linear-gradient(135deg, #8C9C4F 0%, #F4F4F0 100%);
    overflow: hidden
}

.learningprog .herozone::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(ellipse at 30% 40%, #c7d3b466 0%, transparent 50%), radial-gradient(ellipse at 70% 60%, #8c9c4f4d 0%, transparent 50%);
    animation: aurorashift 12s ease-in-out infinite;
    pointer-events: none
}

@keyframes aurorashift {

    0%,
    100% {
        transform: translate(0, 0) scale(1)
    }

    33% {
        transform: translate(-8%, 5%) scale(1.05)
    }

    66% {
        transform: translate(5%, -8%) scale(0.98)
    }
}

.learningprog .herocontent {
    position: relative;
    z-index: 1;
    max-width: 1440px;
    width: 100%;
    display: grid;
    grid-template-columns: 1fr;
    gap: 48px;
    align-items: center
}

.learningprog .herotxt {
    max-width: 680px
}

.learningprog .herotxt h1 {
    font-size: 66px;
    line-height: 1.2;
    margin: 0 0 24px;
    color: #fff;
    text-shadow: 2px 3px 8px #8c9c4f4d
}

.learningprog .herotxt .subline {
    font-size: 28px;
    line-height: 1.4;
    margin: 0 0 24px;
    color: #fff;
    text-shadow: 1px 2px 4px #8c9c4f33
}

.learningprog .herotxt p {
    font-size: 16px;
    line-height: 1.6;
    margin: 0 0 12px;
    color: #2a2a2a
}

.learningprog .heroimg {
    position: relative;
    width: 100%;
    max-width: 640px;
    margin: 0 auto;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 1px 9px 48px 1px #8c9c4f24;
    transform: perspective(1000px) rotateY(0deg);
    transition: transform 600ms ease-out, box-shadow 600ms ease-out
}

.learningprog .heroimg:hover {
    transform: perspective(1000px) rotateY(-2deg) rotateX(1deg);
    box-shadow: 1px 9px 48px 1px #8c9c4f3d
}

.learningprog .heroimg img {
    width: 100%;
    height: 480px;
    object-fit: cover;
    display: block;
    filter: saturate(0.7) brightness(1.05)
}

.learningprog .detailszone {
    position: relative;
    padding: 96px 24px;
    background: #fff;
    overflow: hidden
}

.learningprog .detailswrap {
    max-width: 1440px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 96px;
    align-items: start
}

.learningprog .detailsleft {
    position: sticky;
    top: 96px
}

.learningprog .detailsleft h2 {
    font-size: 28px;
    line-height: 1.2;
    margin: 0 0 24px;
    color: #8C9C4F;
    text-align: center;
    text-shadow: 1px 2px 4px #8c9c4f26
}

.learningprog .detailsright {
    display: flex;
    flex-direction: column;
    gap: 48px
}

.learningprog .modulecard {
    position: relative;
    background: #F4F4F0;
    border-radius: 6px;
    padding: 48px;
    box-shadow: 1px 3px 5px 1px #8c9c4f0f;
    transition: transform 500ms ease-out, box-shadow 500ms ease-out
}

.learningprog .modulecard:hover {
    transform: scale(1.02);
    box-shadow: 1px 4px 25px 1px #8c9c4f1c
}

.learningprog .modulecard::before {
    content: '';
    position: absolute;
    top: 24px;
    left: 24px;
    font-size: 66px;
    line-height: 1;
    color: #8c9c4f14;
    font-weight: 700;
    pointer-events: none;
    z-index: 0
}

.learningprog .modulecard:nth-child(1)::before {
    content: '01'
}

.learningprog .modulecard:nth-child(2)::before {
    content: '02'
}

.learningprog .modulecard:nth-child(3)::before {
    content: '03'
}

.learningprog .modulecard:nth-child(4)::before {
    content: '04'
}

.learningprog .modulecard:nth-child(5)::before {
    content: '05'
}

.learningprog .modulecontent {
    position: relative;
    z-index: 1
}

.learningprog .modulecontent h3 {
    font-size: 28px;
    line-height: 1.2;
    margin: 0 0 24px;
    color: #8C9C4F;
    text-shadow: 1px 2px 3px #8c9c4f1a
}

.learningprog .modulecontent p {
    font-size: 16px;
    line-height: 1.6;
    margin: 0 0 12px;
    color: #2a2a2a
}

.learningprog .modulecontent ul {
    list-style: none;
    padding: 0;
    margin: 24px 0 0;
    display: flex;
    flex-direction: column;
    gap: 12px
}

.learningprog .modulecontent li {
    font-size: 16px;
    line-height: 1.6;
    color: #2a2a2a;
    padding-left: 32px;
    position: relative
}

.learningprog .modulecontent li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 8px;
    width: 8px;
    height: 8px;
    background: #8C9C4F;
    border-radius: 2px;
    transform: rotate(45deg)
}

.learningprog .quotezone {
    position: relative;
    padding: 96px 24px;
    background: linear-gradient(180deg, #F4F4F0 0%, #fff 100%);
    overflow: hidden
}

.learningprog .quotezone::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: repeating-linear-gradient(45deg, transparent, transparent 48px, #8c9c4f05 48px, #8c9c4f05 96px), repeating-linear-gradient(-45deg, transparent, transparent 48px, #c7d3b405 48px, #c7d3b405 96px);
    pointer-events: none;
    z-index: 0
}

.learningprog .quotewrap {
    position: relative;
    z-index: 1;
    max-width: 1440px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 96px;
    align-items: center
}

.learningprog .quotetxt {
    display: flex;
    flex-direction: column;
    gap: 24px
}

.learningprog .quotetxt h2 {
    font-size: 28px;
    line-height: 1.2;
    margin: 0;
    color: #8C9C4F;
    text-align: center;
    text-shadow: 1px 2px 4px #8c9c4f26
}

.learningprog .quotetxt p {
    font-size: 16px;
    line-height: 1.6;
    margin: 0;
    color: #2a2a2a;
    text-align: left
}

.learningprog .quotedisplay {
    position: relative;
    background: #fff;
    border-radius: 6px;
    padding: 48px;
    box-shadow: 1px 4px 25px 1px #8c9c4f1c
}

.learningprog .quotedisplay blockquote {
    font-size: 28px;
    line-height: 1.4;
    margin: 0;
    color: #8C9C4F;
    font-style: italic;
    text-align: left;
    position: relative;
    padding-left: 48px
}

.learningprog .quotedisplay blockquote::before {
    content: '"';
    position: absolute;
    left: 0;
    top: -12px;
    font-size: 66px;
    line-height: 1;
    color: #8c9c4f33;
    font-style: normal
}

.learningprog .quotedisplay cite {
    display: block;
    font-size: 16px;
    line-height: 1.6;
    margin: 24px 0 0 48px;
    color: #2a2a2a;
    font-style: normal
}

.learningprog .enrollzone {
    position: relative;
    padding: 96px 24px;
    background: radial-gradient(ellipse at 50% 50%, #C7D3B4 0%, #F4F4F0 100%);
    overflow: hidden
}

.learningprog .enrollwrap {
    max-width: 1440px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 48px;
    align-items: center
}

.learningprog .enrollheader {
    text-align: center;
    max-width: 800px
}

.learningprog .enrollheader h2 {
    font-size: 66px;
    line-height: 1.2;
    margin: 0 0 24px;
    color: #8C9C4F;
    text-shadow: 2px 3px 8px #8c9c4f26
}

.learningprog .enrollheader p {
    font-size: 16px;
    line-height: 1.6;
    margin: 0;
    color: #2a2a2a
}

.learningprog .pricegrid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 48px;
    width: 100%
}

.learningprog .pricecard {
    background: #fff;
    border-radius: 20px;
    padding: 48px;
    box-shadow: 1px 3px 5px 1px #8c9c4f0f;
    display: flex;
    flex-direction: column;
    gap: 24px;
    transition: transform 500ms ease-out, box-shadow 500ms ease-out;
    position: relative
}

.learningprog .pricecard:hover {
    transform: scale(1.05);
    box-shadow: 1px 9px 48px 1px #8c9c4f24
}

.learningprog .pricecard.featured {
    background: linear-gradient(135deg, #8C9C4F 0%, #C7D3B4 100%);
    transform: scale(1.08)
}

.learningprog .pricecard.featured:hover {
    transform: scale(1.12)
}

.learningprog .pricecard.featured h3,
.learningprog .pricecard.featured .priceval,
.learningprog .pricecard.featured p,
.learningprog .pricecard.featured li {
    color: #fff
}

.learningprog .pricecard.featured li::before {
    background: #fff
}

.learningprog .pricecard h3 {
    font-size: 28px;
    line-height: 1.2;
    margin: 0;
    color: #8C9C4F;
    text-align: center;
    text-shadow: 1px 2px 3px #8c9c4f1a
}

.learningprog .priceval {
    font-size: 66px;
    line-height: 1;
    margin: 0;
    color: #8C9C4F;
    text-align: center;
    font-weight: 700
}

.learningprog .pricecard p {
    font-size: 16px;
    line-height: 1.6;
    margin: 0;
    color: #2a2a2a;
    text-align: center
}

.learningprog .pricecard ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
    flex-grow: 1
}

.learningprog .pricecard li {
    font-size: 16px;
    line-height: 1.6;
    color: #2a2a2a;
    padding-left: 32px;
    position: relative
}

.learningprog .pricecard li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 8px;
    width: 8px;
    height: 8px;
    background: #8C9C4F;
    border-radius: 2px;
    transform: rotate(45deg)
}

.learningprog .enrollbtn {
    background: #8C9C4F;
    color: #fff;
    border: none;
    border-radius: 6px;
    padding: 12px 48px;
    font-size: 16px;
    line-height: 1.6;
    text-transform: uppercase;
    letter-spacing: .1em;
    cursor: pointer;
    transition: transform 400ms ease-out, box-shadow 400ms ease-out;
    box-shadow: 1px 3px 5px 1px #8c9c4f0f
}

.learningprog .enrollbtn:hover {
    transform: scale(1.08);
    box-shadow: 1px 4px 25px 1px #8c9c4f1c
}

.learningprog .pricecard.featured .enrollbtn {
    background: #fff;
    color: #8C9C4F
}

@media (max-width: 1366px) {
    .learningprog .herozone {
        padding: 48px 24px
    }

    .learningprog .herotxt h1 {
        font-size: 48px
    }

    .learningprog .herotxt .subline {
        font-size: 22px
    }

    .learningprog .detailszone {
        padding: 48px 24px
    }

    .learningprog .detailswrap {
        grid-template-columns: 1fr;
        gap: 48px
    }

    .learningprog .detailsleft {
        position: static
    }

    .learningprog .quotezone {
        padding: 48px 24px
    }

    .learningprog .quotewrap {
        grid-template-columns: 1fr;
        gap: 48px
    }

    .learningprog .enrollzone {
        padding: 48px 24px
    }

    .learningprog .enrollheader h2 {
        font-size: 48px
    }

    .learningprog .pricegrid {
        grid-template-columns: 1fr;
        gap: 24px
    }

    .learningprog .pricecard.featured {
        transform: scale(1)
    }

    .learningprog .pricecard.featured:hover {
        transform: scale(1.05)
    }
}

@media (max-width: 768px) {
    .learningprog .herozone {
        padding: 48px 12px
    }

    .learningprog .herocontent {
        gap: 24px
    }

    .learningprog .herotxt h1 {
        font-size: 28px
    }

    .learningprog .herotxt .subline {
        font-size: 16px
    }

    .learningprog .heroimg img {
        height: 320px
    }

    .learningprog .detailszone {
        padding: 48px 12px
    }

    .learningprog .detailswrap {
        gap: 24px
    }

    .learningprog .detailsright {
        gap: 24px
    }

    .learningprog .modulecard {
        padding: 24px
    }

    .learningprog .modulecard::before {
        font-size: 48px;
        top: 12px;
        left: 12px
    }

    .learningprog .modulecontent h3 {
        font-size: 22px
    }

    .learningprog .quotezone {
        padding: 48px 12px
    }

    .learningprog .quotewrap {
        gap: 24px
    }

    .learningprog .quotedisplay {
        padding: 24px
    }

    .learningprog .quotedisplay blockquote {
        font-size: 22px;
        padding-left: 32px
    }

    .learningprog .quotedisplay blockquote::before {
        font-size: 48px
    }

    .learningprog .quotedisplay cite {
        margin-left: 32px
    }

    .learningprog .enrollzone {
        padding: 48px 12px
    }

    .learningprog .enrollwrap {
        gap: 24px
    }

    .learningprog .enrollheader h2 {
        font-size: 28px
    }

    .learningprog .pricegrid {
        gap: 24px
    }

    .learningprog .pricecard {
        padding: 24px
    }

    .learningprog .priceval {
        font-size: 48px
    }
}

@media (max-width: 375px) {
    .learningprog .herozone {
        padding: 24px 12px
    }

    .learningprog .herotxt h1 {
        font-size: 22px
    }

    .learningprog .heroimg img {
        height: 240px
    }

    .learningprog .detailszone {
        padding: 24px 12px
    }

    .learningprog .quotezone {
        padding: 24px 12px
    }

    .learningprog .enrollzone {
        padding: 24px 12px
    }

    .learningprog .enrollheader h2 {
        font-size: 22px
    }
}

.aboutpg {
    background: #fff;
    color: #1a1a1a;
    overflow-x: clip
}

.aboutpg ::selection {
    background: #C7D3B4;
    color: #000
}

.aboutpg * {
    box-sizing: border-box
}

.aboutpg img {
    max-width: 100%;
    height: auto
}

.aboutpg input::placeholder,
.aboutpg textarea::placeholder {
    transition: opacity .5s ease-out
}

.aboutpg input:focus::placeholder,
.aboutpg textarea:focus::placeholder {
    opacity: 0
}

.aboutpg .titlehero {
    position: relative;
    padding: 144px 24px 96px;
    overflow: hidden;
    background: linear-gradient(135deg, #8C9C4F 0%, #C7D3B4 50%, #F4F4F0 100%);
    background-size: 200% 200%;
    animation: gradientDrift 12s ease-in-out infinite
}

@keyframes gradientDrift {
    0% {
        background-position: 0 50%
    }

    50% {
        background-position: 100% 50%
    }

    100% {
        background-position: 0 50%
    }
}

.aboutpg .titlehero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: repeating-linear-gradient(0deg, #ffffff08 0px, #ffffff08 1px, transparent 1px, transparent 48px), repeating-linear-gradient(90deg, #ffffff08 0px, #ffffff08 1px, transparent 1px, transparent 48px);
    pointer-events: none
}

.aboutpg .titlehero .eyebrow {
    font-size: 13px;
    line-height: 1.4;
    letter-spacing: .15em;
    text-transform: uppercase;
    color: #0009;
    margin: 0 0 24px;
    text-align: center;
    position: relative;
    z-index: 1
}

.aboutpg .titlehero .mainhead {
    font-size: 66px;
    line-height: 1.2;
    margin: 0;
    text-align: center;
    color: #000;
    position: relative;
    z-index: 1;
    max-width: 1440px;
    margin-left: auto;
    margin-right: auto
}

@media (max-width: 1365px) {
    .aboutpg .titlehero {
        padding: 96px 24px 72px
    }

    .aboutpg .titlehero .mainhead {
        font-size: 48px
    }
}

@media (max-width: 767px) {
    .aboutpg .titlehero {
        padding: 72px 24px 48px
    }

    .aboutpg .titlehero .mainhead {
        font-size: 36px
    }
}

@media (max-width: 374px) {
    .aboutpg .titlehero .mainhead {
        font-size: 28px
    }
}

.aboutpg .storyzone {
    max-width: 1440px;
    margin: 0 auto;
    padding: 96px 24px;
    display: grid;
    grid-template-columns: 1fr 280px;
    gap: 48px;
    align-items: start
}

.aboutpg .storyzone .leftcontent {
    position: relative
}

.aboutpg .storyzone .leftcontent::before {
    content: '';
    position: absolute;
    top: 0;
    right: -24px;
    width: 3px;
    height: 4px;
    background: #8C9C4F
}

.aboutpg .storyzone .leftcontent::after {
    content: '';
    position: absolute;
    top: 12px;
    right: -24px;
    width: 3px;
    height: 4px;
    background: #8C9C4F
}

.aboutpg .storyzone .sectionhead {
    font-size: 28px;
    line-height: 1.4;
    margin: 0 0 24px;
    color: #000;
    text-align: center;
    text-shadow: 1px 2px 4px #8c9c4f26
}

.aboutpg .storyzone .bodytxt {
    font-size: 16px;
    line-height: 1.6;
    margin: 0 0 24px;
    color: #2a2a2a
}

.aboutpg .storyzone .bodytxt:last-child {
    margin-bottom: 0
}

.aboutpg .storyzone .rightaccent {
    position: sticky;
    top: 96px;
    background: linear-gradient(135deg, #F4F4F0 0%, #fff 100%);
    padding: 24px;
    border-radius: 20px;
    box-shadow: 1px 4px 25px 1px #8c9c4f1c
}

.aboutpg .storyzone .accentlabel {
    font-size: 13px;
    line-height: 1.4;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: #00000080;
    margin: 0 0 12px
}

.aboutpg .storyzone .accentvalue {
    font-size: 28px;
    line-height: 1.2;
    margin: 0 0 8px;
    color: #8C9C4F;
    font-weight: 600
}

.aboutpg .storyzone .progressbar {
    width: 100%;
    height: 2px;
    background: #8c9c4f26;
    border-radius: 2px;
    overflow: hidden;
    margin-bottom: 24px
}

.aboutpg .storyzone .progressfill {
    height: 100%;
    background: #8C9C4F;
    width: 78%;
    transition: width .6s ease-out
}

.aboutpg .storyzone .accentitem {
    margin-bottom: 24px
}

.aboutpg .storyzone .accentitem:last-child {
    margin-bottom: 0
}

@media (max-width: 1365px) {
    .aboutpg .storyzone {
        grid-template-columns: 1fr 240px;
        gap: 24px
    }
}

@media (max-width: 767px) {
    .aboutpg .storyzone {
        grid-template-columns: 1fr;
        padding: 72px 24px
    }

    .aboutpg .storyzone .rightaccent {
        position: static;
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 24px
    }

    .aboutpg .storyzone .accentitem {
        margin-bottom: 0
    }
}

@media (max-width: 374px) {
    .aboutpg .storyzone {
        padding: 48px 24px
    }

    .aboutpg .storyzone .rightaccent {
        grid-template-columns: 1fr
    }
}

.aboutpg .teamshowcase {
    background: linear-gradient(180deg, #F4F4F0 0%, #fff 100%);
    padding: 96px 24px;
    position: relative
}

.aboutpg .teamshowcase::before {
    content: '';
    position: absolute;
    top: 24px;
    right: 48px;
    width: 48px;
    height: 2px;
    background: #8C9C4F;
    transform-origin: left center
}

.aboutpg .teamshowcase::after {
    content: '';
    position: absolute;
    top: 32px;
    right: 48px;
    width: 36px;
    height: 2px;
    background: #C7D3B4;
    transform-origin: left center
}

.aboutpg .teamshowcase .contain {
    max-width: 1440px;
    margin: 0 auto
}

.aboutpg .teamshowcase .headwrap {
    text-align: left;
    margin-bottom: 48px
}

.aboutpg .teamshowcase .sectiontitle {
    font-size: 28px;
    line-height: 1.4;
    margin: 0 0 24px;
    color: #000;
    text-shadow: 1px 2px 4px #8c9c4f1f
}

.aboutpg .teamshowcase .sectiondesc {
    font-size: 16px;
    line-height: 1.6;
    margin: 0;
    color: #2a2a2a;
    max-width: 720px
}

.aboutpg .teamshowcase .splitgrid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 1px 9px 48px 1px #8c9c4f24
}

.aboutpg .teamshowcase .leftpanel {
    background: #fff;
    padding: 48px;
    display: flex;
    flex-direction: column;
    justify-content: center
}

.aboutpg .teamshowcase .rightpanel {
    background: linear-gradient(135deg, #8C9C4F 0%, #C7D3B4 100%);
    padding: 48px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    overflow: hidden;
    transition: background .5s ease-out
}

.aboutpg .teamshowcase .rightpanel:hover {
    background: linear-gradient(135deg, #C7D3B4 0%, #8C9C4F 100%)
}

.aboutpg .teamshowcase .panelhead {
    font-size: 28px;
    line-height: 1.4;
    margin: 0 0 24px;
    color: #000
}

.aboutpg .teamshowcase .rightpanel .panelhead {
    color: #fff
}

.aboutpg .teamshowcase .panelbody {
    font-size: 16px;
    line-height: 1.6;
    margin: 0 0 24px;
    color: #2a2a2a
}

.aboutpg .teamshowcase .rightpanel .panelbody {
    color: #fffffff2
}

.aboutpg .teamshowcase .panelbody:last-child {
    margin-bottom: 0
}

.aboutpg .teamshowcase .listnum {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    margin-top: 24px
}

.aboutpg .teamshowcase .numitem {
    position: relative
}

.aboutpg .teamshowcase .numitem .bignumber {
    font-size: 66px;
    line-height: 1.2;
    color: #8c9c4f1f;
    margin: 0;
    position: absolute;
    top: -12px;
    left: 0;
    z-index: 0;
    pointer-events: none
}

.aboutpg .teamshowcase .numitem .itemtext {
    font-size: 16px;
    line-height: 1.6;
    margin: 0;
    color: #2a2a2a;
    position: relative;
    z-index: 1;
    padding-top: 48px
}

@media (max-width: 1365px) {
    .aboutpg .teamshowcase {
        padding: 72px 24px
    }

    .aboutpg .teamshowcase .leftpanel,
    .aboutpg .teamshowcase .rightpanel {
        padding: 24px
    }
}

@media (max-width: 767px) {
    .aboutpg .teamshowcase {
        padding: 48px 24px
    }

    .aboutpg .teamshowcase .splitgrid {
        grid-template-columns: 1fr
    }

    .aboutpg .teamshowcase .listnum {
        grid-template-columns: 1fr
    }
}

.aboutpg .gallerysection {
    padding: 96px 24px;
    background: #fff
}

.aboutpg .gallerysection .contain {
    max-width: 1440px;
    margin: 0 auto
}

.aboutpg .gallerysection .gallerygrid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px
}

.aboutpg .gallerysection .photocard {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 1px 3px 5px 1px #8c9c4f0f;
    transition: transform .5s ease-out, box-shadow .5s ease-out;
    perspective: 1000px
}

.aboutpg .gallerysection .photocard:hover {
    transform: scale(1.05) rotateY(3deg) rotateX(-2deg);
    box-shadow: 1px 9px 48px 1px #8c9c4f24
}

.aboutpg .gallerysection .photocard .imgwrap {
    width: 100%;
    height: 480px;
    overflow: hidden;
    position: relative
}

.aboutpg .gallerysection .photocard img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform .6s ease-out
}

.aboutpg .gallerysection .photocard:hover img {
    transform: scale(1.08)
}

.aboutpg .gallerysection .photocaption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(180deg, #0000 0%, #000000bf 100%);
    padding: 48px 24px 24px;
    color: #fff;
    font-size: 13px;
    line-height: 1.4;
    letter-spacing: .08em;
    text-transform: uppercase;
    opacity: 0;
    transition: opacity .5s ease-out
}

.aboutpg .gallerysection .photocard:hover .photocaption {
    opacity: 1
}

@media (max-width: 1365px) {
    .aboutpg .gallerysection {
        padding: 72px 24px
    }

    .aboutpg .gallerysection .gallerygrid {
        grid-template-columns: repeat(2, 1fr)
    }

    .aboutpg .gallerysection .photocard .imgwrap {
        height: 360px
    }
}

@media (max-width: 767px) {
    .aboutpg .gallerysection {
        padding: 48px 24px
    }

    .aboutpg .gallerysection .gallerygrid {
        grid-template-columns: 1fr;
        gap: 24px
    }

    .aboutpg .gallerysection .photocard .imgwrap {
        height: 420px
    }
}

@media (max-width: 374px) {
    .aboutpg .gallerysection .photocard .imgwrap {
        height: 320px
    }
}

.aboutpg .iconsequence {
    padding: 96px 24px;
    background: linear-gradient(180deg, #fff 0%, #F4F4F0 100%)
}

.aboutpg .iconsequence .contain {
    max-width: 1440px;
    margin: 0 auto
}

.aboutpg .iconsequence .iconrow {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 48px;
    flex-wrap: wrap
}

.aboutpg .iconsequence .iconbox {
    width: 96px;
    height: 96px;
    border-radius: 20px;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 1px 3px 5px 1px #8c9c4f0f;
    position: relative;
    animation: iconPulse 6s ease-in-out infinite
}

.aboutpg .iconsequence .iconbox:nth-child(1) {
    animation-delay: 0s
}

.aboutpg .iconsequence .iconbox:nth-child(2) {
    animation-delay: 1s
}

.aboutpg .iconsequence .iconbox:nth-child(3) {
    animation-delay: 2s
}

.aboutpg .iconsequence .iconbox:nth-child(4) {
    animation-delay: 3s
}

.aboutpg .iconsequence .iconbox:nth-child(5) {
    animation-delay: 4s
}

.aboutpg .iconsequence .iconbox:nth-child(6) {
    animation-delay: 5s
}

@keyframes iconPulse {

    0%,
    100% {
        background: #fff;
        box-shadow: 1px 3px 5px 1px #8c9c4f0f;
        transform: scale(1)
    }

    8.33% {
        background: linear-gradient(135deg, #8C9C4F 0%, #C7D3B4 100%);
        box-shadow: 1px 9px 48px 1px #8c9c4f24;
        transform: scale(1.15)
    }

    16.66% {
        background: #fff;
        box-shadow: 1px 3px 5px 1px #8c9c4f0f;
        transform: scale(1)
    }
}

.aboutpg .iconsequence .iconshape {
    width: 48px;
    height: 48px;
    border: 3px solid #8C9C4F;
    border-radius: 6px
}

.aboutpg .iconsequence .iconbox:nth-child(2) .iconshape {
    border-radius: 50%
}

.aboutpg .iconsequence .iconbox:nth-child(3) .iconshape {
    border-radius: 2px;
    transform: rotate(45deg)
}

.aboutpg .iconsequence .iconbox:nth-child(4) .iconshape {
    border-radius: 20px;
    width: 36px;
    height: 36px
}

.aboutpg .iconsequence .iconbox:nth-child(5) .iconshape {
    width: 0;
    height: 0;
    border: none;
    border-left: 24px solid transparent;
    border-right: 24px solid transparent;
    border-bottom: 42px solid #8C9C4F
}

.aboutpg .iconsequence .iconbox:nth-child(6) .iconshape {
    border-radius: 6px;
    width: 42px;
    height: 24px
}

@media (max-width: 1365px) {
    .aboutpg .iconsequence {
        padding: 72px 24px
    }

    .aboutpg .iconsequence .iconrow {
        gap: 24px
    }
}

@media (max-width: 767px) {
    .aboutpg .iconsequence {
        padding: 48px 24px
    }

    .aboutpg .iconsequence .iconbox {
        width: 72px;
        height: 72px
    }

    .aboutpg .iconsequence .iconshape {
        width: 36px;
        height: 36px;
        border-width: 2px
    }

    .aboutpg .iconsequence .iconbox:nth-child(4) .iconshape {
        width: 28px;
        height: 28px
    }

    .aboutpg .iconsequence .iconbox:nth-child(5) .iconshape {
        border-left-width: 18px;
        border-right-width: 18px;
        border-bottom-width: 32px
    }

    .aboutpg .iconsequence .iconbox:nth-child(6) .iconshape {
        width: 32px;
        height: 18px
    }
}

@media (max-width: 374px) {
    .aboutpg .iconsequence .iconrow {
        gap: 12px
    }

    .aboutpg .iconsequence .iconbox {
        width: 64px;
        height: 64px
    }
}

.contactpg {
    background: linear-gradient(135deg, #F4F4F0 0%, #fff 100%);
    max-width: 1440px;
    margin: 0 auto;
    padding: 0;
    position: relative
}

.contactpg::selection {
    background: #C7D3B4;
    color: #000
}

.contactpg .topzone {
    position: relative;
    padding: 96px 24px 48px;
    text-align: center;
    overflow: hidden
}

.contactpg .topzone::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 8px;
    background: linear-gradient(90deg, #8C9C4F 0%, #C7D3B4 50%, #8C9C4F 100%)
}

.contactpg .topzone::after {
    content: '';
    position: absolute;
    top: 24px;
    right: 0;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 0 0 80px 80px;
    border-color: transparent transparent #8c9c4f1f;
    pointer-events: none
}

.contactpg .maintitle {
    font-size: 66px;
    line-height: 1.2;
    color: #1b1b1b;
    margin: 0 0 48px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-shadow: 2px 4px 8px #8c9c4f26
}

.contactpg .herovisual {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 1px 9px 48px 1px #8c9c4f24
}

.contactpg .herovisual img {
    width: 100%;
    height: 520px;
    object-fit: cover;
    display: block
}

.contactpg .herovisual::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 60%;
    background: linear-gradient(180deg, transparent 0%, #8c9c4fd9 100%);
    pointer-events: none;
    z-index: 1
}

.contactpg .inforeach {
    padding: 96px 24px;
    background: radial-gradient(ellipse at center, #8C9C4F 0%, #C7D3B4 100%);
    position: relative
}

.contactpg .inforeach::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 100px 0 0 100px;
    border-color: transparent transparent transparent #f4f4f033;
    pointer-events: none
}

.contactpg .reachgrid {
    display: grid;
    grid-template-columns: 3fr 1fr;
    gap: 48px;
    max-width: 1200px;
    margin: 0 auto
}

.contactpg .reachprimary {
    background: #fff;
    padding: 48px;
    border-radius: 20px;
    box-shadow: 1px 4px 25px 1px #8c9c4f1c;
    position: relative
}

.contactpg .reachprimary::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 0 60px 60px 0;
    border-color: transparent #8C9C4F transparent transparent;
    border-radius: 0 20px 0 0
}

.contactpg .reachhead {
    font-size: 28px;
    line-height: 1.4;
    color: #1b1b1b;
    margin: 0 0 24px;
    font-weight: 600;
    text-shadow: 1px 2px 4px #8c9c4f1a
}

.contactpg .reachdesc {
    font-size: 16px;
    line-height: 1.6;
    color: #3a3a3a;
    margin: 0 0 48px
}

.contactpg .detailslist {
    list-style: none;
    padding: 0;
    margin: 0;
    counter-reset: detailnum
}

.contactpg .detailslist li {
    position: relative;
    padding: 24px 0 24px 96px;
    margin: 0 0 24px;
    border-bottom: 1px dashed #8c9c4f4d;
    counter-increment: detailnum
}

.contactpg .detailslist li:last-child {
    border-bottom: none;
    margin-bottom: 0
}

.contactpg .detailslist li::before {
    content: counter(detailnum, decimal-leading-zero);
    position: absolute;
    left: 0;
    top: 12px;
    font-size: 66px;
    line-height: 1;
    color: #8c9c4f26;
    font-weight: 700;
    pointer-events: none
}

.contactpg .detaillabel {
    font-size: 13px;
    line-height: 1.4;
    color: #8C9C4F;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin: 0 0 8px;
    font-weight: 600
}

.contactpg .detailvalue {
    font-size: 16px;
    line-height: 1.6;
    color: #1b1b1b;
    margin: 0;
    font-weight: 500
}

.contactpg .detailvalue a {
    color: #1b1b1b;
    text-decoration: none;
    transition: color .45s ease-out
}

.contactpg .detailvalue a:hover {
    color: #8C9C4F
}

.contactpg .reachside {
    display: flex;
    flex-direction: column;
    gap: 24px
}

.contactpg .quickbox {
    background: #fff;
    padding: 24px;
    border-radius: 6px;
    box-shadow: 1px 3px 5px 1px #8c9c4f0f;
    text-align: center;
    transition: transform .5s ease-out, box-shadow .5s ease-out;
    perspective: 1000px
}

.contactpg .quickbox:hover {
    transform: scale(1.08) rotateY(2deg) rotateX(-2deg);
    box-shadow: 1px 9px 48px 1px #8c9c4f24
}

.contactpg .quickicon {
    width: 48px;
    height: 48px;
    margin: 0 auto 12px;
    background: linear-gradient(135deg, #8C9C4F 0%, #C7D3B4 100%);
    border-radius: 2px;
    display: flex;
    align-items: center;
    justify-content: center
}

.contactpg .quickicon svg {
    width: 24px;
    height: 24px;
    fill: #fff
}

.contactpg .quicklabel {
    font-size: 13px;
    line-height: 1.4;
    color: #3a3a3a;
    margin: 0;
    font-weight: 600
}

.contactpg .formzone {
    padding: 96px 24px;
    background: #fff;
    position: relative
}

.contactpg .formzone::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80%;
    height: 100%;
    background-image: radial-gradient(circle at 20px 20px, #8c9c4f0a 2px, transparent 2px), radial-gradient(circle at 60px 60px, #c7d3b40a 2px, transparent 2px);
    background-size: 80px 80px;
    background-position: 0 0, 40px 40px;
    pointer-events: none;
    z-index: 0;
    transition: opacity .6s ease-out
}

.contactpg .formzone:hover::before {
    opacity: .5
}

.contactpg .formwrap {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    z-index: 1
}

.contactpg .formtitle {
    font-size: 28px;
    line-height: 1.4;
    color: #1b1b1b;
    margin: 0 0 12px;
    font-weight: 600;
    text-align: center;
    text-shadow: 1px 2px 4px #8c9c4f1a
}

.contactpg .formlead {
    font-size: 16px;
    line-height: 1.6;
    color: #3a3a3a;
    margin: 0 0 48px;
    text-align: center
}

.contactpg .contactform {
    background: #F4F4F0;
    padding: 48px;
    border-radius: 20px;
    box-shadow: 1px 4px 25px 1px #8c9c4f1c;
    position: relative
}

.contactpg .contactform::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 0 0 80px 80px;
    border-color: transparent transparent #8C9C4F;
    border-radius: 0 0 20px 0;
    pointer-events: none
}

.contactpg .formrow {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    margin: 0 0 24px
}

.contactpg .fieldwrap {
    display: flex;
    flex-direction: column;
    gap: 8px
}

.contactpg .fieldwrap.full {
    grid-column: 1 / -1
}

.contactpg .fieldlabel {
    font-size: 13px;
    line-height: 1.4;
    color: #1b1b1b;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px
}

.contactpg .fieldinput {
    padding: 12px 24px;
    font-size: 16px;
    line-height: 1.6;
    color: #1b1b1b;
    background: #fff;
    border: 2px solid transparent;
    border-radius: 6px;
    transition: border-color .4s ease-out, box-shadow .4s ease-out;
    outline: none
}

.contactpg .fieldinput::placeholder {
    color: #3a3a3a80;
    transition: opacity .35s ease-out
}

.contactpg .fieldinput:focus::placeholder {
    opacity: 0
}

.contactpg .fieldinput:focus {
    border-color: #8C9C4F;
    box-shadow: 0 0 0 4px #8c9c4f26
}

.contactpg .interestgroup {
    margin: 0 0 24px
}

.contactpg .interestgroup .fieldlabel {
    margin-bottom: 12px
}

.contactpg .interestgrid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px
}

.contactpg .checkwrap {
    position: relative;
    display: flex;
    align-items: center
}

.contactpg .checkwrap input[type="checkbox"] {
    position: absolute;
    opacity: 0;
    width: 0;
    height: 0
}

.contactpg .checkwrap label {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 24px;
    background: #fff;
    border: 2px solid transparent;
    border-radius: 6px;
    cursor: pointer;
    font-size: 16px;
    line-height: 1.6;
    color: #1b1b1b;
    transition: border-color .4s ease-out, background .4s ease-out, transform .4s ease-out;
    user-select: none
}

.contactpg .checkwrap label::before {
    content: '';
    width: 20px;
    height: 20px;
    border: 2px solid #8C9C4F;
    border-radius: 2px;
    background: #fff;
    transition: background .4s ease-out, border-color .4s ease-out;
    flex-shrink: 0
}

.contactpg .checkwrap input[type="checkbox"]:checked+label {
    border-color: #8C9C4F;
    background: #8c9c4f14
}

.contactpg .checkwrap input[type="checkbox"]:checked+label::before {
    background: #8C9C4F;
    border-color: #8C9C4F;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cpath fill='%23ffffff' d='M13 4L6 11L3 8'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: center;
    background-size: 14px
}

.contactpg .checkwrap:hover label {
    transform: scale(1.02)
}

.contactpg .privacywrap {
    margin: 0 0 24px;
    padding: 24px;
    background: #fff;
    border-radius: 6px;
    border: 2px dashed #8c9c4f4d
}

.contactpg .privacywrap input[type="checkbox"] {
    position: absolute;
    opacity: 0;
    width: 0;
    height: 0
}

.contactpg .privacywrap label {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    cursor: pointer;
    font-size: 13px;
    line-height: 1.6;
    color: #3a3a3a;
    user-select: none
}

.contactpg .privacywrap label::before {
    content: '';
    width: 20px;
    height: 20px;
    border: 2px solid #8C9C4F;
    border-radius: 2px;
    background: #fff;
    transition: background .4s ease-out, border-color .4s ease-out;
    flex-shrink: 0;
    margin-top: 2px
}

.contactpg .privacywrap input[type="checkbox"]:checked+label::before {
    background: #8C9C4F;
    border-color: #8C9C4F;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cpath fill='%23ffffff' d='M13 4L6 11L3 8'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: center;
    background-size: 14px
}

.contactpg .privacywrap a {
    color: #8C9C4F;
    text-decoration: none;
    font-weight: 600;
    transition: color .35s ease-out
}

.contactpg .privacywrap a:hover {
    color: #6a7a3c
}

.contactpg .submitbtn {
    width: 100%;
    padding: 24px 48px;
    font-size: 16px;
    line-height: 1.2;
    color: #fff;
    background: linear-gradient(135deg, #8C9C4F 0%, #C7D3B4 100%);
    border: none;
    border-radius: 6px;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 700;
    cursor: pointer;
    box-shadow: 1px 4px 25px 1px #8c9c4f1c;
    transition: transform .5s ease-out, box-shadow .5s ease-out;
    position: relative;
    overflow: hidden
}

.contactpg .submitbtn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: #fff3;
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width .6s ease-out, height .6s ease-out
}

.contactpg .submitbtn:hover {
    transform: scale(1.05);
    box-shadow: 1px 9px 48px 1px #8c9c4f24
}

.contactpg .submitbtn:hover::before {
    width: 400px;
    height: 400px
}

.contactpg .submitbtn:active {
    transform: scale(0.98)
}

.contactpg .codeblock {
    margin: 48px 0 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    background: #1b1b1b;
    padding: 24px;
    border-radius: 6px;
    box-shadow: 1px 4px 25px 1px #8c9c4f1c
}

.contactpg .codepanel {
    background: #2a2a2a;
    padding: 24px;
    border-radius: 2px;
    position: relative
}

.contactpg .codepanel::before {
    content: attr(data-label);
    position: absolute;
    top: -12px;
    left: 12px;
    font-size: 13px;
    line-height: 1.4;
    color: #8C9C4F;
    background: #1b1b1b;
    padding: 4px 12px;
    border-radius: 2px;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600
}

.contactpg .codepanel pre {
    margin: 0;
    font-size: 13px;
    line-height: 1.9;
    color: #C7D3B4;
    font-family: 'Courier New', monospace;
    overflow-x: auto
}

.contactpg .codepanel code {
    display: block;
    white-space: pre
}

@keyframes subtleShake {

    0%,
    100% {
        transform: translateX(0)
    }

    25% {
        transform: translateX(-4px)
    }

    75% {
        transform: translateX(4px)
    }
}

.contactpg .formtitle {
    animation: subtleShake .5s ease-out 1s 1
}

@media (max-width: 1366px) {
    .contactpg .maintitle {
        font-size: 52px
    }

    .contactpg .herovisual img {
        height: 420px
    }

    .contactpg .reachgrid {
        grid-template-columns: 1fr
    }

    .contactpg .reachside {
        flex-direction: row
    }
}

@media (max-width: 768px) {
    .contactpg .maintitle {
        font-size: 42px
    }

    .contactpg .herovisual img {
        height: 320px
    }

    .contactpg .topzone {
        padding: 48px 24px 24px
    }

    .contactpg .inforeach {
        padding: 48px 24px
    }

    .contactpg .reachprimary {
        padding: 24px
    }

    .contactpg .detailslist li {
        padding: 12px 0 12px 72px
    }

    .contactpg .detailslist li::before {
        font-size: 48px
    }

    .contactpg .reachside {
        flex-direction: column
    }

    .contactpg .formzone {
        padding: 48px 24px
    }

    .contactpg .contactform {
        padding: 24px
    }

    .contactpg .formrow {
        grid-template-columns: 1fr;
        gap: 12px
    }

    .contactpg .interestgrid {
        grid-template-columns: 1fr
    }

    .contactpg .codeblock {
        grid-template-columns: 1fr;
        gap: 12px
    }
}

@media (max-width: 375px) {
    .contactpg .maintitle {
        font-size: 32px
    }

    .contactpg .herovisual img {
        height: 240px
    }

    .contactpg .reachhead,
    .contactpg .formtitle {
        font-size: 24px
    }

    .contactpg .detailslist li {
        padding: 8px 0 8px 56px
    }

    .contactpg .detailslist li::before {
        font-size: 36px
    }
}

.successpage {
    max-width: 1440px;
    margin: 0 auto;
    background: linear-gradient(135deg, #F4F4F0 0%, #fff 100%);
    padding: 96px 24px;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center
}

.successpage .confirmwrap {
    background: #fff;
    border-radius: 20px;
    box-shadow: 1px 9px 48px 1px #8c9c4f24;
    padding: 96px 48px;
    text-align: center;
    max-width: 720px;
    width: 100%;
    position: relative;
    overflow: hidden
}

.successpage .confirmwrap::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(ellipse at 50% 50%, #c7d3b426 0%, transparent 70%);
    pointer-events: none;
    z-index: 1
}

.successpage .confirmcontent {
    position: relative;
    z-index: 2
}

.successpage .iconcheck {
    width: 120px;
    height: 120px;
    margin: 0 auto 48px;
    border-radius: 50%;
    background: linear-gradient(135deg, #8C9C4F 0%, #C7D3B4 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 1px 4px 25px 1px #8c9c4f1c;
    transition: transform .5s ease-out
}

.successpage .confirmwrap:hover .iconcheck {
    transform: scale(1.08)
}

.successpage .iconcheck svg {
    width: 64px;
    height: 64px;
    stroke: #fff;
    stroke-width: 3;
    fill: none;
    stroke-linecap: round;
    stroke-linejoin: round
}

.successpage .maintitle {
    font-size: 66px;
    line-height: 1.2;
    color: #1a1a1a;
    margin: 0 0 24px;
    text-shadow: 2px 2px 4px #8c9c4f14
}

.successpage .messagebody {
    font-size: 16px;
    line-height: 1.6;
    color: #3a3a3a;
    margin: 0 0 48px
}

.successpage .detailsbox {
    background: #F4F4F0;
    border-radius: 6px;
    padding: 24px;
    margin: 0 0 48px;
    text-align: left
}

.successpage .detailsbox p {
    font-size: 13px;
    line-height: 1.6;
    color: #4a4a4a;
    margin: 0 0 12px
}

.successpage .detailsbox p:last-child {
    margin: 0
}

.successpage .detailsbox strong {
    color: #2a2a2a;
    font-weight: 600
}

.successpage .actiongroup {
    display: flex;
    gap: 12px;
    justify-content: center;
    flex-wrap: wrap
}

.successpage .btnprimary {
    background: linear-gradient(135deg, #8C9C4F 0%, #a0b060 100%);
    color: #fff;
    font-size: 13px;
    line-height: 1.4;
    text-transform: uppercase;
    letter-spacing: .08em;
    padding: 12px 48px;
    border: none;
    border-radius: 2px;
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
    box-shadow: 1px 3px 5px 1px #8c9c4f0f;
    transition: transform .4s ease-out, box-shadow .4s ease-out
}

.successpage .btnprimary:hover {
    transform: scale(1.06);
    box-shadow: 1px 4px 25px 1px #8c9c4f1c
}

.successpage .btnsecondary {
    background: transparent;
    color: #8C9C4F;
    font-size: 13px;
    line-height: 1.4;
    text-transform: uppercase;
    letter-spacing: .08em;
    padding: 12px 48px;
    border: 2px solid #8C9C4F;
    border-radius: 2px;
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
    transition: background .5s ease-out, color .5s ease-out
}

.successpage .btnsecondary:hover {
    background: #8C9C4F;
    color: #fff
}

@media (max-width: 768px) {
    .successpage {
        padding: 48px 12px
    }

    .successpage .confirmwrap {
        padding: 48px 24px
    }

    .successpage .iconcheck {
        width: 96px;
        height: 96px;
        margin: 0 auto 24px
    }

    .successpage .iconcheck svg {
        width: 48px;
        height: 48px
    }

    .successpage .maintitle {
        font-size: 28px;
        margin: 0 0 12px
    }

    .successpage .messagebody {
        margin: 0 0 24px
    }

    .successpage .detailsbox {
        padding: 12px;
        margin: 0 0 24px
    }

    .successpage .actiongroup {
        flex-direction: column;
        gap: 8px
    }

    .successpage .btnprimary,
    .successpage .btnsecondary {
        width: 100%;
        padding: 12px 24px
    }
}

@media (max-width: 375px) {
    .successpage .maintitle {
        font-size: 28px
    }

    .successpage .iconcheck {
        width: 80px;
        height: 80px
    }

    .successpage .iconcheck svg {
        width: 40px;
        height: 40px
    }
}