html {
box-sizing: border-box;
}

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

body {
margin: 0;
padding: 0;
}

.site-header {
font-family: 'Spectral', Georgia, serif;
background: linear-gradient(135deg, #ffffff 0%, #f4f8eb 55%, #e8f0f5 100%);
border-bottom: 2px solid #9CB633;
box-shadow: 0 6px 14px -2px rgba(156, 182, 51, 0.10);
position: relative;
overflow: hidden;
}

.site-header::before {
content: '';
position: absolute;
top: 0;
left: 0;
right: 0;
height: 4px;
background: linear-gradient(90deg, #9CB633 0%, #C0D4DD 50%, #E0C5DA 100%);
pointer-events: none;
}

.header-upper {
max-width: 1366px;
margin: 0 auto;
padding: 28px 56px 16px;
display: flex;
align-items: center;
justify-content: space-between;
gap: 28px;
}

.brand-group {
display: flex;
align-items: center;
gap: 16px;
flex-shrink: 0;
}

.brand-group__image-wrap {
display: flex;
align-items: center;
justify-content: center;
background: #ffffff;
border-radius: 28px;
padding: 8px 16px;
box-shadow: 0 1px 3px -2px rgba(156, 182, 51, 0.07), 0 6px 14px -2px rgba(156, 182, 51, 0.10);
border: 1.5px solid #C0D4DD;
width: 96px;
height: 68px;
}

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

.brand-group__wordmark {
display: flex;
flex-direction: column;
gap: 0;
}

.brand-group__name {
font-size: 32px;
font-weight: 700;
line-height: 1.2;
color: #2a3a0a;
letter-spacing: -0.03em;
text-decoration: none;
}

.brand-group__tagline {
font-size: 16px;
font-weight: 300;
font-style: italic;
line-height: 1.4;
color: #5a6e1a;
letter-spacing: 0.01em;
}

.header-contact-strip {
display: flex;
align-items: center;
gap: 28px;
flex-shrink: 0;
}

.contact-item {
display: flex;
align-items: center;
gap: 8px;
text-decoration: none;
font-size: 16px;
font-weight: 400;
line-height: 1.4;
color: #2a3a0a;
transition: color 0.28s ease-in-out;
font-family: 'Spectral', Georgia, serif;
}

.contact-item:hover {
color: #9CB633;
}

.contact-item:focus {
outline: 2px solid #9CB633;
outline-offset: 3px;
border-radius: 3px;
transform: scale(1.02);
}

.contact-item i {
font-size: 16px;
color: #9CB633;
flex-shrink: 0;
}

.header-lower {
background: linear-gradient(90deg, #9CB633 0%, #7a9228 100%);
border-top: 1px solid rgba(156, 182, 51, 0.3);
}

.primary-menu {
max-width: 1366px;
margin: 0 auto;
padding: 0 56px;
display: flex;
align-items: stretch;
gap: 0;
list-style: none;
margin-bottom: 0;
}

.primary-menu li {
display: flex;
align-items: stretch;
}

.primary-menu__link {
display: flex;
align-items: center;
gap: 8px;
padding: 16px 28px;
font-family: 'Spectral', Georgia, serif;
font-size: 16px;
font-weight: 600;
line-height: 1.4;
color: #ffffff;
text-decoration: none;
letter-spacing: 0.02em;
transition: background-color 0.25s cubic-bezier(0.4, 0, 0.2, 1), color 0.25s cubic-bezier(0.4, 0, 0.2, 1);
border-radius: 0;
white-space: nowrap;
min-height: 52px;
}

.primary-menu__link:hover {
background: rgba(255, 255, 255, 0.18);
color: #ffffff;
}

.primary-menu__link:focus {
outline: 2px solid #ffffff;
outline-offset: -3px;
transform: scale(1.02);
}

.primary-menu__link i {
font-size: 16px;
opacity: 0.85;
}

.primary-menu__link.active {
background: rgba(255, 255, 255, 0.22);
box-shadow: inset 0 -3px 0 #ffffff;
}

@media (max-width: 960px) {
.header-upper {
padding: 28px 28px 16px;
flex-wrap: wrap;
}

.header-contact-strip {
gap: 16px;
flex-wrap: wrap;
}

.primary-menu {
padding: 0 28px;
flex-wrap: wrap;
}

.primary-menu__link {
padding: 16px 16px;
}
}

@media (max-width: 480px) {
.header-upper {
padding: 16px 16px 8px;
gap: 16px;
}

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

.header-contact-strip {
flex-direction: column;
align-items: flex-start;
gap: 8px;
}

.primary-menu {
padding: 0 16px;
}

.primary-menu__link {
padding: 16px 8px;
font-size: 16px;
}
}

.site-footer {
font-family: 'Spectral', Georgia, serif;
background: linear-gradient(160deg, #2a3a0a 0%, #1e2d08 60%, #162208 100%);
position: relative;
overflow: hidden;
}

.site-footer::before {
content: '';
position: absolute;
top: 0;
left: 0;
right: 0;
height: 3px;
background: linear-gradient(90deg, #E0C5DA 0%, #9CB633 50%, #C0D4DD 100%);
pointer-events: none;
}

.site-footer::after {
content: '';
position: absolute;
bottom: -40px;
right: -40px;
width: 280px;
height: 280px;
border-radius: 50%;
background: rgba(156, 182, 51, 0.06);
pointer-events: none;
}

.footer-body {
max-width: 1366px;
margin: 0 auto;
padding: 56px 56px 28px;
display: flex;
flex-direction: column;
align-items: center;
gap: 28px;
position: relative;
z-index: 1;
}

.footer-brand {
display: flex;
flex-direction: column;
align-items: center;
gap: 16px;
}

.footer-brand__image-wrap {
display: flex;
align-items: center;
justify-content: center;
background: #ffffff;
border-radius: 18px;
padding: 8px 16px;
box-shadow: 0 1px 3px -2px rgba(156, 182, 51, 0.07), 0 6px 14px -2px rgba(156, 182, 51, 0.10);
border: 1.5px solid rgba(192, 212, 221, 0.4);
width: 80px;
height: 56px;
}

.footer-brand__image-wrap img {
width: 52px;
height: 40px;
object-fit: contain;
display: block;
}

.footer-brand__name {
font-size: 32px;
font-weight: 600;
line-height: 1.2;
color: #f0f5e0;
letter-spacing: -0.02em;
text-align: center;
}

.footer-brand__description {
font-size: 16px;
font-weight: 300;
font-style: italic;
line-height: 1.6;
color: #C0D4DD;
text-align: center;
max-width: 480px;
}

.footer-divider {
width: 96px;
height: 1px;
background: linear-gradient(90deg, transparent, #9CB633, transparent);
border: none;
margin: 0;
}

.footer-address {
display: flex;
flex-direction: column;
align-items: center;
gap: 8px;
}

.footer-address__line {
display: flex;
align-items: center;
gap: 8px;
font-size: 16px;
font-weight: 400;
line-height: 1.4;
color: #C0D4DD;
text-decoration: none;
transition: color 0.26s cubic-bezier(0.4, 0, 0.2, 1);
font-family: 'Spectral', Georgia, serif;
}

.footer-address__line:hover {
color: #9CB633;
}

.footer-address__line:focus {
outline: 2px solid #9CB633;
outline-offset: 3px;
border-radius: 3px;
transform: scale(1.02);
}

.footer-address__line i {
font-size: 16px;
color: #9CB633;
flex-shrink: 0;
}

.footer-address__text {
font-size: 16px;
font-weight: 400;
line-height: 1.4;
color: #C0D4DD;
display: flex;
align-items: center;
gap: 8px;
}

.footer-address__text i {
font-size: 16px;
color: #9CB633;
flex-shrink: 0;
}

.footer-links {
display: flex;
align-items: center;
gap: 28px;
flex-wrap: wrap;
justify-content: center;
list-style: none;
margin: 0;
padding: 0;
}

.footer-links li {
display: flex;
align-items: center;
}

.footer-links__item {
font-family: 'Spectral', Georgia, serif;
font-size: 16px;
font-weight: 400;
line-height: 1.4;
color: #C0D4DD;
text-decoration: none;
border-bottom: 1px solid rgba(192, 212, 221, 0.3);
padding-bottom: 1px;
transition: color 0.28s ease-in-out, border-color 0.28s ease-in-out;
white-space: nowrap;
}

.footer-links__item:hover {
color: #9CB633;
border-color: #9CB633;
}

.footer-links__item:focus {
outline: 2px solid #9CB633;
outline-offset: 3px;
border-radius: 3px;
transform: scale(1.02);
}

.footer-bottom {
width: 100%;
padding: 16px 0 0;
border-top: 1px solid rgba(192, 212, 221, 0.15);
display: flex;
align-items: center;
justify-content: center;
}

.footer-copyright {
font-size: 16px;
font-weight: 300;
line-height: 1.4;
color: rgba(192, 212, 221, 0.6);
text-align: center;
font-family: 'Spectral', Georgia, serif;
}

@media (max-width: 960px) {
.footer-body {
padding: 56px 28px 28px;
}
}

@media (max-width: 480px) {
.footer-body {
padding: 28px 16px 16px;
gap: 16px;
}

.footer-links {
gap: 16px;
flex-direction: column;
}
}

.agreement-text {
max-width: 1366px;
margin: 0 auto;
padding: 56px 28px;
}

.agreement-text p {
font-size: 16px;
line-height: 1.9;
margin-bottom: 28px;
color: #2d3a1e;
}

.agreement-text a {
color: #6a8020;
text-decoration: underline;
text-underline-offset: 3px;
transition: color 0.28s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.25s ease-in-out;
}

.agreement-text a:hover {
color: #9CB633;
opacity: 0.85;
}

.agreement-text a:active {
opacity: 0.65;
}

.agreement-text hr {
border: none;
border-top: 1.5px solid #C0D4DD;
margin: 56px 0;
border-radius: 3px;
}

.agreement-text div {
margin-bottom: 28px;
}

.agreement-text table {
width: 100%;
border-collapse: collapse;
margin-bottom: 56px;
font-size: 16px;
line-height: 1.6;
border-radius: 6px;
overflow: hidden;
box-shadow: 0 1px 3px -2px rgba(156, 182, 51, 0.07), 0 6px 14px -2px rgba(156, 182, 51, 0.10);
}

.agreement-text thead {
background-color: #9CB633;
}

.agreement-text thead th {
color: #ffffff;
font-size: 16px;
font-weight: 700;
letter-spacing: -0.01em;
padding: 16px 28px;
text-align: left;
line-height: 1.4;
}

.agreement-text tbody tr {
border-bottom: 1px solid #C0D4DD;
transition: background-color 0.25s ease-in-out;
}

.agreement-text tbody tr:last-child {
border-bottom: none;
}

.agreement-text tbody tr:nth-child(even) {
background-color: rgba(192, 212, 221, 0.15);
}

.agreement-text tbody tr:hover {
background-color: rgba(156, 182, 51, 0.07);
}

.agreement-text td {
padding: 16px 28px;
font-size: 16px;
line-height: 1.6;
color: #2d3a1e;
vertical-align: top;
}

.agreement-text th {
padding: 16px 28px;
}

@media (max-width: 960px) {
.agreement-text {
padding: 56px 16px;
}

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

.agreement-text td,
.agreement-text thead th {
padding: 16px;
}
}

@media (max-width: 480px) {
.agreement-text {
padding: 28px 16px;
}

.agreement-text p {
font-size: 16px;
line-height: 1.6;
margin-bottom: 16px;
}

.agreement-text hr {
margin: 28px 0;
}

.agreement-text table {
margin-bottom: 28px;
}

.agreement-text td,
.agreement-text thead th {
padding: 8px 16px;
}
}

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

.portal .grid-container {
max-width: 1366px;
margin-left: auto;
margin-right: auto;
padding-left: 28px;
padding-right: 28px;
}

.portal .dashed-divider {
border: none;
border-top: 1px dashed #C0D4DD;
margin: 0;
}

/* Drop-in animation */
@keyframes dropSettle {
0% {
opacity: 0;
transform: translateY(-28px);
}

70% {
opacity: 1;
transform: translateY(4px);
}

100% {
opacity: 1;
transform: translateY(0);
}
}

@keyframes desatCycle {
0% {
filter: saturate(1);
}

50% {
filter: saturate(0.4);
}

100% {
filter: saturate(1);
}
}

/* ===================== SECTION 1 - TITLE BLOCK ===================== */
.portal .title-block {
padding-top: 56px;
padding-bottom: 56px;
background-color: #f5f7f0;
position: relative;
overflow: hidden;
}

.portal .title-block .grid-container {
position: relative;
z-index: 2;
}

.portal .title-block__circles {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
pointer-events: none;
z-index: 1;
}

.portal .title-block__circle {
position: absolute;
border-radius: 50%;
background: transparent;
}

.portal .title-block__circle.large {
width: 320px;
height: 320px;
border: 2px solid rgba(156, 182, 51, 0.10);
top: -80px;
right: 120px;
}

.portal .title-block__circle.medium {
width: 180px;
height: 180px;
border: 2px solid rgba(192, 212, 221, 0.15);
top: 40px;
right: 260px;
}

.portal .title-block__circle.small {
width: 90px;
height: 90px;
border: 2px solid rgba(224, 197, 218, 0.18);
bottom: 16px;
left: 56px;
}

.portal .title-row {
display: flex;
flex-direction: row;
align-items: stretch;
gap: 28px;
}

.portal .title-image-col {
flex: 0 0 220px;
position: relative;
border-radius: 18px;
overflow: hidden;
animation: dropSettle 0.55s cubic-bezier(0.4, 0, 0.2, 1) both;
animation-delay: 0.08s;
}

.portal .title-image-col img {
width: 100%;
height: 100%;
object-fit: cover;
display: block;
filter: brightness(0.88);
transition: filter 0.38s ease-in-out;
}

.portal .title-image-col img:hover {
filter: brightness(1.05);
}

.portal .title-light-leak {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
pointer-events: none;
background: radial-gradient(ellipse at 0% 0%, rgba(224, 197, 218, 0.55) 0%, transparent 60%);
z-index: 2;
}

.portal .title-text-col {
flex: 1 1 0;
display: flex;
flex-direction: column;
justify-content: center;
animation: dropSettle 0.48s cubic-bezier(0.4, 0, 0.2, 1) both;
animation-delay: 0.18s;
}

.portal .title-label {
font-size: 16px;
line-height: 1.4;
color: #9CB633;
letter-spacing: 0.06em;
text-transform: uppercase;
margin-bottom: 16px;
}

.portal .title-heading {
font-size: 62px;
line-height: 1.2;
letter-spacing: -0.03em;
margin-bottom: 16px;
color: #2a2a2a;
}

.portal .title-heading .accent-half {
background: linear-gradient(247deg, #C0D4DD, #E0C5DA);
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
background-clip: text;
}

.portal .title-desc {
font-size: 16px;
line-height: 1.6;
color: #444;
max-width: 480px;
margin-bottom: 28px;
}

.portal .title-link {
display: inline-flex;
align-items: center;
gap: 8px;
font-size: 16px;
line-height: 1.4;
color: #fff;
background: #9CB633;
padding: 16px 28px;
border-radius: 6px;
text-decoration: none;
font-weight: 600;
box-shadow: 0 6px 14px -2px rgba(156, 182, 51, 0.10);
transition: transform 0.28s ease-in-out, box-shadow 0.28s ease-in-out;
align-self: flex-start;
}

.portal .title-link:hover {
transform: scale(1.04);
box-shadow: 0 10px 48px -2px rgba(156, 182, 51, 0.12);
}

/* ===================== SECTION 2 - CONTEXT ===================== */
.portal .context-block {
padding-top: 96px;
padding-bottom: 96px;
background: #fff;
}

.portal .context-block .grid-container {
display: grid;
grid-template-columns: 1fr 2fr;
gap: 56px;
align-items: start;
}

.portal .context-annotation {
position: sticky;
top: 56px;
}

.portal .context-annotation .abbrev-anchor {
font-size: 72px;
line-height: 1.2;
letter-spacing: -0.04em;
color: rgba(192, 212, 221, 0.22);
font-weight: 900;
display: block;
margin-bottom: 16px;
user-select: none;
}

.portal .context-annotation .side-note {
font-size: 16px;
line-height: 1.6;
color: #888;
border-left: 3px solid #C0D4DD;
border-top: 1px solid #E0C5DA;
padding: 16px;
border-radius: 3px;
}

.portal .context-body h2 {
font-size: 32px;
line-height: 1.2;
letter-spacing: -0.02em;
margin-bottom: 28px;
color: #2a2a2a;
}

.portal .context-body h2 .grad {
background: linear-gradient(247deg, #C0D4DD, #E0C5DA);
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
background-clip: text;
}

.portal .context-body p {
font-size: 16px;
line-height: 1.9;
color: #3a3a3a;
margin-bottom: 16px;
}

.portal .context-image-wrap {
margin-top: 28px;
border-radius: 18px;
overflow: hidden;
box-shadow: 0 6px 14px -2px rgba(156, 182, 51, 0.10);
animation: desatCycle 12s ease-in-out infinite;
}

.portal .context-image-wrap img {
width: 100%;
height: 260px;
object-fit: cover;
display: block;
filter: brightness(0.88);
transition: filter 0.35s ease-in-out;
}

.portal .context-image-wrap img:hover {
filter: brightness(1.06);
}

/* ===================== SECTION 3 - DIFFERENT ===================== */
.portal .different-block {
padding-top: 56px;
padding-bottom: 56px;
background: linear-gradient(247deg, #C0D4DD 0%, #E0C5DA 100%);
}

.portal .different-block .grid-container {
display: flex;
flex-direction: row;
gap: 56px;
align-items: center;
}

.portal .different-image-wrap {
flex: 0 0 340px;
border-radius: 28px;
overflow: hidden;
box-shadow: 0 10px 48px -2px rgba(156, 182, 51, 0.12);
}

.portal .different-image-wrap img {
width: 100%;
height: 380px;
object-fit: cover;
display: block;
filter: brightness(0.86);
transition: filter 0.32s cubic-bezier(0.4, 0, 0.2, 1);
}

.portal .different-image-wrap img:hover {
filter: brightness(1.04);
}

.portal .different-text {
flex: 1 1 0;
}

.portal .different-text h2 {
font-size: 32px;
line-height: 1.2;
letter-spacing: -0.02em;
color: #2a2a2a;
margin-bottom: 28px;
}

.portal .different-text h2 .grad {
background: linear-gradient(247deg, #4a6a10, #9CB633);
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
background-clip: text;
}

.portal .different-points {
list-style: none;
padding: 0;
margin: 0;
display: flex;
flex-direction: column;
gap: 28px;
}

.portal .different-points li {
display: flex;
flex-direction: row;
align-items: flex-start;
gap: 16px;
}

.portal .point-bullet {
flex: 0 0 auto;
width: 14px;
height: 14px;
border-radius: 50%;
background: #9CB633;
margin-top: 4px;
box-shadow: 0 1px 3px -2px rgba(156, 182, 51, 0.07);
}

.portal .point-text {
font-size: 16px;
line-height: 1.6;
color: #2a2a2a;
}

.portal .point-text strong {
display: block;
font-size: 16px;
font-weight: 700;
margin-bottom: 8px;
color: #1e3a00;
}

/* ===================== SECTION 4 - WORKING RELATIONSHIP ===================== */
.portal .working-block {
padding-top: 96px;
padding-bottom: 96px;
background: #f5f7f0;
}

.portal .working-block .grid-container {
display: grid;
grid-template-columns: repeat(4, 1fr);
gap: 16px;
align-items: start;
}

.portal .working-header {
grid-column: 1 / -1;
margin-bottom: 28px;
}

.portal .working-header h2 {
font-size: 32px;
line-height: 1.2;
letter-spacing: -0.02em;
color: #2a2a2a;
}

.portal .working-header h2 .grad {
background: linear-gradient(247deg, #C0D4DD, #E0C5DA);
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
background-clip: text;
}

.portal .working-header p {
font-size: 16px;
line-height: 1.6;
color: #555;
max-width: 600px;
margin-top: 16px;
}

.portal .step-card {
background: #fff;
border-radius: 18px;
padding: 28px;
box-shadow: 0 1px 3px -2px rgba(156, 182, 51, 0.07);
transition: box-shadow 0.26s ease-in-out, transform 0.26s ease-in-out;
animation: dropSettle 0.5s cubic-bezier(0.4, 0, 0.2, 1) both;
}

.portal .step-card:hover {
box-shadow: 0 10px 48px -2px rgba(156, 182, 51, 0.12);
transform: translateY(-4px);
}

.portal .step-card:nth-child(2) {
animation-delay: 0.05s;
}

.portal .step-card:nth-child(3) {
animation-delay: 0.10s;
}

.portal .step-card:nth-child(4) {
animation-delay: 0.15s;
}

.portal .step-card:nth-child(5) {
animation-delay: 0.20s;
}

.portal .step-number {
font-size: 32px;
line-height: 1.2;
font-weight: 900;
color: rgba(156, 182, 51, 0.18);
margin-bottom: 16px;
letter-spacing: -0.03em;
}

.portal .step-card h4 {
font-size: 16px;
line-height: 1.4;
font-weight: 700;
color: #2a2a2a;
margin-bottom: 8px;
}

.portal .step-card p {
font-size: 16px;
line-height: 1.6;
color: #555;
margin: 0;
}

/* ===================== SECTION 5 - SITUATIONS ===================== */
.portal .situations-block {
padding-top: 56px;
padding-bottom: 56px;
background: #fff;
position: relative;
}

.portal .situations-block .grid-container {
display: flex;
flex-direction: row;
gap: 56px;
align-items: flex-start;
}

.portal .situations-text {
flex: 1 1 0;
}

.portal .situations-text h2 {
font-size: 32px;
line-height: 1.2;
letter-spacing: -0.02em;
color: #2a2a2a;
margin-bottom: 16px;
}

.portal .situations-text h2 .grad {
background: linear-gradient(247deg, #C0D4DD, #E0C5DA);
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
background-clip: text;
}

.portal .situations-text p {
font-size: 16px;
line-height: 1.9;
color: #3a3a3a;
margin-bottom: 16px;
}

.portal .situation-list {
list-style: none;
padding: 0;
margin: 28px 0 0;
display: flex;
flex-direction: column;
gap: 16px;
}

.portal .situation-list li {
display: flex;
flex-direction: row;
align-items: flex-start;
gap: 16px;
padding: 16px;
border-radius: 6px;
background: #f5f7f0;
border-left: 4px solid #9CB633;
border-top: 1px solid #C0D4DD;
}

.portal .situation-list li .ri-check-line {
color: #9CB633;
font-size: 16px;
margin-top: 2px;
flex: 0 0 auto;
}

.portal .situation-list li span {
font-size: 16px;
line-height: 1.6;
color: #2a2a2a;
}

.portal .situations-visual {
flex: 0 0 300px;
position: relative;
}

.portal .situations-image-wrap {
border-radius: 18px;
overflow: hidden;
box-shadow: 0 6px 14px -2px rgba(192, 212, 221, 0.10);
}

.portal .situations-image-wrap img {
width: 100%;
height: 340px;
object-fit: cover;
display: block;
filter: brightness(0.87);
transition: filter 0.36s cubic-bezier(0.4, 0, 0.2, 1);
}

.portal .situations-image-wrap img:hover {
filter: brightness(1.05);
}

.portal .situations-abbrev {
font-size: 72px;
line-height: 1.2;
font-weight: 900;
color: rgba(192, 212, 221, 0.20);
letter-spacing: -0.04em;
user-select: none;
margin-top: 8px;
text-align: right;
}

/* ===================== SECTION 6 - TEAM ===================== */
.portal .team-block {
padding-top: 96px;
padding-bottom: 96px;
position: relative;
overflow: hidden;
}

.portal .team-block-bg {
position: absolute;
inset: 0;
background-image: url('./image_pool/MAP005.jpg');
background-size: cover;
background-position: center;
filter: blur(14px) saturate(0.5) brightness(0.35);
-webkit-filter: blur(14px) saturate(0.5) brightness(0.35);
z-index: 0;
animation: desatCycle 16s ease-in-out infinite;
}

.portal .team-block .grid-container {
position: relative;
z-index: 2;
}

.portal .team-header {
text-align: center;
margin-bottom: 56px;
}

.portal .team-header h2 {
font-size: 32px;
line-height: 1.2;
letter-spacing: -0.02em;
color: #fff;
margin-bottom: 16px;
}

.portal .team-header h2 .grad {
background: linear-gradient(247deg, #C0D4DD, #E0C5DA);
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
background-clip: text;
}

.portal .team-header p {
font-size: 16px;
line-height: 1.6;
color: rgba(255, 255, 255, 0.82);
max-width: 560px;
margin: 0 auto;
}

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

.portal .team-card {
background: rgba(255, 255, 255, 0.10);
backdrop-filter: blur(12px);
-webkit-backdrop-filter: blur(12px);
border-radius: 28px;
padding: 28px;
border: 1px solid rgba(192, 212, 221, 0.25);
box-shadow: 0 6px 14px -2px rgba(192, 212, 221, 0.10);
transition: box-shadow 0.34s cubic-bezier(0.4, 0, 0.2, 1), transform 0.34s cubic-bezier(0.4, 0, 0.2, 1);
}

.portal .team-card:hover {
box-shadow: 0 10px 48px -2px rgba(192, 212, 221, 0.12);
transform: translateY(-6px);
}

.portal .team-card h5 {
font-size: 16px;
line-height: 1.4;
font-weight: 700;
color: #fff;
margin-bottom: 8px;
}

.portal .team-card .role {
font-size: 16px;
line-height: 1.4;
color: #9CB633;
margin-bottom: 16px;
font-weight: 600;
text-transform: uppercase;
letter-spacing: 0.05em;
}

.portal .team-card p {
font-size: 16px;
line-height: 1.6;
color: rgba(255, 255, 255, 0.78);
margin: 0;
}

.portal .team-metrics {
display: grid;
grid-template-columns: repeat(3, 1fr);
gap: 16px;
margin-top: 56px;
}

.portal .metric-item {
text-align: center;
padding: 28px 16px;
background: rgba(156, 182, 51, 0.14);
border-radius: 18px;
border: 1px solid rgba(156, 182, 51, 0.22);
}

.portal .metric-value {
font-size: 32px;
line-height: 1.2;
font-weight: 900;
color: #9CB633;
letter-spacing: -0.03em;
display: block;
}

.portal .metric-label {
font-size: 16px;
line-height: 1.4;
color: rgba(255, 255, 255, 0.75);
margin-top: 8px;
display: block;
}

/* ===================== RESPONSIVE ===================== */
@media (max-width: 960px) {
.portal .title-row {
flex-direction: column;
}

.portal .title-image-col {
flex: 0 0 180px;
height: 180px;
}

.portal .title-heading {
font-size: 32px;
}

.portal .context-block .grid-container {
grid-template-columns: 1fr;
gap: 28px;
}

.portal .context-annotation {
position: static;
}

.portal .context-annotation .abbrev-anchor {
font-size: 32px;
}

.portal .different-block .grid-container {
flex-direction: column;
gap: 28px;
}

.portal .different-image-wrap {
flex: 0 0 auto;
width: 100%;
}

.portal .working-block .grid-container {
grid-template-columns: repeat(2, 1fr);
}

.portal .working-header {
grid-column: 1 / -1;
}

.portal .situations-block .grid-container {
flex-direction: column;
gap: 28px;
}

.portal .situations-visual {
flex: 0 0 auto;
width: 100%;
}

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

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

@media (max-width: 480px) {
.portal .title-heading {
font-size: 32px;
}

.portal .working-block .grid-container {
grid-template-columns: 1fr;
}

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

.portal .team-metrics {
grid-template-columns: 1fr;
}

.portal .different-image-wrap img {
height: 220px;
}

.portal .situations-image-wrap img {
height: 200px;
}
}

.contact-us-page {
max-width: 1366px;
margin: 0 auto;
overflow: hidden;
}

.contact-us-page .form-panel {
display: grid;
grid-template-columns: 340px 1fr;
gap: 56px;
padding: 96px 56px;
background: linear-gradient(247deg, #E0C5DA 0%, #f7f4f6 60%, #ffffff 100%);
position: relative;
}

.contact-us-page .form-panel::before {
content: '';
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
background-image: repeating-radial-gradient(circle at 0% 0%, transparent 0, transparent 18px, rgba(156, 182, 51, 0.06) 19px, transparent 20px);
pointer-events: none;
}

.contact-us-page .blob-layer {
position: absolute;
top: -40px;
right: 80px;
width: 320px;
height: 320px;
background: linear-gradient(247deg, rgba(192, 212, 221, 0.35), rgba(224, 197, 218, 0.25));
border-radius: 60% 40% 55% 45% / 50% 60% 40% 50%;
filter: blur(48px);
pointer-events: none;
z-index: 0;
}

.contact-us-page .blob-layer-two {
position: absolute;
bottom: 40px;
left: 60px;
width: 200px;
height: 200px;
background: linear-gradient(247deg, rgba(156, 182, 51, 0.15), rgba(192, 212, 221, 0.2));
border-radius: 40% 60% 45% 55% / 60% 40% 60% 40%;
filter: blur(36px);
pointer-events: none;
z-index: 0;
}

.contact-us-page .form-panel__left {
position: relative;
z-index: 1;
display: flex;
flex-direction: column;
gap: 28px;
}

.contact-us-page .panel-image-col {
border-radius: 18px;
overflow: hidden;
width: 100%;
height: 220px;
box-shadow: 0 6px 14px -2px rgba(156, 182, 51, 0.10);
}

.contact-us-page .panel-image-col img {
width: 100%;
height: 100%;
object-fit: cover;
display: block;
filter: brightness(0.92) contrast(1.05);
}

.contact-us-page .panel-label {
font-size: 16px;
line-height: 1.4;
color: #3d3d3d;
letter-spacing: 0.01em;
}

.contact-us-page .panel-heading {
font-size: 32px;
line-height: 1.2;
letter-spacing: -0.03em;
margin: 0;
background: linear-gradient(247deg, #9CB633, #C0D4DD);
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
background-clip: text;
}

.contact-us-page .panel-heading .bracket-word {
color: #9CB633 !important;
-webkit-text-fill-color: #9CB633 !important;
}

.contact-us-page .contact-meta {
display: flex;
flex-direction: column;
gap: 16px;
}

.contact-us-page .meta-item {
display: flex;
flex-direction: row;
align-items: flex-start;
gap: 8px;
}

.contact-us-page .meta-item i {
font-size: 16px;
color: #9CB633;
margin-top: 2px;
flex-shrink: 0;
}

.contact-us-page .meta-text {
font-size: 16px;
line-height: 1.6;
color: #2e2e2e;
}

.contact-us-page .meta-text a {
color: #2e2e2e;
text-decoration: underline;
text-underline-offset: 4px;
transition: color 0.25s ease-in-out;
}

.contact-us-page .meta-text a:hover {
color: #9CB633;
}

.contact-us-page .form-panel__right {
position: relative;
z-index: 1;
display: flex;
flex-direction: column;
gap: 28px;
}

.contact-us-page .form-intro {
font-size: 16px;
line-height: 1.6;
color: #3d3d3d;
max-width: 520px;
}

.contact-us-page .contact-form {
display: flex;
flex-direction: column;
gap: 16px;
}

.contact-us-page .field-row {
display: grid;
grid-template-columns: 1fr 1fr;
gap: 16px;
}

.contact-us-page .field-group {
display: flex;
flex-direction: column;
gap: 8px;
}

.contact-us-page .field-group label {
font-size: 16px;
line-height: 1.4;
color: #2e2e2e;
font-weight: 600;
letter-spacing: 0.02em;
}

.contact-us-page .field-group input[type="text"],
.contact-us-page .field-group input[type="email"],
.contact-us-page .field-group input[type="tel"] {
padding: 16px;
border: 1.5px solid rgba(192, 212, 221, 0.7);
border-radius: 6px;
font-size: 16px;
line-height: 1.4;
color: #2e2e2e;
background: rgba(255, 255, 255, 0.85);
outline: none;
transition: border-color 0.28s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.28s cubic-bezier(0.4, 0, 0.2, 1);
width: 100%;
}

.contact-us-page .field-group input::placeholder {
text-transform: uppercase;
font-size: 16px;
color: #9aabae;
letter-spacing: 0.04em;
}

.contact-us-page .field-group input:focus {
border-color: #9CB633;
box-shadow: 0 6px 14px -2px rgba(156, 182, 51, 0.10);
}

.contact-us-page .checkboxes-group {
display: flex;
flex-direction: column;
gap: 8px;
}

.contact-us-page .checkboxes-group legend {
font-size: 16px;
line-height: 1.4;
color: #2e2e2e;
font-weight: 600;
letter-spacing: 0.02em;
margin-bottom: 8px;
}

.contact-us-page .checkbox-option {
display: flex;
flex-direction: row;
align-items: center;
gap: 8px;
cursor: pointer;
padding: 8px 16px;
border-radius: 6px;
border: 1.5px solid rgba(192, 212, 221, 0.5);
background: rgba(255, 255, 255, 0.7);
transition: border-color 0.25s ease-in-out, background 0.25s ease-in-out;
}

.contact-us-page .checkbox-option:hover {
border-color: #9CB633;
background: rgba(156, 182, 51, 0.05);
}

.contact-us-page .checkbox-option input[type="checkbox"] {
width: 18px;
height: 18px;
accent-color: #9CB633;
cursor: pointer;
flex-shrink: 0;
}

.contact-us-page .checkbox-option input[type="checkbox"]:checked {
box-shadow: inset 0 1px 3px -1px rgba(156, 182, 51, 0.3);
}

.contact-us-page .checkbox-label {
font-size: 16px;
line-height: 1.4;
color: #2e2e2e;
}

.contact-us-page .privacy-row {
display: flex;
flex-direction: row;
align-items: flex-start;
gap: 8px;
padding: 16px;
border-radius: 6px;
background: rgba(192, 212, 221, 0.15);
border: 1.5px solid rgba(192, 212, 221, 0.4);
}

.contact-us-page .privacy-row input[type="checkbox"] {
width: 18px;
height: 18px;
accent-color: #9CB633;
cursor: pointer;
flex-shrink: 0;
margin-top: 2px;
}

.contact-us-page .privacy-row input[type="checkbox"]:checked {
box-shadow: inset 0 1px 3px -1px rgba(156, 182, 51, 0.3);
}

.contact-us-page .privacy-text {
font-size: 16px;
line-height: 1.6;
color: #3d3d3d;
}

.contact-us-page .privacy-text a {
color: #9CB633;
text-decoration: underline;
text-underline-offset: 4px;
transition: color 0.26s ease-in-out;
}

.contact-us-page .privacy-text a:hover {
color: #7a9128;
}

.contact-us-page .submit-btn {
display: inline-flex;
align-items: center;
gap: 8px;
padding: 16px 56px;
background: #9CB633;
color: #ffffff;
font-size: 16px;
line-height: 1.4;
font-weight: 700;
letter-spacing: 0.04em;
border: none;
border-radius: 6px;
cursor: pointer;
align-self: flex-start;
box-shadow: 0 6px 14px -2px rgba(156, 182, 51, 0.10);
transition: transform 0.26s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.26s cubic-bezier(0.4, 0, 0.2, 1), background 0.26s cubic-bezier(0.4, 0, 0.2, 1);
}

.contact-us-page .submit-btn:hover {
transform: scale(1.04);
background: #8aa82e;
box-shadow: 0 10px 48px -2px rgba(156, 182, 51, 0.12);
}

.contact-us-page .submit-btn:focus {
outline: 2px solid #9CB633;
outline-offset: 3px;
}

.contact-us-page .submit-btn:active {
box-shadow: inset 0 2px 6px -1px rgba(156, 182, 51, 0.25);
transform: scale(0.98);
}

.contact-us-page .details-strip {
display: grid;
grid-template-columns: 1fr 340px;
gap: 0;
background: #ffffff;
border-top: 2px dotted rgba(156, 182, 51, 0.3);
border-bottom: 2px dotted rgba(192, 212, 221, 0.5);
padding: 56px;
position: relative;
}

.contact-us-page .details-strip::after {
content: '';
position: absolute;
bottom: -8px;
left: 0;
width: 100%;
height: 2px;
border-bottom: 2px dotted rgba(224, 197, 218, 0.4);
}

.contact-us-page .strip-text-col {
display: flex;
flex-direction: column;
gap: 16px;
padding-right: 56px;
border-right: 1.5px solid rgba(192, 212, 221, 0.4);
}

.contact-us-page .strip-heading {
font-size: 32px;
line-height: 1.2;
letter-spacing: -0.03em;
margin: 0;
color: #2e2e2e;
}

.contact-us-page .strip-heading .accent-bracket {
color: #9CB633 !important;
}

.contact-us-page .strip-body {
font-size: 16px;
line-height: 1.9;
color: #3d3d3d;
max-width: 480px;
}

.contact-us-page .strip-aside {
font-size: 16px;
line-height: 1.6;
color: #7a7a7a;
border-left: 3px solid rgba(224, 197, 218, 0.7);
padding-left: 16px;
align-self: flex-start;
margin-top: 8px;
}

.contact-us-page .strip-image-col {
display: flex;
flex-direction: column;
justify-content: center;
padding-left: 56px;
gap: 16px;
}

.contact-us-page .strip-image-frame {
border-radius: 18px;
overflow: hidden;
width: 100%;
height: 200px;
box-shadow: 0 1px 3px -2px rgba(192, 212, 221, 0.07), 0 6px 14px -2px rgba(192, 212, 221, 0.10);
}

.contact-us-page .strip-image-frame img {
width: 100%;
height: 100%;
object-fit: cover;
display: block;
}

.contact-us-page .strip-tag {
font-size: 16px;
line-height: 1.4;
color: #9CB633;
font-weight: 600;
letter-spacing: 0.05em;
text-transform: uppercase;
}

.contact-us-page .animate-in {
opacity: 0;
transform: translateY(16px);
box-shadow: 0 0px 0px -2px rgba(156, 182, 51, 0);
animation: rise-in 0.38s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

.contact-us-page .animate-in:nth-child(1) {
animation-delay: 0.08s;
}

.contact-us-page .animate-in:nth-child(2) {
animation-delay: 0.18s;
}

.contact-us-page .animate-in:nth-child(3) {
animation-delay: 0.28s;
}

.contact-us-page .animate-in:nth-child(4) {
animation-delay: 0.38s;
}

.contact-us-page .animate-in:nth-child(5) {
animation-delay: 0.48s;
}

@keyframes rise-in {
0% {
opacity: 0;
transform: translateY(16px);
box-shadow: 0 0px 0px -2px rgba(156, 182, 51, 0);
}

100% {
opacity: 1;
transform: translateY(0);
box-shadow: 0 6px 14px -2px rgba(156, 182, 51, 0.10);
}
}

@media (max-width: 960px) {
.contact-us-page .form-panel {
grid-template-columns: 1fr;
padding: 56px 28px;
gap: 28px;
}

.contact-us-page .field-row {
grid-template-columns: 1fr;
}

.contact-us-page .details-strip {
grid-template-columns: 1fr;
padding: 56px 28px;
gap: 28px;
}

.contact-us-page .strip-text-col {
border-right: none;
border-bottom: 1.5px solid rgba(192, 212, 221, 0.4);
padding-right: 0;
padding-bottom: 28px;
}

.contact-us-page .strip-image-col {
padding-left: 0;
}
}

@media (max-width: 480px) {
.contact-us-page .form-panel {
padding: 56px 16px;
}

.contact-us-page .details-strip {
padding: 56px 16px;
}

.contact-us-page .submit-btn {
width: 100%;
justify-content: center;
padding: 16px 28px;
}

.contact-us-page .panel-heading {
font-size: 32px;
}
}

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

.about-us-page ::selection {
background: rgba(156, 182, 51, 0.18);
color: #2a2a2a;
}

.about-us-page .page-bound {
max-width: 1366px;
margin: 0 auto;
padding: 0 28px;
}

.about-us-page .gradient-text {
background: linear-gradient(247deg, #C0D4DD, #E0C5DA);
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
background-clip: text;
}

.about-us-page .divider-line {
height: 1px;
background: linear-gradient(to right, #9CB633 0%, #C0D4DD 40%, transparent 100%);
border: none;
margin: 0;
}

.about-us-page .identity-block {
background: #f4f6ee;
padding: 96px 0 0 0;
position: relative;
}

.about-us-page .identity-block .inner-grid {
display: grid;
grid-template-columns: 1fr 1.7fr;
gap: 56px;
align-items: stretch;
}

.about-us-page .identity-block .image-column {
position: relative;
min-height: 480px;
border-radius: 18px;
overflow: hidden;
}

.about-us-page .identity-block .image-column img {
width: 100%;
height: 100%;
object-fit: cover;
display: block;
filter: grayscale(18%) contrast(1.04);
opacity: 0.82;
}

.about-us-page .identity-block .grain-overlay {
position: absolute;
inset: 0;
background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='200' height='200'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3CfeColorMatrix type='saturate' values='0'/%3E%3C/filter%3E%3Crect width='200' height='200' filter='url(%23noise)' opacity='0.09'/%3E%3C/svg%3E");
border-radius: 18px;
pointer-events: none;
}

.about-us-page .identity-block .image-column .year-badge {
position: absolute;
bottom: 28px;
left: 28px;
background: rgba(156, 182, 51, 0.92);
color: #fff;
padding: 8px 16px;
border-radius: 6px;
font-size: 16px;
line-height: 1.2;
font-weight: 700;
letter-spacing: -0.02em;
box-shadow: 0 6px 14px -2px rgba(156, 182, 51, 0.10);
}

.about-us-page .identity-block .text-column {
display: flex;
flex-direction: column;
justify-content: center;
padding: 56px 0 96px 0;
}

.about-us-page .identity-block .text-column .eyebrow {
font-size: 16px;
line-height: 1.4;
color: #9CB633;
letter-spacing: 0.08em;
text-transform: uppercase;
margin-bottom: 16px;
font-weight: 600;
}

.about-us-page .identity-block .text-column h1 {
font-size: 72px;
line-height: 1.2;
letter-spacing: -0.03em;
color: #232b14;
margin-bottom: 28px;
font-weight: 800;
}

.about-us-page .identity-block .text-column h1 .accent {
background: linear-gradient(247deg, #9CB633, #C0D4DD);
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
background-clip: text;
}

.about-us-page .identity-block .text-column .lead-note {
font-size: 16px;
line-height: 1.9;
color: #3a3a3a;
max-width: 520px;
margin-bottom: 28px;
}

.about-us-page .identity-block .text-column .lead-note strong {
color: #232b14;
font-weight: 700;
}

.about-us-page .identity-block .wave-divider {
display: block;
width: 100%;
margin-bottom: -2px;
}

.about-us-page .identity-block .side-note-row {
display: flex;
flex-direction: row;
gap: 28px;
align-items: flex-start;
margin-top: 16px;
}

.about-us-page .identity-block .side-note {
font-size: 16px;
line-height: 1.6;
color: #7a8a5a;
min-width: 120px;
max-width: 140px;
border-right: 2px solid #C0D4DD;
padding-right: 16px;
font-style: italic;
}

.about-us-page .identity-block .side-note-text {
font-size: 16px;
line-height: 1.6;
color: #3a3a3a;
flex: 1;
}

.about-us-page .method-block {
background: #fff;
padding: 96px 0;
position: relative;
}

.about-us-page .method-block .two-col {
display: grid;
grid-template-columns: 1fr 1fr;
gap: 0;
border-radius: 18px;
overflow: hidden;
box-shadow: 0 10px 48px -2px rgba(156, 182, 51, 0.12);
}

.about-us-page .method-block .col-dark {
background: #232b14;
padding: 56px;
display: flex;
flex-direction: column;
justify-content: space-between;
position: relative;
}

.about-us-page .method-block .col-dark .quote-mark {
font-size: 72px;
line-height: 1.2;
color: rgba(156, 182, 51, 0.22);
font-weight: 900;
margin-bottom: 16px;
display: block;
letter-spacing: -0.04em;
user-select: none;
}

.about-us-page .method-block .col-dark h2 {
font-size: 32px;
line-height: 1.2;
letter-spacing: -0.02em;
color: #f4f6ee;
margin-bottom: 28px;
font-weight: 700;
}

.about-us-page .method-block .col-dark h2 .accent {
background: linear-gradient(247deg, #C0D4DD, #E0C5DA);
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
background-clip: text;
}

.about-us-page .method-block .col-dark .body-text {
font-size: 16px;
line-height: 1.9;
color: #b8c4a0;
margin-bottom: 28px;
}

.about-us-page .method-block .col-dark .stat-row {
display: flex;
flex-direction: row;
gap: 28px;
margin-top: 16px;
}

.about-us-page .method-block .col-dark .stat-item {
display: flex;
flex-direction: column;
gap: 8px;
}

.about-us-page .method-block .col-dark .stat-number {
font-size: 32px;
line-height: 1.2;
font-weight: 800;
color: #9CB633;
letter-spacing: -0.03em;
}

.about-us-page .method-block .col-dark .stat-label {
font-size: 16px;
line-height: 1.4;
color: #7a8a5a;
}

.about-us-page .method-block .col-light {
background: #f4f6ee;
padding: 56px;
display: flex;
flex-direction: column;
gap: 28px;
}

.about-us-page .method-block .col-light h3 {
font-size: 32px;
line-height: 1.2;
letter-spacing: -0.02em;
color: #232b14;
font-weight: 700;
margin-bottom: 8px;
}

.about-us-page .method-block .col-light h3 .accent {
background: linear-gradient(247deg, #9CB633, #C0D4DD);
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
background-clip: text;
}

.about-us-page .method-block .process-list {
list-style: none;
margin: 0;
padding: 0;
display: flex;
flex-direction: column;
gap: 16px;
}

.about-us-page .method-block .process-list li {
display: flex;
flex-direction: row;
align-items: flex-start;
gap: 16px;
font-size: 16px;
line-height: 1.6;
color: #3a3a3a;
}

.about-us-page .method-block .process-list .bullet {
width: 28px;
height: 28px;
min-width: 28px;
border-radius: 6px;
background: linear-gradient(247deg, #9CB633, #C0D4DD);
display: flex;
align-items: center;
justify-content: center;
margin-top: 2px;
}

.about-us-page .method-block .process-list .bullet i {
font-size: 16px;
color: #fff;
}

.about-us-page .method-block .image-texture {
width: 100%;
height: 180px;
border-radius: 6px;
overflow: hidden;
position: relative;
margin-top: 8px;
}

.about-us-page .method-block .image-texture img {
width: 100%;
height: 100%;
object-fit: cover;
opacity: 0.18;
display: block;
}

.about-us-page .method-block .image-texture .overlay-text {
position: absolute;
inset: 0;
display: flex;
align-items: center;
justify-content: center;
font-size: 16px;
line-height: 1.4;
color: #232b14;
font-weight: 700;
text-align: center;
padding: 16px;
}

.about-us-page .team-block {
background: linear-gradient(247deg, #C0D4DD 0%, #E0C5DA 100%);
padding: 96px 0;
position: relative;
animation: brightness-pulse 6s ease-in-out infinite;
}

@keyframes brightness-pulse {

0%,
100% {
filter: brightness(1);
}

50% {
filter: brightness(1.04);
}
}

.about-us-page .team-block .block-header {
text-align: center;
margin-bottom: 56px;
}

.about-us-page .team-block .block-header h2 {
font-size: 62px;
line-height: 1.2;
letter-spacing: -0.03em;
color: #232b14;
font-weight: 800;
margin-bottom: 16px;
}

.about-us-page .team-block .block-header h2 .accent {
background: linear-gradient(247deg, #9CB633, #232b14);
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
background-clip: text;
}

.about-us-page .team-block .block-header p {
font-size: 16px;
line-height: 1.9;
color: #3a3a3a;
max-width: 560px;
margin: 0 auto;
}

.about-us-page .team-block .trust-grid {
display: grid;
grid-template-columns: 1.4fr 1fr;
gap: 28px;
align-items: start;
}

.about-us-page .team-block .person-cards {
display: flex;
flex-direction: column;
gap: 16px;
}

.about-us-page .team-block .person-card {
background: rgba(255, 255, 255, 0.72);
-webkit-backdrop-filter: blur(8px);
backdrop-filter: blur(8px);
border-radius: 18px;
padding: 28px;
display: flex;
flex-direction: row;
gap: 16px;
align-items: flex-start;
box-shadow: 0 6px 14px -2px rgba(156, 182, 51, 0.10);
transition: box-shadow 0.28s ease-in-out, transform 0.22s cubic-bezier(0.4, 0, 0.2, 1);
border: 1px solid rgba(192, 212, 221, 0.4);
}

.about-us-page .team-block .person-card:hover {
box-shadow: 0 10px 48px -2px rgba(156, 182, 51, 0.12);
transform: translateY(-2px);
}

.about-us-page .team-block .person-card .avatar {
width: 56px;
height: 56px;
min-width: 56px;
border-radius: 18px;
background: linear-gradient(247deg, #9CB633, #C0D4DD);
display: flex;
align-items: center;
justify-content: center;
}

.about-us-page .team-block .person-card .avatar i {
font-size: 32px;
color: #fff;
}

.about-us-page .team-block .person-card .person-info {
flex: 1;
}

.about-us-page .team-block .person-card h5 {
font-size: 16px;
line-height: 1.4;
color: #232b14;
font-weight: 700;
margin-bottom: 8px;
}

.about-us-page .team-block .person-card .role-tag {
display: inline-block;
font-size: 16px;
line-height: 1.2;
color: #7a8a5a;
background: rgba(156, 182, 51, 0.12);
padding: 4px 8px;
border-radius: 3px;
margin-bottom: 8px;
font-weight: 600;
letter-spacing: 0.04em;
text-transform: uppercase;
font-size: 16px;
}

.about-us-page .team-block .person-card .quote {
font-size: 16px;
line-height: 1.6;
color: #4a4a4a;
font-style: italic;
}

.about-us-page .team-block .trust-panel {
background: #232b14;
border-radius: 18px;
padding: 56px 28px;
display: flex;
flex-direction: column;
gap: 28px;
box-shadow: 0 10px 48px -2px rgba(156, 182, 51, 0.12);
}

.about-us-page .team-block .trust-panel h4 {
font-size: 32px;
line-height: 1.2;
color: #f4f6ee;
font-weight: 700;
letter-spacing: -0.02em;
}

.about-us-page .team-block .trust-panel h4 .accent {
background: linear-gradient(247deg, #C0D4DD, #E0C5DA);
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
background-clip: text;
}

.about-us-page .team-block .trust-signals {
display: flex;
flex-direction: column;
gap: 16px;
}

.about-us-page .team-block .signal-item {
display: flex;
flex-direction: row;
align-items: center;
gap: 16px;
padding: 16px;
border-radius: 6px;
background: rgba(156, 182, 51, 0.08);
border: 1px solid rgba(156, 182, 51, 0.18);
transition: background 0.35s ease-in-out, border-color 0.35s ease-in-out;
}

.about-us-page .team-block .signal-item:hover {
background: rgba(156, 182, 51, 0.16);
border-color: rgba(156, 182, 51, 0.32);
}

.about-us-page .team-block .signal-item i {
font-size: 32px;
color: #9CB633;
min-width: 32px;
}

.about-us-page .team-block .signal-item .signal-text {
font-size: 16px;
line-height: 1.6;
color: #b8c4a0;
}

.about-us-page .team-block .signal-item .signal-text strong {
color: #f4f6ee;
display: block;
font-weight: 700;
margin-bottom: 4px;
}

.about-us-page .team-block .image-panel {
border-radius: 18px;
overflow: hidden;
height: 180px;
position: relative;
}

.about-us-page .team-block .image-panel img {
width: 100%;
height: 100%;
object-fit: cover;
opacity: 0.15;
display: block;
}

.about-us-page .team-block .image-panel .panel-label {
position: absolute;
inset: 0;
display: flex;
align-items: center;
justify-content: center;
font-size: 16px;
line-height: 1.4;
color: #f4f6ee;
font-weight: 700;
text-align: center;
padding: 16px;
}

.about-us-page .cta-link {
display: inline-flex;
align-items: center;
gap: 8px;
font-size: 16px;
line-height: 1.4;
color: #9CB633;
text-decoration: underline;
text-underline-offset: 4px;
font-weight: 600;
transition: color 0.26s ease-in-out, text-underline-offset 0.26s ease-in-out;
}

.about-us-page .cta-link:hover {
color: #7a8a2a;
text-underline-offset: 6px;
}

@media (max-width: 960px) {
.about-us-page .identity-block .inner-grid {
grid-template-columns: 1fr;
gap: 28px;
}

.about-us-page .identity-block .image-column {
min-height: 280px;
}

.about-us-page .identity-block .text-column {
padding: 28px 0 56px 0;
}

.about-us-page .identity-block .text-column h1 {
font-size: 62px;
}

.about-us-page .method-block .two-col {
grid-template-columns: 1fr;
}

.about-us-page .team-block .trust-grid {
grid-template-columns: 1fr;
}

.about-us-page .team-block .block-header h2 {
font-size: 32px;
}
}

@media (max-width: 480px) {
.about-us-page .identity-block .text-column h1 {
font-size: 32px;
}

.about-us-page .method-block .col-dark,
.about-us-page .method-block .col-light {
padding: 28px;
}

.about-us-page .method-block .col-dark .stat-row {
flex-direction: column;
gap: 16px;
}

.about-us-page .identity-block .side-note-row {
flex-direction: column;
gap: 16px;
}

.about-us-page .identity-block .side-note {
border-right: none;
border-bottom: 2px solid #C0D4DD;
padding-right: 0;
padding-bottom: 8px;
max-width: 100%;
}

.about-us-page .team-block {
padding: 56px 0;
}

.about-us-page .team-block .trust-panel {
padding: 28px 16px;
}
}

.success-page {
min-height: 80vh;
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
padding: 96px 28px;
background: linear-gradient(247deg, #C0D4DD, #E0C5DA);
}

.success-page .confirmation-card {
background: #ffffff;
border-radius: 28px;
padding: 56px;
max-width: 620px;
width: 100%;
box-shadow: 0 10px 48px -2px rgba(156, 182, 51, 0.12);
text-align: center;
}

.success-page .confirmation-card .icon-wrapper {
width: 80px;
height: 80px;
border-radius: 18px;
background: linear-gradient(247deg, #C0D4DD, #E0C5DA);
display: flex;
align-items: center;
justify-content: center;
margin: 0 auto 28px;
}

.success-page .confirmation-card .icon-wrapper svg {
width: 40px;
height: 40px;
}

.success-page .confirmation-card .status-label {
font-size: 16px;
line-height: 1.4;
color: #9CB633;
letter-spacing: 0.08em;
text-transform: uppercase;
margin-bottom: 16px;
display: block;
}

.success-page .confirmation-card .main-heading {
font-size: 32px;
line-height: 1.2;
letter-spacing: -0.02em;
margin-bottom: 16px;
background: linear-gradient(247deg, #5a6e1a, #9CB633);
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
background-clip: text;
}

.success-page .confirmation-card .description-text {
font-size: 16px;
line-height: 1.6;
color: #3d4a2e;
margin-bottom: 28px;
}

.success-page .confirmation-card .divider-line {
width: 56px;
height: 3px;
background: linear-gradient(247deg, #9CB633, #C0D4DD);
border-radius: 3px;
margin: 0 auto 28px;
}

.success-page .confirmation-card .meta-note {
font-size: 16px;
line-height: 1.9;
color: #5a6a4a;
background: linear-gradient(247deg, rgba(192, 212, 221, 0.18), rgba(224, 197, 218, 0.18));
border-radius: 6px;
padding: 16px 28px;
border-top: 2px solid #C0D4DD;
border-bottom: 2px solid #E0C5DA;
margin-bottom: 28px;
}

.success-page .confirmation-card .return-link {
display: inline-block;
padding: 16px 56px;
background: #9CB633;
color: #ffffff;
font-size: 16px;
line-height: 1.4;
border-radius: 6px;
text-decoration: none;
letter-spacing: 0.03em;
box-shadow: 0 6px 14px -2px rgba(156, 182, 51, 0.10);
transition: transform 0.28s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.35s ease-in-out;
}

.success-page .confirmation-card .return-link:hover {
transform: scale(1.04);
box-shadow: 0 10px 48px -2px rgba(156, 182, 51, 0.12);
}

.success-page .confirmation-card .return-link:focus {
outline: 2px solid #9CB633;
outline-offset: 4px;
}

.success-page .confirmation-card .return-link:active {
box-shadow: inset 0 2px 6px rgba(156, 182, 51, 0.18);
transform: scale(0.99);
}

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

.success-page .confirmation-card {
padding: 28px 16px;
}

.success-page .confirmation-card .main-heading {
font-size: 32px;
}

.success-page .confirmation-card .return-link {
padding: 16px 28px;
width: 100%;
text-align: center;
}
}

.page-not-found {
min-height: 80vh;
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
padding: 96px 28px;
background: linear-gradient(247deg, #C0D4DD 0%, #E0C5DA 100%);
position: relative;
overflow: hidden;
}

.page-not-found .error-frame {
max-width: 1366px;
width: 100%;
margin: 0 auto;
display: flex;
flex-direction: row;
align-items: center;
gap: 56px;
}

.page-not-found .error-visual {
flex: 0 0 auto;
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
position: relative;
}

.page-not-found .error-visual .error-code {
font-size: 72px;
line-height: 1.2;
letter-spacing: -0.04em;
font-weight: 800;
background: linear-gradient(247deg, #9CB633 0%, #C0D4DD 60%, #E0C5DA 100%);
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
background-clip: text;
user-select: none;
}

.page-not-found .error-visual .error-shape {
width: 180px;
height: 6px;
border-radius: 3px;
background: linear-gradient(247deg, #9CB633, #E0C5DA);
margin-top: 16px;
opacity: 0.7;
}

.page-not-found .error-visual .error-dot-row {
display: flex;
flex-direction: row;
gap: 8px;
margin-top: 16px;
}

.page-not-found .error-visual .error-dot {
width: 10px;
height: 10px;
border-radius: 28px;
background: #9CB633;
opacity: 0.5;
}

.page-not-found .error-visual .error-dot.muted {
background: #C0D4DD;
opacity: 0.7;
}

.page-not-found .error-content {
flex: 1 1 auto;
display: flex;
flex-direction: column;
gap: 28px;
}

.page-not-found .error-content .error-label {
font-size: 16px;
line-height: 1.4;
letter-spacing: 0.12em;
text-transform: uppercase;
color: #9CB633;
font-weight: 700;
}

.page-not-found .error-content .error-heading {
font-size: 32px;
line-height: 1.2;
letter-spacing: -0.02em;
color: #2a3a1a;
font-weight: 700;
margin: 0;
}

.page-not-found .error-content .error-heading span {
background: linear-gradient(247deg, #9CB633, #C0D4DD);
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
background-clip: text;
}

.page-not-found .error-content .error-description {
font-size: 16px;
line-height: 1.6;
color: #3a3a3a;
max-width: 480px;
margin: 0;
}

.page-not-found .error-content .error-note {
font-size: 16px;
line-height: 1.9;
color: #4a5a3a;
max-width: 440px;
margin: 0;
padding-left: 16px;
border-left: 3px solid #9CB633;
border-top: 1px solid rgba(156, 182, 51, 0.18);
border-bottom: 1px solid rgba(156, 182, 51, 0.18);
border-right: none;
border-radius: 3px;
background: rgba(156, 182, 51, 0.06);
padding-top: 8px;
padding-bottom: 8px;
}

.page-not-found .error-content .error-actions {
display: flex;
flex-direction: row;
gap: 16px;
flex-wrap: wrap;
align-items: center;
}

.page-not-found .error-content .error-actions .action-primary {
display: inline-flex;
align-items: center;
gap: 8px;
padding: 16px 28px;
background: #9CB633;
color: #ffffff;
font-size: 16px;
line-height: 1.4;
font-weight: 700;
border-radius: 6px;
text-decoration: none;
border: 2px solid #9CB633;
box-shadow: 0 6px 14px -2px rgba(156, 182, 51, 0.10);
transition: transform 0.28s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.35s ease-in-out, background 0.25s ease-in-out;
cursor: pointer;
outline-offset: 3px;
}

.page-not-found .error-content .error-actions .action-primary:hover {
transform: scale(1.04);
box-shadow: 0 10px 48px -2px rgba(156, 182, 51, 0.12);
background: #8aa62c;
border-color: #8aa62c;
}

.page-not-found .error-content .error-actions .action-primary:active {
transform: scale(0.98);
box-shadow: inset 0 2px 6px rgba(156, 182, 51, 0.18);
}

.page-not-found .error-content .error-actions .action-primary:focus-visible {
outline: 2px solid #9CB633;
}

.page-not-found .error-content .error-actions .action-secondary {
display: inline-flex;
align-items: center;
gap: 8px;
padding: 16px 28px;
background: transparent;
color: #2a3a1a;
font-size: 16px;
line-height: 1.4;
font-weight: 600;
border-radius: 6px;
text-decoration: none;
border: 2px solid rgba(156, 182, 51, 0.45);
transition: transform 0.32s ease-in-out, border-color 0.28s cubic-bezier(0.4, 0, 0.2, 1), background 0.28s ease-in-out;
cursor: pointer;
outline-offset: 3px;
}

.page-not-found .error-content .error-actions .action-secondary:hover {
transform: scale(1.03);
border-color: #9CB633;
background: rgba(156, 182, 51, 0.08);
}

.page-not-found .error-content .error-actions .action-secondary:active {
box-shadow: inset 0 2px 4px rgba(192, 212, 221, 0.20);
}

.page-not-found .error-content .error-actions .action-secondary:focus-visible {
outline: 2px solid #9CB633;
}

.page-not-found .decoration-circle {
position: absolute;
border-radius: 28px;
pointer-events: none;
z-index: 0;
}

.page-not-found .decoration-circle.large {
width: 320px;
height: 320px;
border-radius: 28px;
background: rgba(156, 182, 51, 0.07);
top: -56px;
right: -56px;
transform: rotate(18deg);
}

.page-not-found .decoration-circle.small {
width: 120px;
height: 120px;
border-radius: 18px;
background: rgba(224, 197, 218, 0.25);
bottom: 28px;
left: 28px;
transform: rotate(-12deg);
}

.page-not-found .error-frame {
position: relative;
z-index: 1;
}

@media (max-width: 960px) {
.page-not-found {
padding: 56px 28px;
}

.page-not-found .error-frame {
flex-direction: column;
gap: 28px;
align-items: flex-start;
}

.page-not-found .error-visual .error-code {
font-size: 62px;
}

.page-not-found .error-content .error-heading {
font-size: 32px;
}
}

@media (max-width: 480px) {
.page-not-found {
padding: 56px 16px;
}

.page-not-found .error-visual .error-code {
font-size: 62px;
}

.page-not-found .error-content .error-actions {
flex-direction: column;
align-items: stretch;
}

.page-not-found .error-content .error-actions .action-primary,
.page-not-found .error-content .error-actions .action-secondary {
justify-content: center;
text-align: center;
}

.page-not-found .decoration-circle.large {
width: 180px;
height: 180px;
right: -28px;
top: -28px;
}
}