* {
    box-sizing: border-box;
}

html {
    scroll-behavior: auto;
}

body {
    margin: 0;
    -webkit-text-size-adjust: 100%;
    word-break: break-word;
    overflow-wrap: break-word;
}

:focus-visible {
    outline: 3px solid #33BF5D;
    outline-offset: 3px;
    transition: outline-offset 0.38s cubic-bezier(0.34, 1.2, 0.64, 1);
}

.brand-bar {
    background: linear-gradient(135deg, #1a7a3a 0%, #33BF5D 55%, #2da050 100%);
    padding: 32px 48px 0 48px;
    position: relative;
}

.brand-bar__inner {
    max-width: 1320px;
    margin: 0 auto;
    display: flex;
    align-items: flex-start;
    gap: 32px;
}

.brand-bar__logo-box {
    background-color: #ffffff;
    border: 2px solid rgba(51, 191, 93, 0.25);
    box-shadow: 0 3px 3px -1px rgba(51, 191, 93, 0.07), 0 7px 20px -1px rgba(51, 191, 93, 0.11);
    padding: 8px;
    border-radius: 3px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.brand-bar__logo-box img {
    width: 75px;
    height: 75px;
    object-fit: contain;
    display: block;
}

.brand-bar__identity {
    display: flex;
    flex-direction: column;
    gap: 8px;
    padding-top: 8px;
}

.brand-bar__name {
    font-family: 'Literata', serif;
    font-size: 44px;
    font-weight: 700;
    line-height: 1.2;
    color: #ffffff;
    letter-spacing: 0;
}

.brand-bar__tagline {
    font-family: 'Literata', serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.55;
    color: rgba(255, 255, 255, 0.88);
}

.brand-bar__accent {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 320px;
    height: 100%;
    background: linear-gradient(to left, rgba(220, 171, 197, 0.18) 0%, transparent 100%);
    pointer-events: none;
    border-radius: 0;
    overflow: hidden;
}

.site-nav {
    background-color: #ffffff;
    border-top: 3px solid #DCABC5;
    box-shadow: 0 7px 20px -1px rgba(51, 191, 93, 0.11);
}

.site-nav__inner {
    max-width: 1320px;
    margin: 0 auto;
    padding: 0 48px;
    display: flex;
    align-items: stretch;
    flex-wrap: wrap;
}

.nav-item {
    position: relative;
}

.nav-item__link {
    font-family: 'Literata', serif;
    font-size: 16px;
    font-weight: 700;
    line-height: 1.55;
    color: #1a4a2a;
    text-decoration: none;
    display: flex;
    align-items: center;
    padding: 16px 32px;
    min-height: 44px;
    transition: color 0.35s cubic-bezier(0.34, 1.2, 0.64, 1), background-color 0.35s cubic-bezier(0.34, 1.2, 0.64, 1);
    border-radius: 0;
    white-space: nowrap;
}

.nav-item__link:hover,
.nav-item__link:focus-visible {
    color: #33BF5D;
    background-color: rgba(51, 191, 93, 0.07);
    outline: none;
}

.nav-item__link--active {
    color: #33BF5D;
    border-bottom: 3px solid #33BF5D;
}

.nav-item:hover .nav-drop,
.nav-item:focus-within .nav-drop {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0px);
}

.nav-drop {
    position: absolute;
    top: 100%;
    left: 0;
    background-color: #ffffff;
    border: 2px solid #E3E6E5;
    border-top: 3px solid #33BF5D;
    box-shadow: 0 10px 60px -1px rgba(51, 191, 93, 0.10);
    border-radius: 0 0 3px 3px;
    min-width: 260px;
    opacity: 0;
    pointer-events: none;
    transform: translateY(-8px);
    transition: opacity 0.38s ease-in-out, transform 0.38s cubic-bezier(0.34, 1.2, 0.64, 1);
    z-index: 200;
}

.nav-drop__link {
    font-family: 'Literata', serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.55;
    color: #1a4a2a;
    text-decoration: none;
    display: block;
    padding: 16px 32px;
    min-height: 44px;
    transition: color 0.32s ease-in-out, background-color 0.32s ease-in-out;
}

.nav-drop__link:hover,
.nav-drop__link:focus-visible {
    color: #33BF5D;
    background-color: rgba(51, 191, 93, 0.07);
    outline: none;
}

.site-footer {
    background: linear-gradient(160deg, #1a4a2a 0%, #0f2e1a 60%, #1a2e24 100%);
    position: relative;
    overflow: hidden;
}

.site-footer__bg-shape {
    position: absolute;
    top: -48px;
    right: -96px;
    width: 480px;
    height: 480px;
    background: radial-gradient(circle at 70% 30%, rgba(220, 171, 197, 0.12) 0%, transparent 70%);
    pointer-events: none;
    border-radius: 50%;
}

.site-footer__top {
    max-width: 1320px;
    margin: 0 auto;
    padding: 48px 48px 32px 48px;
    display: flex;
    align-items: center;
    gap: 32px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.site-footer__logo-box {
    background-color: #ffffff;
    border: 2px solid rgba(220, 171, 197, 0.3);
    box-shadow: 0 3px 3px -1px rgba(220, 171, 197, 0.07), 0 7px 20px -1px rgba(220, 171, 197, 0.11);
    padding: 8px;
    border-radius: 3px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.site-footer__logo-box img {
    width: 75px;
    height: 75px;
    object-fit: contain;
    display: block;
}

.site-footer__brand-name {
    font-family: 'Literata', serif;
    font-size: 32px;
    font-weight: 700;
    line-height: 1.2;
    color: #ffffff;
}

.site-footer__bento {
    max-width: 1320px;
    margin: 0 auto;
    padding: 48px 48px 32px 48px;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 32px;
    align-items: start;
}

.bento-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    padding: 32px;
    box-shadow: 0 3px 3px -1px rgba(51, 191, 93, 0.07);
}

.bento-card--tall {
    padding: 48px 32px;
}

.bento-card--accent {
    background: rgba(220, 171, 197, 0.08);
    border-color: rgba(220, 171, 197, 0.18);
}

.bento-card__label {
    font-family: 'Literata', serif;
    font-size: 16px;
    font-weight: 700;
    line-height: 1.2;
    color: #DCABC5;
    margin: 0 0 16px 0;
    text-transform: uppercase;
    letter-spacing: 0;
}

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

.bento-card__nav-link {
    font-family: 'Literata', serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.55;
    color: rgba(255, 255, 255, 0.78);
    text-decoration: none;
    display: inline-block;
    padding: 8px 0;
    min-height: 44px;
    transition: color 0.42s cubic-bezier(0.34, 1.2, 0.64, 1);
}

.bento-card__nav-link:hover,
.bento-card__nav-link:focus-visible {
    color: #33BF5D;
    outline: none;
}

.bento-card__contact-item {
    font-family: 'Literata', serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.55;
    color: rgba(255, 255, 255, 0.78);
    margin: 0 0 8px 0;
}

.bento-card__contact-link {
    color: rgba(255, 255, 255, 0.88);
    text-decoration: none;
    transition: color 0.38s ease-in-out;
}

.bento-card__contact-link:hover,
.bento-card__contact-link:focus-visible {
    color: #33BF5D;
    outline: none;
}

.bento-card__address {
    font-family: 'Literata', serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.68);
    margin: 0;
    font-style: normal;
}

.site-footer__bottom {
    max-width: 1320px;
    margin: 0 auto;
    padding: 32px 48px 48px 48px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 16px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-copy {
    font-family: 'Literata', serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.55;
    color: rgba(255, 255, 255, 0.5);
    margin: 0;
}

.footer-copy strong {
    color: rgba(255, 255, 255, 0.7);
    font-weight: 700;
}

.consent-notice {
    position: fixed;
    top: 16px;
    left: 0;
    right: 0;
    margin: 0 auto;
    width: 480px;
    max-width: calc(100vw - 32px);
    background-color: #ffffff;
    border: 2px solid #E3E6E5;
    border-top: 4px solid #33BF5D;
    border-radius: 3px;
    box-shadow: 0 10px 60px -1px rgba(51, 191, 93, 0.10);
    padding: 32px;
    z-index: 1500;
    display: none;
}

.consent-notice__text {
    font-family: 'Literata', serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.55;
    color: #1a4a2a;
    margin: 0 0 16px 0;
}

.consent-notice__actions {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
}

.consent-btn--primary {
    font-family: 'Literata', serif;
    font-size: 16px;
    font-weight: 700;
    line-height: 1.2;
    color: #ffffff;
    background: linear-gradient(135deg, #33BF5D 0%, #2da050 100%);
    border: 2px solid #33BF5D;
    border-radius: 3px;
    padding: 8px 32px;
    min-height: 44px;
    cursor: pointer;
    transition: background 0.4s cubic-bezier(0.34, 1.2, 0.64, 1), border-color 0.4s cubic-bezier(0.34, 1.2, 0.64, 1);
    position: relative;
    overflow: hidden;
}

.consent-btn--primary:hover {
    background: linear-gradient(135deg, #2da050 0%, #33BF5D 100%);
}

.consent-btn--primary:focus-visible {
    outline: 3px solid #33BF5D;
    outline-offset: 3px;
}

.consent-btn--secondary {
    font-family: 'Literata', serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.2;
    color: #1a4a2a;
    background: transparent;
    border: 2px solid #E3E6E5;
    border-radius: 3px;
    padding: 8px 32px;
    min-height: 44px;
    cursor: pointer;
    transition: border-color 0.38s ease-in-out, color 0.38s ease-in-out;
}

.consent-btn--secondary:hover {
    border-color: #33BF5D;
    color: #33BF5D;
}

.consent-btn--secondary:focus-visible {
    outline: 3px solid #33BF5D;
    outline-offset: 3px;
}

.pref-toggle {
    position: fixed;
    bottom: 32px;
    right: 32px;
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, #33BF5D 0%, #2da050 100%);
    border: none;
    border-radius: 3px;
    box-shadow: 0 7px 20px -1px rgba(51, 191, 93, 0.11);
    cursor: pointer;
    z-index: 1400;
    display: none;
    align-items: center;
    justify-content: center;
    transition: box-shadow 0.38s ease-in-out;
}

.pref-toggle:hover {
    box-shadow: 0 10px 60px -1px rgba(51, 191, 93, 0.10);
}

.pref-toggle:focus-visible {
    outline: 3px solid #33BF5D;
    outline-offset: 3px;
}

.pref-toggle__icon {
    width: 22px;
    height: 22px;
    display: block;
}

@media (max-width: 1024px) {
    .site-footer__bento {
        grid-template-columns: 1fr 1fr;
    }

    .brand-bar {
        padding: 32px 32px 0 32px;
    }

    .site-nav__inner {
        padding: 0 32px;
    }

    .site-footer__top,
    .site-footer__bottom {
        padding-left: 32px;
        padding-right: 32px;
    }

    .site-footer__bento {
        padding-left: 32px;
        padding-right: 32px;
    }
}

@media (max-width: 720px) {
    .site-footer__bento {
        grid-template-columns: 1fr;
    }

    .brand-bar__name {
        font-size: 32px;
    }

    .brand-bar {
        padding: 32px 16px 0 16px;
    }

    .site-nav__inner {
        padding: 0 16px;
    }

    .nav-item__link {
        padding: 16px 16px;
    }

    .site-footer__top,
    .site-footer__bottom,
    .site-footer__bento {
        padding-left: 16px;
        padding-right: 16px;
    }

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

    .consent-notice {
        width: calc(100vw - 32px);
    }
}

.rules-section {
    max-width: 1320px;
    margin: 0 auto;
    padding: 96px 48px;
}

.rules-section h1 {
    font-size: 44px;
    line-height: 1.2;
    margin-bottom: 48px;
    color: #1b2320;
    padding-bottom: 16px;
    border-bottom: 3px solid #33BF5D;
}

.rules-section h2 {
    font-size: 32px;
    line-height: 1.2;
    margin-top: 48px;
    margin-bottom: 16px;
    color: #1b2320;
}

.rules-section h3 {
    font-size: 24px;
    line-height: 1.55;
    margin-top: 32px;
    margin-bottom: 16px;
    color: #2a3530;
}

.rules-section h4 {
    font-size: 19px;
    line-height: 1.55;
    margin-top: 32px;
    margin-bottom: 8px;
    color: #2a3530;
}

.rules-section h5 {
    font-size: 16px;
    line-height: 1.55;
    margin-top: 16px;
    margin-bottom: 8px;
    color: #3a4540;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.rules-section h6 {
    font-size: 16px;
    line-height: 1.55;
    margin-top: 16px;
    margin-bottom: 8px;
    color: #3a4540;
}

.rules-section p {
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 16px;
    color: #2c3530;
}

.rules-section ul {
    margin-top: 8px;
    margin-bottom: 16px;
    padding-left: 32px;
    list-style: none;
}

.rules-section ol {
    margin-top: 8px;
    margin-bottom: 16px;
    padding-left: 32px;
    list-style: none;
    counter-reset: policy-counter;
}

.rules-section ul li {
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 8px;
    color: #2c3530;
    position: relative;
    padding-left: 16px;
}

.rules-section ul li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 12px;
    width: 6px;
    height: 6px;
    background-color: #33BF5D;
    border-radius: 0px;
    transform: rotate(45deg);
}

.rules-section ol li {
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 8px;
    color: #2c3530;
    position: relative;
    padding-left: 16px;
    counter-increment: policy-counter;
}

.rules-section ol li::before {
    content: counter(policy-counter) ".";
    position: absolute;
    left: -16px;
    top: 0;
    font-size: 16px;
    line-height: 1.8;
    color: #33BF5D;
    font-weight: 700;
    min-width: 24px;
}

.rules-section ul ul,
.rules-section ol ol,
.rules-section ul ol,
.rules-section ol ul {
    margin-top: 8px;
    margin-bottom: 8px;
    padding-left: 32px;
}

.rules-section ul ul li::before {
    background-color: #DCABC5;
    width: 5px;
    height: 5px;
    transform: none;
    border-radius: 0px;
    top: 11px;
}

.rules-section em,
.rules-section i {
    font-style: italic;
    color: #2a3530;
}

.rules-section strong em,
.rules-section em strong {
    color: #1b2320;
}

.rules-section hr {
    border: none;
    border-top: 2px solid #E3E6E5;
    margin-top: 48px;
    margin-bottom: 48px;
    position: relative;
}

.rules-section hr::after {
    content: "";
    display: block;
    width: 48px;
    height: 2px;
    background-color: #33BF5D;
    position: absolute;
    top: -2px;
    left: 0;
}

.rules-section div {
    margin-bottom: 16px;
}

.rules-section div p:last-child {
    margin-bottom: 0;
}

.rules-section a {
    color: #1e8c42;
    text-decoration: underline;
    text-decoration-color: rgba(51, 191, 93, 0.45);
    text-underline-offset: 3px;
    transition: color 0.38s cubic-bezier(0.34, 1.2, 0.64, 1), text-decoration-color 0.38s ease-in-out;
}

.rules-section a:hover {
    color: #33BF5D;
    text-decoration-color: #33BF5D;
}

.rules-section blockquote {
    margin: 32px 0;
    padding: 16px 32px;
    background-color: #f4f7f5;
    border-radius: 3px;
    box-shadow: inset 6px 0 0 0 #33BF5D;
}

.rules-section blockquote p {
    font-size: 16px;
    line-height: 1.8;
    color: #2a3530;
    margin-bottom: 0;
}

.rules-section table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 32px;
    margin-bottom: 32px;
    font-size: 16px;
    line-height: 1.55;
}

.rules-section table th {
    background-color: #E3E6E5;
    color: #1b2320;
    padding: 16px;
    text-align: left;
    font-weight: 700;
    border-radius: 0px;
}

.rules-section table td {
    padding: 16px;
    color: #2c3530;
    border-bottom: 1px solid #E3E6E5;
}

.rules-section table tr:last-child td {
    border-bottom: none;
}

.rules-section table tr:nth-child(even) td {
    background-color: rgba(227, 230, 229, 0.35);
}

@media (max-width: 900px) {
    .rules-section {
        padding: 48px 32px;
    }

    .rules-section h1 {
        font-size: 32px;
    }

    .rules-section h2 {
        font-size: 24px;
    }

    .rules-section h3 {
        font-size: 19px;
    }
}

@media (max-width: 600px) {
    .rules-section {
        padding: 48px 16px;
    }

    .rules-section h1 {
        font-size: 24px;
        margin-bottom: 32px;
    }

    .rules-section h2 {
        font-size: 19px;
        margin-top: 32px;
    }

    .rules-section h3 {
        font-size: 16px;
        margin-top: 32px;
    }

    .rules-section ul,
    .rules-section ol {
        padding-left: 16px;
    }

    .rules-section hr {
        margin-top: 32px;
        margin-bottom: 32px;
    }

    .rules-section table {
        display: block;
        overflow-x: auto;
    }
}

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

.phlt .split-screen {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-block-size: 560px;
    position: relative;
}

.phlt .split-screen__left {
    background: #1B3A2D;
    padding: 96px 48px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.phlt .split-screen__left::before {
    content: "\201C";
    font-size: 320px;
    color: #33BF5D;
    opacity: 0.08;
    position: absolute;
    top: -48px;
    left: 16px;
    line-height: 1.2;
    pointer-events: none;
    font-family: Georgia, serif;
}

.phlt .split-screen__tag {
    display: inline-block;
    background: #33BF5D;
    color: #ffffff;
    font-size: 16px;
    line-height: 1.2;
    padding: 8px 16px;
    border-radius: 3px;
    margin-bottom: 32px;
    font-weight: 600;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.phlt .split-screen__heading {
    font-size: 60px;
    line-height: 1.2;
    color: #ffffff;
    margin: 0 0 32px 0;
    font-weight: 700;
}

.phlt .split-screen__heading span {
    display: block;
}

.phlt .split-screen__desc {
    font-size: 19px;
    line-height: 1.55;
    color: #DCABC5;
    margin: 0 0 48px 0;
    max-width: 420px;
}

.phlt .split-screen__cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, #33BF5D 0%, #2aa050 100%);
    color: #ffffff;
    font-size: 16px;
    font-weight: 600;
    padding: 16px 32px;
    border-radius: 3px;
    text-decoration: none;
    border: none;
    cursor: pointer;
    box-shadow: 0 7px 20px -1px rgba(51, 191, 93, 0.11);
    transition: box-shadow 0.38s cubic-bezier(0.34, 1.2, 0.64, 1), transform 0.38s cubic-bezier(0.34, 1.2, 0.64, 1);
    align-self: flex-start;
    position: relative;
    overflow: hidden;
}

.phlt .split-screen__cta:hover {
    box-shadow: 0 10px 60px -1px rgba(51, 191, 93, 0.10);
    transform: translateY(-2px);
}

.phlt .split-screen__cta:active {
    transform: translateY(0);
}

.phlt .split-screen__right {
    position: relative;
    overflow: hidden;
}

.phlt .split-screen__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    filter: blur(0px) saturate(0.9);
    transition: filter 0.45s ease-in-out;
}

.phlt .split-screen__img-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(160deg, rgba(51, 191, 93, 0.18) 0%, rgba(220, 171, 197, 0.22) 100%);
    pointer-events: none;
}

.phlt .split-screen__stat-row {
    position: absolute;
    bottom: 32px;
    left: 32px;
    right: 32px;
    display: flex;
    flex-direction: row;
    gap: 16px;
}

.phlt .stat-pill {
    background: rgba(255, 255, 255, 0.92);
    border-radius: 12px;
    padding: 16px;
    flex: 1;
    box-shadow: 0 7px 20px -1px rgba(51, 191, 93, 0.11);
}

.phlt .stat-pill__num {
    font-size: 32px;
    line-height: 1.2;
    font-weight: 700;
    color: #1B3A2D;
    display: block;
}

.phlt .stat-pill__label {
    font-size: 16px;
    line-height: 1.55;
    color: #3d5a4a;
    display: block;
}

.phlt .mosaic-grid {
    max-width: 1320px;
    margin: 0 auto;
    padding: 96px 48px;
}

.phlt .mosaic-grid__header {
    display: flex;
    flex-direction: row;
    align-items: flex-end;
    justify-content: space-between;
    gap: 48px;
    margin-bottom: 48px;
}

.phlt .mosaic-grid__heading {
    font-size: 44px;
    line-height: 1.2;
    color: #1B3A2D;
    margin: 0;
    font-weight: 700;
    max-width: 480px;
}

.phlt .mosaic-grid__heading span {
    display: block;
}

.phlt .mosaic-grid__sub {
    font-size: 19px;
    line-height: 1.55;
    color: #3d5a4a;
    max-width: 380px;
    margin: 0;
}

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

.phlt .mosaic__card {
    background: #ffffff;
    border-radius: 12px;
    padding: 32px;
    box-shadow: 0 3px 3px -1px rgba(51, 191, 93, 0.07);
    transition: box-shadow 0.35s cubic-bezier(0.34, 1.2, 0.64, 1), transform 0.35s cubic-bezier(0.34, 1.2, 0.64, 1);
    display: flex;
    flex-direction: column;
    gap: 16px;
    border: 1.5px solid #E3E6E5;
}

.phlt .mosaic__card:hover {
    box-shadow: 0 10px 60px -1px rgba(51, 191, 93, 0.10);
    transform: translateY(-3px);
}

.phlt .mosaic__card--accent {
    grid-column: span 2;
    background: linear-gradient(200deg, #1B3A2D 0%, #2a5240 100%);
    border-color: transparent;
}

.phlt .mosaic__icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: #E3E6E5;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.phlt .mosaic__card--accent .mosaic__icon {
    background: rgba(51, 191, 93, 0.18);
}

.phlt .mosaic__icon svg {
    width: 24px;
    height: 24px;
}

.phlt .mosaic__card-title {
    font-size: 24px;
    line-height: 1.2;
    font-weight: 700;
    color: #1B3A2D;
    margin: 0;
}

.phlt .mosaic__card--accent .mosaic__card-title {
    color: #ffffff;
}

.phlt .mosaic__card-text {
    font-size: 16px;
    line-height: 1.55;
    color: #3d5a4a;
    margin: 0;
}

.phlt .mosaic__card--accent .mosaic__card-text {
    color: #DCABC5;
}

.phlt .mosaic__card-num {
    font-size: 44px;
    line-height: 1.2;
    font-weight: 700;
    color: #33BF5D;
    margin: 0;
}

.phlt .gradient-band {
    background: linear-gradient(0deg, #ffffff 0%, #1B3A2D 100%);
    padding: 96px 0 48px 0;
    position: relative;
}

.phlt .gradient-band__inner {
    max-width: 1320px;
    margin: 0 auto;
    padding: 0 48px;
}

.phlt .gradient-band__row {
    display: flex;
    flex-direction: row;
    gap: 48px;
    align-items: flex-start;
}

.phlt .gradient-band__col-left {
    flex: 0 0 340px;
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.phlt .gradient-band__col-right {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.phlt .gradient-band__heading {
    font-size: 44px;
    line-height: 1.2;
    color: #ffffff;
    font-weight: 700;
    margin: 0;
}

.phlt .gradient-band__heading span {
    display: block;
}

.phlt .gradient-band__body {
    font-size: 16px;
    line-height: 1.55;
    color: #DCABC5;
    margin: 0;
}

.phlt .gradient-band__link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #33BF5D;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    transition: gap 0.32s cubic-bezier(0.34, 1.2, 0.64, 1);
}

.phlt .gradient-band__link:hover {
    gap: 16px;
}

.phlt .gradient-band__link svg {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
}

.phlt .step-list {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.phlt .step-item {
    display: flex;
    flex-direction: row;
    gap: 32px;
    align-items: flex-start;
    padding: 32px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    position: relative;
    transition: background 0.38s ease-in-out;
}

.phlt .step-item:last-child {
    border-bottom: none;
}

.phlt .step-item__num {
    font-size: 44px;
    line-height: 1.2;
    font-weight: 700;
    color: rgba(51, 191, 93, 0.25);
    flex-shrink: 0;
    width: 64px;
    transition: color 0.38s cubic-bezier(0.34, 1.2, 0.64, 1);
}

.phlt .step-item:hover .step-item__num {
    color: #33BF5D;
}

.phlt .step-item__body {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.phlt .step-item__title {
    font-size: 24px;
    line-height: 1.2;
    font-weight: 700;
    color: #ffffff;
    margin: 0;
}

.phlt .step-item__desc {
    font-size: 16px;
    line-height: 1.55;
    color: #DCABC5;
    margin: 0;
}

.phlt .step-item__tag {
    display: inline-block;
    background: rgba(51, 191, 93, 0.12);
    color: #33BF5D;
    font-size: 16px;
    padding: 8px 16px;
    border-radius: 3px;
    font-weight: 600;
    margin-top: 8px;
    align-self: flex-start;
    transition: background 0.32s ease-in-out;
}

.phlt .step-item:hover .step-item__tag {
    background: rgba(51, 191, 93, 0.22);
}

.phlt .circles-deco {
    position: absolute;
    top: 0;
    right: 0;
    width: 320px;
    height: 320px;
    pointer-events: none;
    overflow: hidden;
    border-radius: 0;
}

.phlt .circles-deco__c {
    position: absolute;
    border-radius: 50%;
    border: 2px solid rgba(51, 191, 93, 0.12);
}

.phlt .circles-deco__c--a {
    width: 280px;
    height: 280px;
    top: -80px;
    right: -80px;
}

.phlt .circles-deco__c--b {
    width: 200px;
    height: 200px;
    top: -40px;
    right: -40px;
    border-color: rgba(220, 171, 197, 0.10);
}

.phlt .circles-deco__c--c {
    width: 120px;
    height: 120px;
    top: 0;
    right: 0;
    border-color: rgba(51, 191, 93, 0.08);
}

@keyframes phlt-mask-reveal {
    from {
        clip-path: inset(0 50% 0 50%);
        opacity: 0.4;
    }

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

.phlt .split-screen {
    animation: phlt-mask-reveal 0.45s cubic-bezier(0.34, 1.2, 0.64, 1) both;
}

@media (max-width: 1024px) {
    .phlt .split-screen {
        grid-template-columns: 1fr;
    }

    .phlt .split-screen__right {
        min-height: 340px;
    }

    .phlt .mosaic {
        grid-template-columns: 1fr 1fr;
    }

    .phlt .mosaic__card--accent {
        grid-column: span 2;
    }

    .phlt .gradient-band__row {
        flex-direction: column;
    }

    .phlt .gradient-band__col-left {
        flex: none;
    }
}

@media (max-width: 768px) {
    .phlt .split-screen__heading {
        font-size: 44px;
    }

    .phlt .split-screen__left {
        padding: 48px 32px;
    }

    .phlt .mosaic {
        grid-template-columns: 1fr;
    }

    .phlt .mosaic__card--accent {
        grid-column: span 1;
    }

    .phlt .mosaic-grid {
        padding: 48px 32px;
    }

    .phlt .mosaic-grid__header {
        flex-direction: column;
        align-items: flex-start;
        gap: 16px;
    }

    .phlt .gradient-band__inner {
        padding: 0 32px;
    }

    .phlt .gradient-band__heading {
        font-size: 32px;
    }

    .phlt .split-screen__stat-row {
        flex-direction: column;
        bottom: 16px;
        left: 16px;
        right: 16px;
        gap: 8px;
    }
}

@media (max-width: 480px) {
    .phlt .split-screen__heading {
        font-size: 32px;
    }

    .phlt .split-screen__left {
        padding: 48px 16px;
    }

    .phlt .mosaic-grid {
        padding: 48px 16px;
    }

    .phlt .gradient-band__inner {
        padding: 0 16px;
    }

    .phlt .step-item {
        gap: 16px;
    }
}

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

.tm-pg .spotlight-bg {
    position: relative;
    background: #f4f7f5;
}

.tm-pg .spotlight-bg::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 60% 55% at 30% 40%, rgba(51, 191, 93, 0.13) 0%, rgba(220, 171, 197, 0.08) 45%, rgba(227, 230, 229, 0.18) 100%);
    animation: spot-drift 12s ease-in-out infinite alternate;
    pointer-events: none;
    z-index: 0;
}

@keyframes spot-drift {
    0% {
        background: radial-gradient(ellipse 60% 55% at 30% 40%, rgba(51, 191, 93, 0.13) 0%, rgba(220, 171, 197, 0.08) 45%, rgba(227, 230, 229, 0.18) 100%);
    }

    100% {
        background: radial-gradient(ellipse 60% 55% at 68% 58%, rgba(51, 191, 93, 0.10) 0%, rgba(220, 171, 197, 0.11) 45%, rgba(227, 230, 229, 0.14) 100%);
    }
}

.tm-pg .pg-lead {
    max-width: 1320px;
    margin: 0 auto;
    padding: 96px 48px;
    display: flex;
    flex-direction: row;
    align-items: stretch;
    gap: 48px;
    position: relative;
    z-index: 1;
}

.tm-pg .pg-lead__text {
    flex: 1 1 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 32px;
}

.tm-pg .pg-lead__label {
    display: inline-block;
    font-size: 16px;
    line-height: 1.55;
    color: #1a6b36;
    background: rgba(51, 191, 93, 0.11);
    border: 1.5px solid rgba(51, 191, 93, 0.28);
    border-radius: 3px;
    padding: 8px 16px;
    width: fit-content;
    font-weight: 600;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.tm-pg .pg-lead__heading {
    font-size: 60px;
    line-height: 1.2;
    color: #18281f;
    margin: 0;
    font-weight: 700;
}

.tm-pg .pg-lead__heading span {
    display: block;
}

.tm-pg .pg-lead__heading em {
    font-style: normal;
    color: #33BF5D;
}

.tm-pg .pg-lead__desc {
    font-size: 19px;
    line-height: 1.8;
    color: #2e3d34;
    margin: 0;
    max-width: 520px;
}

.tm-pg .pg-lead__img-col {
    flex: 0 0 420px;
    display: flex;
    flex-direction: column;
    gap: 16px;
    position: relative;
}

.tm-pg .pg-lead__img-frame {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 7px 20px -1px rgba(51, 191, 93, 0.11);
    flex: 1 1 auto;
}

.tm-pg .pg-lead__img-frame img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
    transition: transform 0.45s cubic-bezier(0.34, 1.2, 0.64, 1);
}

.tm-pg .pg-lead__img-frame:hover img {
    transform: scale(1.04);
}

.tm-pg .pg-lead__img-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(145deg, rgba(51, 191, 93, 0.18) 0%, rgba(220, 171, 197, 0.22) 60%, rgba(227, 230, 229, 0.12) 100%);
    border-radius: 12px;
    pointer-events: none;
}

.tm-pg .pg-lead__deco {
    position: absolute;
    top: -16px;
    right: -16px;
    width: 80px;
    height: 80px;
    border: 2.5px solid rgba(51, 191, 93, 0.22);
    border-radius: 12px;
    pointer-events: none;
}

.tm-pg .pg-lead__deco-b {
    position: absolute;
    bottom: 32px;
    left: -16px;
    width: 48px;
    height: 48px;
    background: rgba(220, 171, 197, 0.18);
    border-radius: 12px;
    pointer-events: none;
}

.tm-pg .tm-roster {
    background: #fff;
    position: relative;
}

.tm-pg .tm-roster__inner {
    max-width: 1320px;
    margin: 0 auto;
    padding: 96px 48px;
}

.tm-pg .tm-roster__top {
    display: flex;
    flex-direction: row;
    align-items: flex-end;
    justify-content: space-between;
    gap: 32px;
    margin-bottom: 48px;
}

.tm-pg .tm-roster__heading {
    font-size: 44px;
    line-height: 1.2;
    color: #18281f;
    margin: 0;
    font-weight: 700;
}

.tm-pg .tm-roster__heading span {
    display: block;
}

.tm-pg .tm-roster__sub {
    font-size: 19px;
    line-height: 1.55;
    color: #3a4d40;
    max-width: 380px;
    margin: 0;
}

.tm-pg .tm-roster__divider {
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, #33BF5D 0%, rgba(220, 171, 197, 0.5) 55%, transparent 100%);
    border-radius: 3px;
    margin-bottom: 48px;
}

.tm-pg .tm-cards {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
}

.tm-pg .tm-card {
    display: flex;
    flex-direction: row;
    gap: 32px;
    align-items: flex-start;
    border: 1.5px solid rgba(227, 230, 229, 0.9);
    border-radius: 12px;
    padding: 32px;
    background: #f9fcfa;
    box-shadow: 0 3px 3px -1px rgba(51, 191, 93, 0.07);
    transition: box-shadow 0.38s ease-in-out, border-color 0.38s ease-in-out;
    position: relative;
}

.tm-pg .tm-card:hover {
    box-shadow: 0 10px 60px -1px rgba(51, 191, 93, 0.10);
    border-color: rgba(51, 191, 93, 0.35);
}

.tm-pg .tm-card__portrait {
    flex: 0 0 140px;
    width: 140px;
    aspect-ratio: 3/4;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 7px 20px -1px rgba(220, 171, 197, 0.11);
    position: relative;
}

.tm-pg .tm-card__portrait img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
    transition: transform 0.42s cubic-bezier(0.34, 1.2, 0.64, 1);
}

.tm-pg .tm-card:hover .tm-card__portrait img {
    transform: scale(1.05);
}

.tm-pg .tm-card__reveal {
    position: absolute;
    inset: 0;
    background: rgba(227, 230, 229, 0.82);
    border-radius: 12px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 8px;
    opacity: 1;
    transition: opacity 0.35s ease-in-out;
    pointer-events: none;
}

.tm-pg .tm-card:hover .tm-card__reveal {
    opacity: 0;
}

.tm-pg .tm-card__reveal-icon {
    width: 28px;
    height: 28px;
    border: 2px solid #33BF5D;
    border-radius: 50%;
    position: relative;
}

.tm-pg .tm-card__reveal-icon::before,
.tm-pg .tm-card__reveal-icon::after {
    content: "";
    position: absolute;
    background: #33BF5D;
}

.tm-pg .tm-card__reveal-icon::before {
    width: 2px;
    height: 10px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.tm-pg .tm-card__reveal-icon::after {
    width: 10px;
    height: 2px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.tm-pg .tm-card__reveal-txt {
    font-size: 16px;
    line-height: 1.2;
    color: #18281f;
    font-weight: 600;
    text-align: center;
}

.tm-pg .tm-card__body {
    flex: 1 1 0;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.tm-pg .tm-card__name {
    font-size: 24px;
    line-height: 1.2;
    color: #18281f;
    font-weight: 700;
    margin: 0;
}

.tm-pg .tm-card__role {
    font-size: 16px;
    line-height: 1.55;
    color: #33BF5D;
    font-weight: 600;
    margin: 0;
}

.tm-pg .tm-card__bio {
    font-size: 16px;
    line-height: 1.8;
    color: #2e3d34;
    margin: 0;
}

.tm-pg .tm-card__tags {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 8px;
}

.tm-pg .tm-card__tag {
    font-size: 16px;
    line-height: 1.2;
    color: #1a6b36;
    background: rgba(51, 191, 93, 0.10);
    border: 1px solid rgba(51, 191, 93, 0.22);
    border-radius: 3px;
    padding: 8px 16px;
}

.tm-pg .tm-card--no-portrait {
    flex-direction: column;
}

.tm-pg .tm-card__initials {
    flex: 0 0 auto;
    width: 64px;
    height: 64px;
    border-radius: 12px;
    background: linear-gradient(135deg, rgba(51, 191, 93, 0.18) 0%, rgba(220, 171, 197, 0.22) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: 700;
    color: #18281f;
}

.tm-pg .tm-card__contact {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 8px;
    margin-top: 8px;
}

.tm-pg .tm-card__contact-link {
    font-size: 16px;
    line-height: 1.55;
    color: #1a6b36;
    text-decoration: none;
    border-bottom: 1px solid transparent;
    transition: border-color 0.35s ease-in-out, color 0.35s ease-in-out;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.tm-pg .tm-card__contact-link:hover {
    border-bottom-color: #33BF5D;
    color: #33BF5D;
}

.tm-pg .tm-card__contact-link:hover .lnk-arrow {
    opacity: 1;
    transform: translateX(3px);
}

.tm-pg .lnk-arrow {
    display: inline-block;
    width: 12px;
    height: 12px;
    border-top: 2px solid #33BF5D;
    border-right: 2px solid #33BF5D;
    transform: rotate(45deg) translateX(0);
    opacity: 0;
    transition: opacity 0.32s ease-in-out, transform 0.32s ease-in-out;
}

@media (max-width: 1100px) {
    .tm-pg .pg-lead__img-col {
        flex: 0 0 320px;
    }

    .tm-pg .pg-lead__heading {
        font-size: 44px;
    }
}

@media (max-width: 900px) {
    .tm-pg .pg-lead {
        flex-direction: column;
        padding: 48px 32px;
    }

    .tm-pg .pg-lead__img-col {
        flex: 0 0 auto;
        width: 100%;
        height: 320px;
    }

    .tm-pg .pg-lead__img-frame {
        height: 320px;
    }

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

    .tm-pg .tm-roster__top {
        flex-direction: column;
        align-items: flex-start;
    }

    .tm-pg .tm-roster__inner {
        padding: 48px 32px;
    }
}

@media (max-width: 600px) {
    .tm-pg .pg-lead {
        padding: 48px 16px;
    }

    .tm-pg .pg-lead__heading {
        font-size: 32px;
    }

    .tm-pg .tm-card {
        flex-direction: column;
        padding: 16px;
    }

    .tm-pg .tm-card__portrait {
        flex: 0 0 auto;
        width: 100%;
        aspect-ratio: 3/4;
        max-height: 260px;
    }

    .tm-pg .tm-roster__inner {
        padding: 48px 16px;
    }

    .tm-pg .tm-roster__heading {
        font-size: 32px;
    }
}

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

.ab-us .split-panel {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 420px;
    max-width: 100%;
    position: relative;
}

.ab-us .split-panel__left {
    background: #33BF5D;
    padding: 96px 48px 96px 48px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.ab-us .split-panel__left::before {
    background: #DCABC5;
    border-radius: 50%;
    content: "";
    filter: blur(60px);
    height: 220px;
    left: -60px;
    opacity: 0.35;
    pointer-events: none;
    position: absolute;
    top: -40px;
    width: 220px;
}

.ab-us .split-panel__left::after {
    background: #E3E6E5;
    border-radius: 50%;
    bottom: -60px;
    content: "";
    filter: blur(80px);
    height: 180px;
    opacity: 0.28;
    pointer-events: none;
    position: absolute;
    right: 16px;
    width: 180px;
}

.ab-us .split-panel__eyebrow {
    color: rgba(255, 255, 255, 0.75);
    font-size: 16px;
    line-height: 1.55;
    margin-bottom: 16px;
    text-transform: uppercase;
}

.ab-us .split-panel__h1 {
    color: #fff;
    font-size: 60px;
    line-height: 1.2;
    margin-bottom: 32px;
    position: relative;
    z-index: 1;
}

.ab-us .split-panel__desc {
    color: rgba(255, 255, 255, 0.92);
    font-size: 19px;
    line-height: 1.55;
    margin-bottom: 32px;
    max-width: 400px;
    position: relative;
    z-index: 1;
}

.ab-us .split-panel__link {
    align-items: center;
    background: #fff;
    border-radius: 3px;
    box-shadow: 0 7px 20px -1px rgba(51, 191, 93, 0.11);
    color: #1b5e2d;
    display: inline-flex;
    font-size: 16px;
    font-weight: 700;
    gap: 8px;
    line-height: 1.2;
    padding: 16px 32px;
    position: relative;
    text-decoration: none;
    transition: box-shadow 0.38s cubic-bezier(0.34, 1.2, 0.64, 1), transform 0.38s cubic-bezier(0.34, 1.2, 0.64, 1);
    z-index: 1;
}

.ab-us .split-panel__link:hover {
    box-shadow: 0 10px 60px -1px rgba(51, 191, 93, 0.18);
    transform: translateY(-2px);
}

.ab-us .split-panel__link svg {
    opacity: 0;
    transform: translateX(-4px);
    transition: opacity 0.32s ease-in-out, transform 0.32s ease-in-out;
}

.ab-us .split-panel__link:hover svg {
    opacity: 1;
    transform: translateX(0);
}

.ab-us .split-panel__right {
    background: #DCABC5;
    position: relative;
    overflow: hidden;
}

.ab-us .split-panel__img {
    display: block;
    filter: grayscale(1) sepia(0.18);
    height: 100%;
    object-fit: cover;
    object-position: center;
    width: 100%;
}

.ab-us .split-panel__right::after {
    background: rgba(220, 171, 197, 0.55);
    content: "";
    inset: 0;
    pointer-events: none;
    position: absolute;
}

.ab-us .about-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 48px;
    margin: 0 auto;
    max-width: 1320px;
    padding: 96px 48px;
}

.ab-us .about-grid__primary {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.ab-us .about-grid__label {
    color: #33BF5D;
    font-size: 16px;
    font-weight: 700;
    line-height: 1.2;
    text-transform: uppercase;
}

.ab-us .about-grid__h2 {
    color: #1a3d26;
    font-size: 44px;
    line-height: 1.2;
    margin-bottom: 0;
}

.ab-us .about-grid__intro {
    border-bottom: 2px solid #E3E6E5;
    color: #2a2a2a;
    font-size: 19px;
    line-height: 1.8;
    padding-bottom: 32px;
}

.ab-us .about-grid__body {
    color: #3a3a3a;
    font-size: 16px;
    line-height: 1.8;
}

.ab-us .about-grid__body p {
    margin-bottom: 16px;
}

.ab-us .about-grid__body p:last-child {
    margin-bottom: 0;
}

.ab-us .about-grid__secondary {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.ab-us .stat-card {
    background: #E3E6E5;
    border-radius: 12px;
    box-shadow: 0 3px 3px -1px rgba(51, 191, 93, 0.07);
    padding: 32px;
}

.ab-us .stat-card__num {
    color: #1a3d26;
    font-size: 44px;
    font-weight: 700;
    line-height: 1.2;
}

.ab-us .stat-card__desc {
    color: #3a3a3a;
    font-size: 16px;
    line-height: 1.55;
    margin-top: 8px;
}

.ab-us .img-card {
    border-radius: 12px;
    box-shadow: 0 7px 20px -1px rgba(51, 191, 93, 0.11);
    overflow: hidden;
    position: relative;
}

.ab-us .img-card__photo {
    display: block;
    filter: grayscale(0.4);
    height: 220px;
    object-fit: cover;
    object-position: center;
    width: 100%;
}

.ab-us .pyramid-band {
    background: #1a3d26;
    padding: 96px 48px;
    position: relative;
}

.ab-us .pyramid-band__inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 96px;
    margin: 0 auto;
    max-width: 1320px;
}

.ab-us .pyramid-band__text {
    display: flex;
    flex-direction: column;
    gap: 32px;
    justify-content: center;
}

.ab-us .pyramid-band__label {
    color: #33BF5D;
    font-size: 16px;
    font-weight: 700;
    line-height: 1.2;
    text-transform: uppercase;
}

.ab-us .pyramid-band__h2 {
    color: #fff;
    font-size: 44px;
    line-height: 1.2;
}

.ab-us .pyramid-band__desc {
    color: rgba(255, 255, 255, 0.82);
    font-size: 16px;
    line-height: 1.8;
}

.ab-us .pyramid-band__visual {
    display: flex;
    flex-direction: column;
    gap: 48px;
}

.ab-us .pyramid {
    display: flex;
    flex-direction: column;
    gap: 8px;
    align-items: center;
}

.ab-us .pyramid__layer {
    align-items: center;
    border-radius: 3px;
    display: flex;
    flex-direction: column;
    gap: 0;
    justify-content: center;
    padding: 16px 32px;
    position: relative;
    transition: box-shadow 0.42s cubic-bezier(0.34, 1.2, 0.64, 1);
}

.ab-us .pyramid__layer:hover {
    box-shadow: inset 0 6px 10px rgba(51, 191, 93, 0.18);
}

.ab-us .pyramid__layer--top {
    background: #33BF5D;
    width: 38%;
}

.ab-us .pyramid__layer--mid {
    background: #4dd17a;
    width: 62%;
}

.ab-us .pyramid__layer--base {
    background: #7de0a4;
    width: 86%;
}

.ab-us .pyramid__layer--full {
    background: #DCABC5;
    width: 100%;
}

.ab-us .pyramid__label {
    color: #1a3d26;
    font-size: 16px;
    font-weight: 700;
    line-height: 1.2;
    text-align: center;
}

.ab-us .pyramid__sub {
    color: #1a3d26;
    font-size: 16px;
    line-height: 1.2;
    opacity: 0.75;
    text-align: center;
}

.ab-us .team-row {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
    margin-top: 48px;
}

.ab-us .team-card {
    align-items: center;
    background: rgba(255, 255, 255, 0.07);
    border-radius: 12px;
    box-shadow: 0 3px 3px -1px rgba(220, 171, 197, 0.07);
    display: flex;
    flex-direction: row;
    gap: 16px;
    padding: 32px;
}

.ab-us .team-card__portrait {
    border-radius: 50%;
    flex-shrink: 0;
    height: 72px;
    object-fit: cover;
    object-position: center;
    width: 72px;
}

.ab-us .team-card__name {
    color: #fff;
    font-size: 19px;
    font-weight: 700;
    line-height: 1.2;
}

.ab-us .team-card__role {
    color: rgba(255, 255, 255, 0.72);
    font-size: 16px;
    line-height: 1.55;
    margin-top: 8px;
}

.ab-us .img-strip {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
    margin-top: 48px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 60px -1px rgba(51, 191, 93, 0.10);
}

.ab-us .img-strip__cell {
    overflow: hidden;
    position: relative;
}

.ab-us .img-strip__cell::after {
    background: rgba(51, 191, 93, 0.22);
    content: "";
    inset: 0;
    pointer-events: none;
    position: absolute;
    transition: background 0.44s ease-in-out;
}

.ab-us .img-strip__cell:hover::after {
    background: rgba(220, 171, 197, 0.22);
}

.ab-us .img-strip__photo {
    display: block;
    filter: grayscale(0.5) sepia(0.1);
    height: 260px;
    object-fit: cover;
    object-position: center;
    transition: transform 0.44s cubic-bezier(0.34, 1.2, 0.64, 1);
    width: 100%;
}

.ab-us .img-strip__cell:hover .img-strip__photo {
    transform: scale(1.06);
}

.ab-us .shake-anchor {
    animation: ab-shake 0.5s cubic-bezier(0.34, 1.2, 0.64, 1) 2.2s 1 both;
    display: inline-block;
}

@keyframes ab-shake {
    0% {
        transform: translateX(0);
    }

    20% {
        transform: translateX(-6px);
    }

    40% {
        transform: translateX(5px);
    }

    60% {
        transform: translateX(-4px);
    }

    80% {
        transform: translateX(3px);
    }

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

@media (max-width: 1024px) {
    .ab-us .split-panel {
        grid-template-columns: 1fr;
    }

    .ab-us .split-panel__right {
        height: 320px;
    }

    .ab-us .about-grid {
        grid-template-columns: 1fr;
        padding: 48px 32px;
    }

    .ab-us .pyramid-band__inner {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .ab-us .pyramid-band {
        padding: 48px 32px;
    }
}

@media (max-width: 768px) {
    .ab-us .split-panel__h1 {
        font-size: 44px;
    }

    .ab-us .split-panel__left {
        padding: 48px 32px;
    }

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

    .ab-us .img-strip {
        grid-template-columns: 1fr;
    }

    .ab-us .img-strip__photo {
        height: 200px;
    }

    .ab-us .about-grid__h2 {
        font-size: 32px;
    }

    .ab-us .pyramid-band__h2 {
        font-size: 32px;
    }

    .ab-us .about-grid {
        padding: 48px 16px;
    }

    .ab-us .pyramid-band {
        padding: 48px 16px;
    }
}

.lnch {
    overflow-x: clip;
    position: relative;
}

.lnch .geo-spin {
    position: fixed;
    top: 50%;
    left: 50%;
    width: 520px;
    height: 520px;
    transform: translate(-50%, -50%);
    pointer-events: none;
    z-index: 0;
    opacity: 0.04;
    animation: geo-rotate 28s linear infinite;
}

@keyframes geo-rotate {
    from {
        transform: translate(-50%, -50%) rotate(0deg);
    }

    to {
        transform: translate(-50%, -50%) rotate(360deg);
    }
}

.lnch .geo-spin svg {
    width: 100%;
    height: 100%;
}

.lnch .pg-body {
    position: relative;
    z-index: 1;
    max-width: 1320px;
    margin: 0 auto;
    padding: 0 32px;
}

.lnch .sep-diamond {
    display: inline-block;
    width: 7px;
    height: 7px;
    background: #33BF5D;
    transform: rotate(45deg);
    margin: 0 8px;
    vertical-align: middle;
    flex-shrink: 0;
}

.lnch .sep-tri {
    display: inline-block;
    width: 0;
    height: 0;
    border-left: 5px solid transparent;
    border-right: 5px solid transparent;
    border-bottom: 8px solid #DCABC5;
    margin: 0 8px;
    vertical-align: middle;
    flex-shrink: 0;
}

.lnch .anim-block {
    opacity: 0;
    transform: translateY(18px);
    animation: blk-appear 0.38s cubic-bezier(0.34, 1.2, 0.64, 1) forwards;
}

.lnch .anim-block--1 {
    animation-delay: 0.08s;
}

.lnch .anim-block--2 {
    animation-delay: 0.18s;
}

.lnch .anim-block--3 {
    animation-delay: 0.28s;
}

.lnch .anim-block--4 {
    animation-delay: 0.38s;
}

.lnch .anim-block--5 {
    animation-delay: 0.48s;
}

@keyframes blk-appear {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.lnch .ttl-blk {
    background: #fff;
    padding-top: 96px;
    padding-bottom: 48px;
    position: relative;
}

.lnch .ttl-blk__inner {
    max-width: 1320px;
    margin: 0 auto;
    padding: 0 32px;
    display: grid;
    grid-template-columns: 1fr 480px;
    gap: 96px;
    align-items: start;
}

.lnch .ttl-blk__copy {
    display: flex;
    flex-direction: column;
    gap: 32px;
    padding-top: 48px;
}

.lnch .ttl-blk__label {
    display: flex;
    align-items: center;
    gap: 0;
    font-size: 16px;
    line-height: 1.55;
    color: #33BF5D;
    font-weight: 600;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.lnch .ttl-blk__h1 {
    font-size: 60px;
    line-height: 1.2;
    color: #1a2e1e;
    margin: 0;
    font-weight: 700;
}

.lnch .ttl-blk__h1 span {
    display: block;
}

.lnch .ttl-blk__sub {
    font-size: 24px;
    line-height: 1.55;
    color: #2d4a35;
    margin: 0;
    font-weight: 400;
}

.lnch .ttl-blk__desc {
    font-size: 19px;
    line-height: 1.8;
    color: #3a4a3d;
    margin: 0;
    max-width: 520px;
}

.lnch .ttl-blk__img-wrap {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 60px -1px rgba(51, 191, 93, 0.10);
}

.lnch .ttl-blk__img-wrap img {
    width: 100%;
    height: 580px;
    object-fit: cover;
    object-position: center;
    display: block;
    transition: transform 0.45s cubic-bezier(0.34, 1.2, 0.64, 1);
}

.lnch .ttl-blk__img-wrap:hover img {
    transform: scale(1.04) translateX(12px);
}

.lnch .ttl-blk__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(51, 191, 93, 0.28) 0%, rgba(220, 171, 197, 0.18) 100%);
    pointer-events: none;
}

.lnch .cases-blk {
    background: #E3E6E5;
    padding-top: 96px;
    padding-bottom: 96px;
    position: relative;
}

.lnch .cases-blk::before {
    content: "";
    position: absolute;
    inset: 0;
    left: calc(-50vw + 50%);
    right: calc(-50vw + 50%);
    background: #E3E6E5;
    z-index: -1;
}

.lnch .cases-blk__header {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 48px;
}

.lnch .cases-blk__h2 {
    font-size: 44px;
    line-height: 1.2;
    color: #1a2e1e;
    margin: 0;
    font-weight: 700;
}

.lnch .cases-blk__h2 span {
    display: block;
}

.lnch .cases-blk__lead {
    font-size: 19px;
    line-height: 1.8;
    color: #3a4a3d;
    margin: 0;
    max-width: 580px;
}

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

.lnch .case-card {
    background: #fff;
    border-radius: 12px;
    padding: 32px;
    box-shadow: 0 3px 3px -1px rgba(51, 191, 93, 0.07);
    display: flex;
    flex-direction: column;
    gap: 16px;
    position: relative;
    overflow: hidden;
}

.lnch .case-card__reveal {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(51, 191, 93, 0.08) 0%, rgba(220, 171, 197, 0.10) 100%);
    transform: scaleX(0);
    transform-origin: center;
    transition: transform 0.42s cubic-bezier(0.34, 1.2, 0.64, 1);
    pointer-events: none;
    border-radius: 12px;
}

.lnch .case-card:hover .case-card__reveal {
    transform: scaleX(1);
}

.lnch .case-card__name {
    font-size: 16px;
    line-height: 1.55;
    font-weight: 700;
    color: #33BF5D;
    margin: 0;
    display: flex;
    align-items: center;
    gap: 8px;
    position: relative;
    z-index: 1;
}

.lnch .case-card__role {
    font-size: 16px;
    line-height: 1.55;
    color: #6a7a6d;
    margin: 0;
    position: relative;
    z-index: 1;
}

.lnch .case-card__situation {
    font-size: 19px;
    line-height: 1.8;
    color: #2d3a30;
    margin: 0;
    position: relative;
    z-index: 1;
}

.lnch .case-card__outcome {
    font-size: 16px;
    line-height: 1.55;
    color: #3a4a3d;
    margin: 0;
    padding-top: 16px;
    border-top: 1px solid #E3E6E5;
    position: relative;
    z-index: 1;
}

.lnch .case-card__portrait {
    width: 56px;
    height: 78px;
    border-radius: 3px;
    overflow: hidden;
    flex-shrink: 0;
    position: relative;
    z-index: 1;
}

.lnch .case-card__portrait img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
    transition: transform 0.40s ease-in-out;
}

.lnch .case-card:hover .case-card__portrait img {
    transform: scale(1.06) translateY(-4px);
}

.lnch .case-card__top {
    display: flex;
    flex-direction: row;
    gap: 16px;
    align-items: flex-start;
    position: relative;
    z-index: 1;
}

.lnch .case-card__meta {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.lnch .situations-blk {
    background: #fff;
    padding-top: 96px;
    padding-bottom: 96px;
}

.lnch .situations-blk__inner {
    display: grid;
    grid-template-columns: 380px 1fr;
    gap: 96px;
    align-items: start;
}

.lnch .situations-blk__aside {
    display: flex;
    flex-direction: column;
    gap: 32px;
    position: sticky;
    top: 48px;
}

.lnch .situations-blk__h2 {
    font-size: 44px;
    line-height: 1.2;
    color: #1a2e1e;
    margin: 0;
    font-weight: 700;
}

.lnch .situations-blk__h2 span {
    display: block;
}

.lnch .situations-blk__img-wrap {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 7px 20px -1px rgba(220, 171, 197, 0.11);
}

.lnch .situations-blk__img-wrap img {
    width: 100%;
    height: 280px;
    object-fit: cover;
    object-position: center;
    display: block;
    transition: transform 0.44s ease-in-out;
}

.lnch .situations-blk__img-wrap:hover img {
    transform: translateY(-8px);
}

.lnch .situations-blk__list {
    display: flex;
    flex-direction: column;
    gap: 16px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.lnch .sit-item {
    border-radius: 3px;
    background: #E3E6E5;
    padding: 32px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    position: relative;
    overflow: hidden;
}

.lnch .sit-item__reveal {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(90deg, rgba(51, 191, 93, 0.10) 0%, rgba(220, 171, 197, 0.12) 100%);
    transform: scaleX(0);
    transform-origin: center;
    transition: transform 0.38s cubic-bezier(0.34, 1.2, 0.64, 1);
    pointer-events: none;
}

.lnch .sit-item:hover .sit-item__reveal {
    transform: scaleX(1);
}

.lnch .sit-item__h4 {
    font-size: 19px;
    line-height: 1.55;
    color: #1a2e1e;
    margin: 0;
    font-weight: 700;
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    gap: 8px;
}

.lnch .sit-item__desc {
    font-size: 16px;
    line-height: 1.8;
    color: #3a4a3d;
    margin: 0;
    position: relative;
    z-index: 1;
}

.lnch .adapt-blk {
    position: relative;
    padding-top: 96px;
    padding-bottom: 96px;
}

.lnch .adapt-blk::before {
    content: "";
    position: absolute;
    inset: 0;
    left: calc(-50vw + 50%);
    right: calc(-50vw + 50%);
    background: linear-gradient(160deg, rgba(51, 191, 93, 0.08) 0%, rgba(220, 171, 197, 0.12) 60%, rgba(227, 230, 229, 0.6) 100%);
    z-index: -1;
}

.lnch .adapt-blk__inner {
    display: flex;
    flex-direction: column;
    gap: 48px;
}

.lnch .adapt-blk__header {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 96px;
    align-items: end;
}

.lnch .adapt-blk__h2 {
    font-size: 44px;
    line-height: 1.2;
    color: #1a2e1e;
    margin: 0;
    font-weight: 700;
}

.lnch .adapt-blk__h2 span {
    display: block;
}

.lnch .adapt-blk__desc {
    font-size: 19px;
    line-height: 1.8;
    color: #3a4a3d;
    margin: 0;
}

.lnch .adapt-blk__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}

.lnch .adapt-card {
    background: #fff;
    border-radius: 12px;
    padding: 32px;
    box-shadow: 0 3px 3px -1px rgba(51, 191, 93, 0.07);
    display: flex;
    flex-direction: column;
    gap: 16px;
    position: relative;
    overflow: hidden;
}

.lnch .adapt-card__reveal {
    position: absolute;
    inset: 0;
    background: rgba(51, 191, 93, 0.06);
    transform: scaleX(0);
    transform-origin: center;
    transition: transform 0.35s cubic-bezier(0.34, 1.2, 0.64, 1);
    pointer-events: none;
    border-radius: 12px;
}

.lnch .adapt-card:hover .adapt-card__reveal {
    transform: scaleX(1);
}

.lnch .adapt-card__num {
    font-size: 32px;
    line-height: 1.2;
    font-weight: 700;
    color: #33BF5D;
    position: relative;
    z-index: 1;
}

.lnch .adapt-card__h4 {
    font-size: 19px;
    line-height: 1.55;
    color: #1a2e1e;
    margin: 0;
    font-weight: 700;
    position: relative;
    z-index: 1;
}

.lnch .adapt-card__text {
    font-size: 16px;
    line-height: 1.8;
    color: #3a4a3d;
    margin: 0;
    position: relative;
    z-index: 1;
}

.lnch .adapt-blk__chart-row {
    display: grid;
    grid-template-columns: 1fr 360px;
    gap: 48px;
    align-items: center;
}

.lnch .adapt-blk__chart {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.lnch .chart-bar {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.lnch .chart-bar__label {
    font-size: 16px;
    line-height: 1.55;
    color: #2d3a30;
    font-weight: 600;
}

.lnch .chart-bar__track {
    height: 32px;
    background: #E3E6E5;
    border-radius: 3px;
    overflow: hidden;
    position: relative;
}

.lnch .chart-bar__fill {
    height: 100%;
    border-radius: 3px;
    display: flex;
    align-items: center;
    padding-left: 12px;
    font-size: 16px;
    line-height: 1.55;
    color: #fff;
    font-weight: 700;
    animation: bar-grow 0.44s cubic-bezier(0.34, 1.2, 0.64, 1) forwards;
    transform-origin: left;
}

@keyframes bar-grow {
    from {
        transform: scaleX(0);
    }

    to {
        transform: scaleX(1);
    }
}

.lnch .chart-bar__fill--a {
    background: #33BF5D;
    width: 78%;
}

.lnch .chart-bar__fill--b {
    background: #2aaa52;
    width: 64%;
}

.lnch .chart-bar__fill--c {
    background: #DCABC5;
    width: 55%;
}

.lnch .chart-bar__fill--d {
    background: #c99ab4;
    width: 41%;
}

.lnch .chart-note {
    font-size: 16px;
    line-height: 1.8;
    color: #3a4a3d;
    margin: 0;
}

.lnch .chart-note strong {
    color: #1a2e1e;
}

.lnch .adapt-blk__img-wrap {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 7px 20px -1px rgba(51, 191, 93, 0.11);
}

.lnch .adapt-blk__img-wrap img {
    width: 100%;
    height: 320px;
    object-fit: cover;
    object-position: center;
    display: block;
    transition: transform 0.44s ease-in-out;
}

.lnch .adapt-blk__img-wrap:hover img {
    transform: translateX(10px);
}

.lnch .audience-blk {
    background: #fff;
    padding-top: 96px;
    padding-bottom: 96px;
}

.lnch .audience-blk__inner {
    display: flex;
    flex-direction: column;
    gap: 48px;
}

.lnch .audience-blk__header {
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 16px;
    align-items: center;
}

.lnch .audience-blk__h2 {
    font-size: 44px;
    line-height: 1.2;
    color: #1a2e1e;
    margin: 0;
    font-weight: 700;
}

.lnch .audience-blk__h2 span {
    display: block;
}

.lnch .audience-blk__sub {
    font-size: 19px;
    line-height: 1.8;
    color: #3a4a3d;
    margin: 0;
    max-width: 560px;
}

.lnch .audience-blk__wide {
    background: #E3E6E5;
    border-radius: 12px;
    padding: 48px;
    display: grid;
    grid-template-columns: 1fr 320px;
    gap: 48px;
    align-items: center;
    box-shadow: 0 7px 20px -1px rgba(51, 191, 93, 0.11);
    position: relative;
    overflow: hidden;
}

.lnch .audience-blk__wide::after {
    content: "";
    position: absolute;
    top: -60px;
    right: -60px;
    width: 200px;
    height: 200px;
    border-radius: 50%;
    background: rgba(51, 191, 93, 0.08);
    pointer-events: none;
}

.lnch .audience-blk__wide-copy {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.lnch .audience-blk__wide-h3 {
    font-size: 32px;
    line-height: 1.2;
    color: #1a2e1e;
    margin: 0;
    font-weight: 700;
}

.lnch .audience-blk__wide-text {
    font-size: 19px;
    line-height: 1.8;
    color: #2d3a30;
    margin: 0;
}

.lnch .audience-blk__wide-img {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 3px 3px -1px rgba(220, 171, 197, 0.07);
}

.lnch .audience-blk__wide-img img {
    width: 100%;
    height: 260px;
    object-fit: cover;
    object-position: center;
    display: block;
    transition: transform 0.42s ease-in-out;
}

.lnch .audience-blk__wide-img:hover img {
    transform: translateY(-6px);
}

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

.lnch .prof-card {
    border-radius: 12px;
    background: #fff;
    border: 1px solid #E3E6E5;
    padding: 32px;
    display: flex;
    flex-direction: column;
    gap: 16px;
    box-shadow: 0 3px 3px -1px rgba(51, 191, 93, 0.07);
    position: relative;
    overflow: hidden;
}

.lnch .prof-card__reveal {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(220, 171, 197, 0.09) 0%, rgba(51, 191, 93, 0.07) 100%);
    transform: scaleX(0);
    transform-origin: center;
    transition: transform 0.40s cubic-bezier(0.34, 1.2, 0.64, 1);
    pointer-events: none;
    border-radius: 12px;
}

.lnch .prof-card:hover .prof-card__reveal {
    transform: scaleX(1);
}

.lnch .prof-card__tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(51, 191, 93, 0.10);
    color: #1a6b33;
    font-size: 16px;
    line-height: 1.55;
    font-weight: 600;
    padding: 8px 16px;
    border-radius: 3px;
    position: relative;
    z-index: 1;
    align-self: flex-start;
}

.lnch .prof-card__h5 {
    font-size: 19px;
    line-height: 1.55;
    color: #1a2e1e;
    margin: 0;
    font-weight: 700;
    position: relative;
    z-index: 1;
}

.lnch .prof-card__text {
    font-size: 16px;
    line-height: 1.8;
    color: #3a4a3d;
    margin: 0;
    position: relative;
    z-index: 1;
}

.lnch .prof-card__ctx {
    font-size: 16px;
    line-height: 1.55;
    color: #6a7a6d;
    margin: 0;
    font-style: italic;
    position: relative;
    z-index: 1;
    padding-top: 8px;
    border-top: 1px solid #E3E6E5;
}

@media (max-width: 1100px) {
    .lnch .ttl-blk__inner {
        grid-template-columns: 1fr 380px;
        gap: 48px;
    }

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

    .lnch .adapt-blk__chart-row {
        grid-template-columns: 1fr;
        gap: 32px;
    }
}

@media (max-width: 900px) {
    .lnch .ttl-blk__inner {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .lnch .ttl-blk__h1 {
        font-size: 44px;
    }

    .lnch .cases-blk__grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .lnch .situations-blk__inner {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .lnch .adapt-blk__header {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .lnch .audience-blk__wide {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .lnch .audience-blk__profiles {
        grid-template-columns: 1fr;
        gap: 16px;
    }
}

@media (max-width: 640px) {
    .lnch .ttl-blk {
        padding-top: 48px;
    }

    .lnch .ttl-blk__h1 {
        font-size: 32px;
    }

    .lnch .ttl-blk__sub {
        font-size: 19px;
    }

    .lnch .cases-blk__h2,
    .lnch .situations-blk__h2,
    .lnch .adapt-blk__h2,
    .lnch .audience-blk__h2 {
        font-size: 32px;
    }

    .lnch .adapt-blk__grid {
        grid-template-columns: 1fr;
    }

    .lnch .pg-body {
        padding: 0 16px;
    }

    .lnch .audience-blk__wide {
        padding: 32px;
    }
}

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

.ctus__curve-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    overflow: hidden;
}

.ctus__curve-bg svg {
    width: 100%;
    height: 100%;
    opacity: 0.13;
}

.ctus__opener {
    position: relative;
    background: #E3E6E5;
    padding: 96px 32px 48px;
}

.ctus__opener-inner {
    max-width: 1320px;
    margin: 0 auto;
    display: flex;
    flex-direction: row;
    align-items: flex-end;
    gap: 48px;
}

.ctus__opener-text {
    flex: 1 1 0;
    animation: ctus-cascade 0.45s cubic-bezier(0.34, 1.2, 0.64, 1) both;
}

.ctus__opener-label {
    display: inline-block;
    font-size: 16px;
    line-height: 1.55;
    color: #1b4d2e;
    background: #33BF5D;
    padding: 8px 16px;
    border-radius: 3px;
    margin-bottom: 16px;
    animation: ctus-cascade 0.38s cubic-bezier(0.34, 1.2, 0.64, 1) 0.05s both;
}

.ctus__opener-h1 {
    font-size: 44px;
    line-height: 1.2;
    color: #1a2e1f;
    margin-bottom: 16px;
    animation: ctus-cascade 0.42s cubic-bezier(0.34, 1.2, 0.64, 1) 0.1s both;
}

.ctus__opener-desc {
    font-size: 19px;
    line-height: 1.55;
    color: #2d3b30;
    max-width: 520px;
    animation: ctus-cascade 0.45s cubic-bezier(0.34, 1.2, 0.64, 1) 0.18s both;
}

.ctus__opener-img-wrap {
    flex: 0 0 420px;
    height: 320px;
    border-radius: 12px;
    overflow: hidden;
    position: relative;
    box-shadow: 0 7px 20px -1px rgba(51, 191, 93, 0.11);
    animation: ctus-cascade 0.45s cubic-bezier(0.34, 1.2, 0.64, 1) 0.22s both;
}

.ctus__opener-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.45s ease-in-out;
}

.ctus__opener-img-wrap:hover img {
    transform: scale(1.04);
}

.ctus__opener-img-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(160deg, rgba(51, 191, 93, 0.28) 0%, rgba(220, 171, 197, 0.22) 100%);
    pointer-events: none;
}

.ctus__opener-img-grid {
    position: absolute;
    inset: 0;
    opacity: 0;
    background-image:
        linear-gradient(rgba(51, 191, 93, 0.35) 1px, transparent 1px),
        linear-gradient(90deg, rgba(51, 191, 93, 0.35) 1px, transparent 1px);
    background-size: 32px 32px;
    transition: opacity 0.38s ease-in-out;
    pointer-events: none;
}

.ctus__opener-img-wrap:hover .ctus__opener-img-grid {
    opacity: 1;
}

.ctus__divider--double {
    display: flex;
    flex-direction: column;
    gap: 4px;
    padding: 0 32px;
    max-width: 1320px;
    margin: 0 auto;
}

.ctus__divider--double span {
    display: block;
    height: 1px;
    background: #33BF5D;
    opacity: 0.3;
}

.ctus__form-section {
    background: #fff;
    padding: 96px 32px;
    position: relative;
}

.ctus__topo-bg {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
    opacity: 0.045;
}

.ctus__topo-bg svg {
    width: 100%;
    height: 100%;
}

.ctus__form-inner {
    max-width: 1320px;
    margin: 0 auto;
    display: flex;
    flex-direction: row;
    gap: 96px;
    align-items: flex-start;
}

.ctus__form-aside {
    flex: 0 0 300px;
    animation: ctus-cascade 0.42s cubic-bezier(0.34, 1.2, 0.64, 1) 0.08s both;
}

.ctus__form-aside-h2 {
    font-size: 32px;
    line-height: 1.2;
    color: #1a2e1f;
    margin-bottom: 16px;
}

.ctus__form-aside-p {
    font-size: 16px;
    line-height: 1.55;
    color: #3a4a3d;
    margin-bottom: 32px;
}

.ctus__contact-detail {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 32px;
}

.ctus__contact-item {
    display: flex;
    flex-direction: column;
    gap: 8px;
    padding: 16px;
    border-radius: 12px;
    background: #E3E6E5;
    box-shadow: 0 3px 3px -1px rgba(51, 191, 93, 0.07);
    transition: box-shadow 0.4s ease-in-out;
}

.ctus__contact-item:hover {
    box-shadow: 0 7px 20px -1px rgba(51, 191, 93, 0.11);
}

.ctus__contact-item-label {
    font-size: 16px;
    line-height: 1.2;
    color: #1b4d2e;
    font-weight: bold;
}

.ctus__contact-item-val {
    font-size: 16px;
    line-height: 1.55;
    color: #2d3b30;
    text-decoration: none;
}

.ctus__contact-item-val:hover {
    color: #1b4d2e;
    text-decoration: underline;
}

.ctus__form-main {
    flex: 1 1 0;
    animation: ctus-cascade 0.45s cubic-bezier(0.34, 1.2, 0.64, 1) 0.15s both;
}

.ctus__form {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.ctus__form-row {
    display: flex;
    flex-direction: row;
    gap: 32px;
}

.ctus__field {
    display: flex;
    flex-direction: column;
    gap: 8px;
    flex: 1 1 0;
}

.ctus__field-label {
    font-size: 16px;
    line-height: 1.2;
    color: #1a2e1f;
    font-weight: bold;
}

.ctus__field-label--req::after {
    content: " *";
    color: #1b4d2e;
}

.ctus__field input[type="text"],
.ctus__field input[type="tel"],
.ctus__field input[type="email"],
.ctus__field select,
.ctus__field textarea {
    border: 2px solid #E3E6E5;
    border-radius: 3px;
    padding: 16px;
    font-size: 16px;
    line-height: 1.55;
    color: #1a2e1f;
    background: #fff;
    width: 100%;
    box-sizing: border-box;
    transition: border-color 0.35s ease-in-out, box-shadow 0.35s ease-in-out;
    outline: none;
    appearance: none;
}

.ctus__field input[type="text"]:focus,
.ctus__field input[type="tel"]:focus,
.ctus__field input[type="email"]:focus,
.ctus__field select:focus,
.ctus__field textarea:focus {
    border-color: #33BF5D;
    box-shadow: 0 0 0 3px rgba(51, 191, 93, 0.13);
}

.ctus__field input::placeholder,
.ctus__field textarea::placeholder {
    color: #8aab90;
    font-size: 16px;
}

.ctus__field select {
    cursor: pointer;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 16 16'%3E%3Cpath fill='%2333BF5D' d='M4 6l4 4 4-4'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
    padding-right: 48px;
}

.ctus__field textarea {
    resize: vertical;
    min-height: 120px;
}

.ctus__privacy {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    gap: 16px;
}

.ctus__privacy input[type="checkbox"] {
    width: 20px;
    height: 20px;
    min-width: 20px;
    margin-top: 2px;
    accent-color: #33BF5D;
    cursor: pointer;
}

.ctus__privacy-text {
    font-size: 16px;
    line-height: 1.55;
    color: #3a4a3d;
}

.ctus__privacy-text a {
    color: #1b4d2e;
    text-decoration: underline;
    transition: color 0.35s ease-in-out;
}

.ctus__privacy-text a:hover {
    color: #33BF5D;
}

.ctus__submit-wrap {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 32px;
}

.ctus__btn-submit {
    position: relative;
    overflow: hidden;
    border: none;
    border-radius: 3px;
    padding: 16px 48px;
    font-size: 19px;
    line-height: 1.2;
    color: #fff;
    background: linear-gradient(135deg, #33BF5D 0%, #1b4d2e 100%);
    cursor: pointer;
    box-shadow: 0 7px 20px -1px rgba(51, 191, 93, 0.11);
    transition: box-shadow 0.4s ease-in-out, transform 0.35s cubic-bezier(0.34, 1.2, 0.64, 1);
    font-weight: bold;
}

.ctus__btn-submit:hover {
    box-shadow: 0 10px 60px -1px rgba(51, 191, 93, 0.10);
    transform: translateY(-2px);
}

.ctus__btn-submit:active {
    transform: translateY(0);
    box-shadow: 0 3px 3px -1px rgba(51, 191, 93, 0.07);
}

.ctus__btn-submit::after {
    content: "";
    position: absolute;
    width: 0;
    height: 0;
    background: rgba(255, 255, 255, 0.25);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    pointer-events: none;
    transition: width 0.45s cubic-bezier(0.34, 1.2, 0.64, 1), height 0.45s cubic-bezier(0.34, 1.2, 0.64, 1), opacity 0.45s ease-in-out;
    opacity: 0;
    top: var(--ripple-y, 50%);
    left: var(--ripple-x, 50%);
}

.ctus__btn-submit:active::after {
    width: 200px;
    height: 200px;
    opacity: 0;
}

.ctus__submit-note {
    font-size: 16px;
    line-height: 1.55;
    color: #5a7060;
}

.ctus__divider--topo {
    padding: 0 32px;
}

.ctus__divider--topo-inner {
    max-width: 1320px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.ctus__divider--topo-inner span {
    display: block;
    height: 1px;
    background: #DCABC5;
    opacity: 0.4;
}

.ctus__info-section {
    background: linear-gradient(160deg, rgba(220, 171, 197, 0.18) 0%, rgba(227, 230, 229, 0.55) 55%, rgba(51, 191, 93, 0.08) 100%) !important;
    padding: 96px 32px 48px;
    position: relative;
}

.ctus__info-inner {
    max-width: 1320px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    gap: 32px;
    align-items: start;
}

.ctus__info-card {
    background: #fff;
    border-radius: 12px;
    padding: 32px;
    box-shadow: 0 3px 3px -1px rgba(51, 191, 93, 0.07);
    transition: box-shadow 0.42s cubic-bezier(0.34, 1.2, 0.64, 1), transform 0.42s cubic-bezier(0.34, 1.2, 0.64, 1);
    animation: ctus-cascade 0.4s cubic-bezier(0.34, 1.2, 0.64, 1) both;
}

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

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

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

.ctus__info-card:nth-child(4) {
    animation-delay: 0.26s;
}

.ctus__info-card:hover {
    box-shadow: 0 7px 20px -1px rgba(51, 191, 93, 0.11);
    transform: translateY(-4px);
}

.ctus__info-card--accent {
    background: #33BF5D;
}

.ctus__info-card-h3 {
    font-size: 19px;
    line-height: 1.2;
    color: #1a2e1f;
    margin-bottom: 16px;
}

.ctus__info-card--accent .ctus__info-card-h3 {
    color: #fff;
}

.ctus__info-card-body {
    font-size: 16px;
    line-height: 1.55;
    color: #3a4a3d;
}

.ctus__info-card--accent .ctus__info-card-body {
    color: #d4f0dc;
}

.ctus__info-card-link {
    display: inline-block;
    margin-top: 16px;
    font-size: 16px;
    line-height: 1.2;
    color: #1b4d2e;
    text-decoration: none;
    font-weight: bold;
    position: relative;
    transition: color 0.35s ease-in-out;
}

.ctus__info-card-link::after {
    content: "";
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: #33BF5D;
    transition: width 0.38s ease-in-out;
}

.ctus__info-card-link:hover {
    color: #33BF5D;
}

.ctus__info-card-link:hover::after {
    width: 100%;
}

.ctus__info-card--accent .ctus__info-card-link {
    color: #fff;
}

.ctus__info-card--accent .ctus__info-card-link::after {
    background: #fff;
}

.ctus__info-card--accent .ctus__info-card-link:hover {
    color: #d4f0dc;
}

.ctus__img2-wrap {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 60px -1px rgba(51, 191, 93, 0.10);
    grid-column: span 2;
    height: 260px;
}

.ctus__img2-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.45s ease-in-out;
}

.ctus__img2-wrap:hover img {
    transform: scale(1.04);
}

.ctus__img2-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(160deg, rgba(220, 171, 197, 0.3) 0%, rgba(51, 191, 93, 0.22) 100%);
    pointer-events: none;
}

.ctus__img2-grid {
    position: absolute;
    inset: 0;
    opacity: 0;
    background-image:
        linear-gradient(rgba(220, 171, 197, 0.4) 1px, transparent 1px),
        linear-gradient(90deg, rgba(220, 171, 197, 0.4) 1px, transparent 1px);
    background-size: 32px 32px;
    transition: opacity 0.42s ease-in-out;
    pointer-events: none;
}

.ctus__img2-wrap:hover .ctus__img2-grid {
    opacity: 1;
}

.ctus__info-bottom {
    max-width: 1320px;
    margin: 32px auto 0;
    display: flex;
    flex-direction: row;
    gap: 32px;
    align-items: stretch;
}

.ctus__addr-block {
    flex: 1 1 0;
    background: #fff;
    border-radius: 12px;
    padding: 32px;
    box-shadow: 0 3px 3px -1px rgba(51, 191, 93, 0.07);
}

.ctus__addr-h4 {
    font-size: 19px;
    line-height: 1.2;
    color: #1a2e1f;
    margin-bottom: 16px;
}

.ctus__addr-p {
    font-size: 16px;
    line-height: 1.8;
    color: #3a4a3d;
}

.ctus__hours-block {
    flex: 1 1 0;
    background: #E3E6E5;
    border-radius: 12px;
    padding: 32px;
}

.ctus__hours-h4 {
    font-size: 19px;
    line-height: 1.2;
    color: #1a2e1f;
    margin-bottom: 16px;
}

.ctus__hours-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px 32px;
}

.ctus__hours-day {
    font-size: 16px;
    line-height: 1.55;
    color: #3a4a3d;
}

.ctus__hours-time {
    font-size: 16px;
    line-height: 1.55;
    color: #1b4d2e;
    font-weight: bold;
}

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

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

@media (max-width: 1100px) {
    .ctus__info-inner {
        grid-template-columns: 1fr 1fr;
    }

    .ctus__img2-wrap {
        grid-column: span 2;
    }
}

@media (max-width: 860px) {
    .ctus__opener-inner {
        flex-direction: column;
        align-items: flex-start;
    }

    .ctus__opener-img-wrap {
        flex: 0 0 auto;
        width: 100%;
        height: 220px;
    }

    .ctus__form-inner {
        flex-direction: column;
        gap: 48px;
    }

    .ctus__form-aside {
        flex: 0 0 auto;
        width: 100%;
    }

    .ctus__form-row {
        flex-direction: column;
        gap: 16px;
    }

    .ctus__info-bottom {
        flex-direction: column;
    }
}

@media (max-width: 640px) {
    .ctus__opener {
        padding: 48px 16px 32px;
    }

    .ctus__form-section {
        padding: 48px 16px;
    }

    .ctus__info-section {
        padding: 48px 16px 32px;
    }

    .ctus__info-inner {
        grid-template-columns: 1fr;
    }

    .ctus__img2-wrap {
        grid-column: span 1;
    }

    .ctus__opener-h1 {
        font-size: 32px;
    }

    .ctus__submit-wrap {
        flex-direction: column;
        align-items: flex-start;
        gap: 16px;
    }
}

.success-page {
    min-height: 80vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 96px 32px;
    background-color: #fff;
}

.success-page .confirm-card {
    background: #fff;
    border: 4px solid #33BF5D;
    border-radius: 3px;
    box-shadow: 0 7px 20px -1px rgba(51, 191, 93, 0.11);
    max-width: 560px;
    width: 100%;
    padding: 48px;
    text-align: left;
}

.success-page .confirm-card__icon {
    width: 56px;
    height: 56px;
    margin-bottom: 32px;
    display: block;
}

.success-page .confirm-card__heading {
    font-size: 32px;
    line-height: 1.2;
    color: #111;
    margin: 0 0 16px 0;
}

.success-page .confirm-card__text {
    font-size: 16px;
    line-height: 1.55;
    color: #2a2a2a;
    margin: 0 0 32px 0;
}

.success-page .confirm-card__detail {
    font-size: 16px;
    line-height: 1.55;
    color: #2a2a2a;
    margin: 0 0 32px 0;
    padding: 16px;
    background: #E3E6E5;
    border-radius: 3px;
}

.success-page .confirm-card__action {
    display: inline-block;
    font-size: 16px;
    line-height: 1.2;
    color: #fff;
    background: linear-gradient(135deg, #33BF5D 0%, #28a04e 100%);
    border: none;
    border-radius: 3px;
    padding: 16px 32px;
    text-decoration: none;
    cursor: pointer;
    transition: box-shadow 0.38s cubic-bezier(0.34, 1.2, 0.64, 1), transform 0.35s ease-in-out;
    box-shadow: 0 3px 3px -1px rgba(51, 191, 93, 0.07);
    position: relative;
    overflow: hidden;
}

.success-page .confirm-card__action:hover {
    box-shadow: 0 10px 60px -1px rgba(51, 191, 93, 0.10);
    transform: translateY(-2px);
}

.success-page .confirm-card__action:focus {
    outline: 3px solid #33BF5D;
    outline-offset: 3px;
}

.success-page .confirm-card__action:active {
    transform: translateY(0);
    box-shadow: 0 3px 3px -1px rgba(51, 191, 93, 0.07);
}

.success-page .confirm-card__divider {
    width: 48px;
    height: 4px;
    background: linear-gradient(90deg, #33BF5D, #DCABC5);
    border-radius: 0px;
    margin: 0 0 32px 0;
    border: none;
}

@media (max-width: 600px) {
    .success-page {
        padding: 48px 16px;
    }

    .success-page .confirm-card {
        padding: 32px 16px;
    }

    .success-page .confirm-card__heading {
        font-size: 24px;
    }
}