:root {
    --forest: #173f35;
    --forest-dark: #0d2d26;
    --forest-light: #285b4e;
    --sand: #d8c5a3;
    --sand-light: #f2eadc;
    --white: #ffffff;
    --off-white: #f8f7f3;
    --text: #1c2723;
    --muted: #66736e;
    --border: #dfe4e1;
    --shadow: 0 20px 60px rgba(13, 45, 38, 0.12);
    --shadow-soft: 0 14px 40px rgba(13, 45, 38, 0.08);
    --shadow-hover: 0 24px 54px rgba(13, 45, 38, 0.14);
    --ease-premium: cubic-bezier(0.22, 1, 0.36, 1);
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 104px;
}

body {
    font-family: Inter, "SF Pro Display", "Segoe UI", Helvetica, Arial, sans-serif;
    color: var(--text);
    background: var(--white);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
}

a {
    color: inherit;
    text-decoration: none;
}

button,
input,
textarea {
    font: inherit;
}

button,
.button,
.navigation a {
    -webkit-tap-highlight-color: transparent;
}

.container {
    width: min(1200px, calc(100% - 48px));
    margin: 0 auto;
}

.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: auto;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.88);
    border-bottom: 1px solid rgba(23, 63, 53, 0.08);
    box-shadow: 0 1px 0 rgba(13, 45, 38, 0);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    transition:
        background-color 420ms var(--ease-premium),
        box-shadow 420ms var(--ease-premium),
        border-color 420ms var(--ease-premium);
}

.header.scrolled {
    background: rgba(255, 255, 255, 0.94);
    border-color: rgba(23, 63, 53, 0.1);
    box-shadow: 0 10px 34px rgba(13, 45, 38, 0.07);
}

.nav-container {
    position: relative;
    min-height: 102px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 36px;
}

.brand {
    display: flex;
    align-items: center;
    width: auto;
    height: auto;
    flex-shrink: 0;
    padding: 8px 0;
}

.brand-logo {
    display: block;
    width: 330px;
    max-width: none;
    height: auto;
    max-height: none;
    margin: -58px -54px -89px -51px;
    position: static;
}

.navigation {
    display: flex;
    align-items: center;
    gap: clamp(18px, 2vw, 32px);
}

.navigation a {
    position: relative;
    font-size: 15px;
    font-weight: 650;
    color: #35413d;
    letter-spacing: -0.01em;
    transition: color 250ms ease, transform 250ms ease;
}

.navigation a:not(.nav-contact)::after {
    content: "";
    position: absolute;
    right: 0;
    bottom: -8px;
    left: 0;
    height: 1px;
    background: var(--forest);
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 300ms var(--ease-premium);
}

.navigation a:hover {
    color: var(--forest-light);
}

.navigation a:not(.nav-contact):hover::after {
    transform: scaleX(1);
    transform-origin: left;
}

.navigation a.active {
    color: var(--forest);
}

.navigation a.active:not(.nav-contact)::after {
    transform: scaleX(1);
    transform-origin: left;
}

.navigation .nav-contact.active {
    background: var(--forest-light);
    border-color: var(--forest-light);
    box-shadow: 0 12px 28px rgba(13, 45, 38, 0.2);
}

.navigation .nav-contact {
    padding: 12px 22px;
    border: 1px solid var(--forest);
    border-radius: 999px;
    color: var(--white);
    background: var(--forest);
    box-shadow: 0 8px 22px rgba(13, 45, 38, 0.16);
    transition:
        color 250ms ease,
        background-color 250ms ease,
        border-color 250ms ease,
        box-shadow 250ms ease,
        transform 250ms var(--ease-premium);
}

.navigation .nav-contact:hover {
    color: var(--white);
    background: var(--forest-light);
    border-color: var(--forest-light);
    box-shadow: 0 12px 28px rgba(13, 45, 38, 0.22);
    transform: translateY(-2px);
}

.menu-button {
    position: relative;
    z-index: 2;
    display: none;
    width: 44px;
    height: 44px;
    flex-shrink: 0;
    border: 0;
    border-radius: 50%;
    background: transparent;
    font-size: 0;
    line-height: 1;
    cursor: pointer;
    color: var(--forest-dark);
    transition: color 250ms ease, transform 250ms ease;
}

.menu-button::before {
    content: "";
    width: 22px;
    height: 2px;
    border-radius: 2px;
    background: currentColor;
    box-shadow: 0 -7px 0 currentColor, 0 7px 0 currentColor;
}

.menu-button:hover {
    color: var(--forest-light);
    transform: scale(1.05);
}

.menu-button:active {
    transform: scale(0.96);
}

:where(a, button, input, textarea):focus-visible {
    outline: 3px solid rgba(216, 197, 163, 0.9);
    outline-offset: 4px;
}

.hero {
    min-height: 820px;
    position: relative;
    display: flex;
    align-items: center;
    overflow: hidden;
    background:
        radial-gradient(circle at 78% 18%, rgba(216, 197, 163, 0.34), transparent 27%),
        radial-gradient(circle at 16% 86%, rgba(40, 91, 78, 0.46), transparent 32%),
        linear-gradient(125deg, #092921 0%, var(--forest-dark) 48%, var(--forest-light) 100%);
}

.hero::before {
    content: "";
    position: absolute;
    width: 720px;
    height: 720px;
    right: -150px;
    top: 68px;
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 50%;
    box-shadow: inset 0 0 100px rgba(216, 197, 163, 0.04);
}

.hero::after {
    content: "";
    position: absolute;
    width: 490px;
    height: 490px;
    right: -8px;
    top: 180px;
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.025);
    filter: blur(0.2px);
}

.hero-overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
    background:
        radial-gradient(circle at 67% 60%, rgba(255, 255, 255, 0.07), transparent 18%),
        linear-gradient(90deg, rgba(5, 31, 25, 0.22), transparent 65%);
}

.hero-layout {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: minmax(0, 1.08fr) minmax(360px, 0.92fr);
    gap: clamp(46px, 6vw, 86px);
    align-items: center;
    padding-top: 122px;
    padding-bottom: 88px;
}

.hero-content {
    position: relative;
    z-index: 2;
    min-width: 0;
    color: var(--white);
}

.eyebrow,
.section-label {
    display: inline-block;
    margin-bottom: 22px;
    color: var(--sand);
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.16em;
}

.hero h1 {
    max-width: 720px;
    font-size: clamp(56px, 5.5vw, 78px);
    line-height: 0.96;
    font-weight: 520;
    letter-spacing: -0.055em;
    text-wrap: balance;
}

.hero h1 span {
    display: block;
    color: var(--sand);
}

.hero p {
    max-width: 560px;
    margin-top: 34px;
    color: rgba(255, 255, 255, 0.78);
    font-size: 19px;
    line-height: 1.65;
}

.hero-visual {
    position: relative;
    z-index: 2;
    min-width: 0;
}

.hero-visual::after {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 12px;
    background: linear-gradient(135deg, rgba(13, 45, 38, 0.16), rgba(23, 63, 53, 0.34));
    pointer-events: none;
}

.hero-visual img {
    display: block;
    width: 100%;
    height: auto;
    aspect-ratio: 16 / 9;
    object-fit: cover;
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 12px;
    box-shadow: 0 30px 80px rgba(5, 31, 25, 0.34);
}

.hero-buttons {
    display: flex;
    gap: 16px;
    margin-top: 42px;
}

.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 54px;
    padding: 0 28px;
    border: 1px solid transparent;
    border-radius: 6px;
    cursor: pointer;
    font-weight: 700;
    letter-spacing: -0.01em;
    box-shadow: 0 9px 24px rgba(13, 45, 38, 0.12);
    transition:
        color 280ms ease,
        background-color 280ms ease,
        border-color 280ms ease,
        box-shadow 280ms ease,
        transform 280ms var(--ease-premium);
}

.button:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 32px rgba(13, 45, 38, 0.2);
}

.button:active {
    transform: translateY(-1px);
}

.button-primary {
    background: var(--sand);
    color: var(--forest-dark);
}

.button-primary:hover {
    background: var(--sand-light);
}

.button-secondary {
    border: 1px solid rgba(255, 255, 255, 0.5);
    color: var(--white);
    background: rgba(255, 255, 255, 0.04);
    box-shadow: none;
    backdrop-filter: blur(8px);
}

.button-secondary:hover {
    border-color: rgba(255, 255, 255, 0.85);
    background: rgba(255, 255, 255, 0.1);
}

.hero-card {
    position: absolute;
    right: auto;
    bottom: -34px;
    left: -34px;
    z-index: 4;
    width: min(320px, calc(100% - 24px));
    padding: 28px 30px;
    background: rgba(255, 255, 255, 0.96);
    border: 1px solid rgba(255, 255, 255, 0.58);
    box-shadow: 0 28px 80px rgba(5, 31, 25, 0.24);
    backdrop-filter: blur(14px);
}

.hero-card span {
    display: block;
    margin-bottom: 12px;
    color: var(--forest-light);
    font-size: 12px;
    letter-spacing: 2px;
}

.hero-card strong {
    font-size: 20px;
    line-height: 1.4;
}

.hero-animate {
    opacity: 0;
    transform: translateY(30px);
    transition:
        opacity 960ms var(--ease-premium),
        transform 960ms var(--ease-premium);
}

.hero-animate.is-visible {
    opacity: 1;
    transform: translateY(0);
}

.hero-content .eyebrow.hero-animate {
    transition-delay: 120ms;
}

.hero h1.hero-animate {
    transition-delay: 260ms;
}

.hero p.hero-animate {
    transition-delay: 400ms;
}

.hero-buttons.hero-animate {
    transition-delay: 540ms;
}

.hero-visual.hero-animate {
    transition-delay: 680ms;
}

.section {
    padding: 108px 0;
}

.two-columns,
.contact-layout,
.partners-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(64px, 8vw, 110px);
    align-items: start;
}

.section-label {
    color: var(--forest-light);
    margin-bottom: 18px;
    font-size: clamp(16px, 1.3vw, 18px);
    font-weight: 700;
    letter-spacing: 0.09em;
}

.section h2 {
    max-width: 920px;
    font-size: clamp(42px, 3.7vw, 56px);
    line-height: 1.1;
    letter-spacing: -0.04em;
    font-weight: 520;
    text-wrap: balance;
}

.introduction-text {
    padding-top: 45px;
}

.introduction-text p {
    margin-bottom: 22px;
    color: var(--muted);
    font-size: 18px;
}

[hidden] {
    display: none !important;
}

.about-tabs {
    display: flex;
    gap: 8px;
    margin-bottom: 28px;
    padding: 7px;
    overflow-x: auto;
    border: 1px solid var(--border);
    border-radius: 10px;
    background: var(--off-white);
    scrollbar-width: thin;
}

.about-tab {
    min-height: 46px;
    padding: 0 19px;
    flex: 1 0 auto;
    border: 1px solid transparent;
    border-radius: 6px;
    background: transparent;
    color: var(--muted);
    cursor: pointer;
    font-size: 14px;
    font-weight: 700;
    white-space: nowrap;
    transition:
        color 300ms ease,
        background-color 300ms ease,
        border-color 300ms ease,
        box-shadow 300ms ease,
        transform 300ms var(--ease-premium);
}

.about-tab:hover {
    color: var(--forest);
    background: rgba(255, 255, 255, 0.7);
}

.about-tab:active {
    transform: translateY(1px);
}

.about-tab.active {
    color: var(--white);
    border-color: var(--forest);
    background: var(--forest);
    box-shadow: 0 8px 20px rgba(13, 45, 38, 0.14);
}

.about-panels {
    min-height: 0;
}

.about-panel.active {
    animation: aboutPanelIn 480ms var(--ease-premium) both;
}

@keyframes aboutPanelIn {
    from {
        opacity: 0;
        transform: translateY(12px);
    }

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

.about-intro {
    margin-bottom: 0;
}

.corporate-story,
.purpose-grid,
.compliance-grid,
.profile-layout {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 24px;
}

.corporate-story {
    margin-bottom: 24px;
}

.story-card,
.purpose-card,
.value-card,
.why-card,
.market-card,
.compliance-card,
.institution-card {
    border: 1px solid var(--border);
    border-radius: 8px;
    transition:
        border-color 300ms ease,
        box-shadow 300ms ease,
        transform 300ms var(--ease-premium);
}

.story-card:hover,
.purpose-card:hover,
.value-card:hover,
.why-card:hover,
.market-card:hover,
.compliance-card:hover,
.institution-card:hover {
    border-color: rgba(23, 63, 53, 0.28);
    box-shadow: var(--shadow-hover);
    transform: translateY(-5px);
}

.story-card {
    padding: 38px;
    background: var(--off-white);
}

.about-feature-card {
    min-height: 0;
    padding: clamp(34px, 4vw, 48px);
}

.paired-content {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 24px;
    align-items: stretch;
}

.story-card h3,
.purpose-card h3,
.compliance-card h3 {
    margin: 12px 0 18px;
    font-size: clamp(24px, 2.2vw, 32px);
    line-height: 1.2;
    letter-spacing: -0.03em;
}

.story-card p,
.purpose-card p,
.value-card p,
.why-card p,
.market-card p,
.compliance-card li,
.section-intro,
.process-note {
    color: var(--muted);
}

.institutional-copy {
    max-width: 68ch;
    line-height: 1.78;
}

.institutional-copy p + p {
    margin-top: 24px;
}

@media (min-width: 621px) {
    .institutional-copy,
    .institutional-copy p,
    .partners-section .partners-layout > div > p {
        text-align: justify;
        text-align-last: left;
        text-justify: inter-word;
        hyphens: auto;
    }
}

.card-kicker {
    color: var(--forest-light);
    font-size: 12px;
    font-weight: 750;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.purpose-grid {
    margin-bottom: 72px;
}

.purpose-card {
    padding: 42px;
    background: var(--white);
}

.purpose-card .section-label {
    margin-bottom: 0;
}

.values-heading {
    max-width: 720px;
    margin-bottom: 48px;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 18px;
}

.value-card {
    min-height: 220px;
    padding: 28px;
    background: var(--white);
}

.value-card h3 {
    margin-bottom: 14px;
    color: var(--forest-dark);
    font-size: 19px;
}

.value-card p {
    font-size: 15px;
}

.services-section {
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.44), transparent 18%),
        var(--off-white);
}

.section-heading {
    max-width: 800px;
    margin-bottom: 50px;
}

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

.service-card {
    min-height: 310px;
    padding: 34px;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 8px;
    box-shadow: 0 1px 0 rgba(13, 45, 38, 0.02);
    transition:
        border-color 300ms ease,
        box-shadow 300ms ease,
        transform 300ms var(--ease-premium);
}

.service-card:hover {
    transform: translateY(-6px);
    border-color: rgba(23, 63, 53, 0.28);
    box-shadow: var(--shadow-hover);
}

.card-number {
    display: block;
    color: var(--sand);
    font-weight: 700;
    margin-bottom: 55px;
    transition:
        color 300ms ease,
        transform 300ms var(--ease-premium);
}

.service-card:hover .card-number {
    color: var(--forest-light);
    transform: translateX(3px);
}

.service-card h3,
.product-card h3 {
    margin-bottom: 16px;
    font-size: 22px;
}

.service-card p,
.product-card p {
    color: var(--muted);
}

.business-model-section {
    background: var(--white);
}

.section-intro {
    max-width: 660px;
    margin-top: 24px;
    font-size: 18px;
}

.value-chain {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 42px 60px;
    counter-reset: chain;
}

.chain-step {
    position: relative;
    display: grid;
    min-height: 148px;
    grid-template-columns: auto 1fr;
    grid-template-rows: auto 1fr;
    align-items: center;
    gap: 12px 16px;
    padding: 26px;
    border: 1px solid var(--border);
    border-radius: 8px;
    background: var(--off-white);
    transition:
        border-color 300ms ease,
        box-shadow 300ms ease,
        transform 300ms var(--ease-premium);
}

.chain-step:not(:last-child)::after {
    content: "";
    position: absolute;
    top: 50%;
    right: -61px;
    width: 60px;
    height: 1.5px;
    background: var(--forest);
    transform: translateY(-50%);
}

.chain-step:not(:last-child)::before {
    content: "";
    position: absolute;
    top: calc(50% - 5px);
    right: -61px;
    z-index: 2;
    width: 10px;
    height: 10px;
    border-top: 1.5px solid var(--forest);
    border-right: 1.5px solid var(--forest);
    transform: rotate(45deg);
}

.chain-step:nth-child(3)::after,
.chain-step:nth-child(6)::after {
    top: auto;
    right: 50%;
    bottom: -43px;
    width: 1.5px;
    height: 42px;
    background: var(--forest);
    transform: none;
}

.chain-step:nth-child(3)::before,
.chain-step:nth-child(6)::before {
    top: auto;
    right: calc(50% - 5px);
    bottom: -43px;
    transform: rotate(135deg);
}

.chain-step:nth-child(4) {
    grid-column: 3;
}

.chain-step:nth-child(5) {
    grid-column: 2;
    grid-row: 2;
}

.chain-step:nth-child(6) {
    grid-column: 1;
    grid-row: 2;
}

.chain-step:nth-child(7) {
    grid-column: 1;
    grid-row: 3;
}

.chain-step:nth-child(8) {
    grid-column: 2;
    grid-row: 3;
}

.chain-step:nth-child(9) {
    grid-column: 3;
    grid-row: 3;
}

.chain-step:nth-child(4)::after,
.chain-step:nth-child(5)::after {
    right: auto;
    left: -61px;
    background: var(--forest);
}

.chain-step:nth-child(4)::before,
.chain-step:nth-child(5)::before {
    right: auto;
    left: -61px;
    transform: rotate(225deg);
}

.chain-step:hover {
    border-color: rgba(23, 63, 53, 0.28);
    box-shadow: var(--shadow-soft);
    transform: translateY(-4px);
}

.chain-number,
.why-card > span,
.market-card > span {
    color: var(--sand);
    font-size: 13px;
    font-weight: 750;
    letter-spacing: 0.08em;
}

.chain-icon {
    position: relative;
    display: grid;
    width: 42px;
    height: 42px;
    grid-row: 2;
    place-items: center;
    border: 1px solid rgba(23, 63, 53, 0.16);
    border-radius: 50%;
    background: var(--white);
    transition:
        border-color 300ms ease,
        transform 300ms var(--ease-premium);
}

.chain-icon::before {
    content: "";
    width: 17px;
    height: 1px;
    background: var(--forest);
    transition: background-color 300ms ease;
}

.chain-icon::after {
    content: "";
    position: absolute;
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: var(--forest);
    transition: background-color 300ms ease;
}

.chain-step strong {
    grid-row: 2;
    color: var(--forest-dark);
    font-size: 16px;
    line-height: 1.35;
}

.chain-step:hover .chain-icon {
    border-color: var(--sand);
    transform: scale(1.05);
}

.chain-step:hover .chain-icon::before,
.chain-step:hover .chain-icon::after {
    background: var(--sand);
}

.process-note {
    margin-top: 22px;
    font-size: 13px;
}

.why-section,
.market-section {
    background: var(--off-white);
}

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

.why-card {
    min-height: 250px;
    padding: 32px;
    background: var(--white);
}

.why-card h3,
.market-card h3 {
    margin: 42px 0 14px;
    font-size: 21px;
    line-height: 1.25;
}

.commercial-process-section {
    background: var(--forest-dark);
    color: var(--white);
}

.commercial-process-section .section-label {
    color: var(--sand);
}

.commercial-process {
    border-top: 1px solid rgba(255, 255, 255, 0.18);
}

.process-step {
    display: grid;
    grid-template-columns: 72px 1fr;
    gap: 26px;
    padding: 30px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.18);
    transition:
        padding-left 300ms var(--ease-premium),
        border-color 300ms ease,
        background-color 300ms ease;
}

.process-step:hover {
    padding-left: 14px;
    border-color: rgba(216, 197, 163, 0.5);
    background: linear-gradient(90deg, rgba(255, 255, 255, 0.035), transparent);
}

.process-step > span {
    color: var(--sand);
    font-weight: 750;
}

.process-step h3 {
    margin-bottom: 8px;
    font-size: 20px;
}

.process-step p {
    max-width: 760px;
    color: rgba(255, 255, 255, 0.68);
}

.compliance-section {
    background: var(--white);
}

.compliance-card {
    padding: 42px;
    background: var(--off-white);
}

.compliance-card ul {
    display: grid;
    gap: 13px;
    margin-top: 26px;
    list-style: none;
}

.compliance-card li {
    position: relative;
    padding-left: 24px;
}

.compliance-card li::before {
    content: "";
    position: absolute;
    top: 0.7em;
    left: 0;
    width: 8px;
    height: 1px;
    background: var(--sand);
}

.market-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 20px;
}

.market-card {
    min-height: 230px;
    padding: 34px;
    background: var(--white);
}

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

.product-card {
    padding: 0 0 32px;
    overflow: hidden;
    border: 1px solid rgba(23, 63, 53, 0.1);
    border-top: 4px solid var(--forest);
    border-radius: 8px;
    background: var(--sand-light);
    box-shadow: 0 1px 0 rgba(13, 45, 38, 0.02);
    transition:
        border-color 300ms ease,
        box-shadow 300ms ease,
        transform 300ms var(--ease-premium);
}

.product-media {
    position: relative;
    margin-bottom: 26px;
    overflow: hidden;
    background: var(--off-white);
}

.product-media::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 48%, rgba(13, 45, 38, 0.3));
    pointer-events: none;
}

.product-media img {
    display: block;
    width: 100%;
    height: 210px;
    object-fit: cover;
    transition: transform 500ms var(--ease-premium);
}

.product-card:hover {
    transform: translateY(-6px);
    border-color: rgba(23, 63, 53, 0.3);
    border-top-color: var(--forest);
    box-shadow: var(--shadow-hover);
}

.product-card:hover .product-media img {
    transform: scale(1.025);
}

.product-icon {
    width: 42px;
    height: 42px;
    display: grid;
    place-items: center;
    margin: 0 30px 14px;
    border-radius: 50%;
    background: var(--forest);
    color: var(--sand);
    font-size: 12px;
    font-weight: 750;
    box-shadow: 0 10px 24px rgba(13, 45, 38, 0.16);
    transition: transform 300ms var(--ease-premium);
}

.product-card h3,
.product-card p {
    margin-right: 30px;
    margin-left: 30px;
}

.product-card:hover .product-icon {
    transform: translateY(-2px) scale(1.04);
}

.product-note {
    margin-top: 30px;
    color: var(--muted);
    font-size: 14px;
}

.institution-card {
    display: grid;
    grid-template-columns: minmax(180px, 0.7fr) 1fr 1.4fr;
    gap: 28px;
    align-items: center;
    margin-top: 24px;
    padding: 30px 34px;
    background: var(--white);
}

.institution-card h3 {
    color: var(--forest-dark);
    font-size: 21px;
}

.institution-card p {
    color: var(--muted);
}

.partners-section {
    position: relative;
    overflow: hidden;
    background:
        radial-gradient(circle at 85% 15%, rgba(216, 197, 163, 0.1), transparent 26%),
        linear-gradient(135deg, #08251f, var(--forest-dark) 58%, #123c32);
    color: var(--white);
}

.light-label {
    color: var(--sand);
}

.partners-section p {
    max-width: 560px;
    margin: 28px 0 38px;
    color: rgba(255, 255, 255, 0.72);
    font-size: 18px;
}

.button-light {
    background: var(--white);
    color: var(--forest-dark);
}

.button-light:hover {
    background: var(--sand-light);
}

.partner-benefits {
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.partner-benefits div {
    display: grid;
    grid-template-columns: 60px 1fr;
    gap: 20px;
    padding: 28px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    transition:
        border-color 300ms ease,
        padding-left 300ms var(--ease-premium),
        background-color 300ms ease;
}

.partner-benefits div:hover {
    padding-left: 14px;
    border-color: rgba(216, 197, 163, 0.5);
    background: linear-gradient(90deg, rgba(255, 255, 255, 0.035), transparent);
}

.partner-benefits strong {
    color: var(--sand);
    font-size: 18px;
    letter-spacing: 0.06em;
    transition:
        color 300ms ease,
        transform 300ms var(--ease-premium);
}

.partner-benefits div:hover strong {
    color: var(--white);
    transform: translateX(3px);
}

.profile-section {
    padding: 92px 0;
    background:
        radial-gradient(circle at 84% 20%, rgba(216, 197, 163, 0.12), transparent 24%),
        var(--forest);
    color: var(--white);
}

.profile-layout {
    align-items: center;
    gap: clamp(54px, 8vw, 110px);
}

.profile-content p {
    max-width: 520px;
    margin-bottom: 32px;
    color: rgba(255, 255, 255, 0.74);
    font-size: 18px;
}

.contact-section {
    background:
        radial-gradient(circle at 8% 85%, rgba(216, 197, 163, 0.17), transparent 22%),
        var(--white);
}

.contact-layout>div>p {
    margin-top: 24px;
    max-width: 480px;
    color: var(--muted);
    font-size: 18px;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 6px;
    margin-top: 40px;
    color: var(--forest);
    font-weight: 700;
}

.contact-form {
    padding: 44px;
    background: var(--off-white);
    border: 1px solid var(--border);
    border-radius: 10px;
    box-shadow: var(--shadow-soft);
}

.contact-form label {
    display: block;
    margin-bottom: 20px;
    font-size: 14px;
    font-weight: 700;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    margin-top: 8px;
    padding: 15px 16px;
    border: 1px solid var(--border);
    border-radius: 5px;
    background: var(--white);
    outline: none;
    color: var(--text);
    transition:
        border-color 250ms ease,
        box-shadow 250ms ease,
        background-color 250ms ease;
}

.contact-form textarea {
    resize: vertical;
}

.contact-form input:focus,
.contact-form textarea:focus {
    border-color: var(--forest);
    background: var(--white);
    box-shadow: 0 0 0 4px rgba(23, 63, 53, 0.09);
}

.contact-form input:hover,
.contact-form textarea:hover {
    border-color: rgba(23, 63, 53, 0.42);
}

.contact-form input[aria-invalid="true"],
.contact-form textarea[aria-invalid="true"] {
    border-color: #9f3f35;
    box-shadow: 0 0 0 4px rgba(159, 63, 53, 0.08);
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
    color: #89938f;
}

.field-error {
    display: block;
    min-height: 18px;
    margin-top: 6px;
    color: #87382f;
    font-size: 12px;
    font-weight: 600;
    line-height: 1.4;
}

.contact-form .button {
    min-width: 164px;
}

.contact-form .button:disabled {
    cursor: wait;
    opacity: 0.78;
    transform: none;
}

.form-message {
    margin-top: 16px;
    color: var(--forest);
    font-weight: 700;
    transition: color 250ms ease, opacity 250ms ease;
}

.form-message.error {
    color: #87382f;
}

.form-message.success {
    color: var(--forest);
}

.footer {
    padding: 45px 0;
    background: #071d18;
    color: var(--white);
}

.footer-content {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 30px;
}

.footer strong {
    letter-spacing: 2px;
}

.footer p {
    margin-top: 6px;
    color: rgba(255, 255, 255, 0.65);
    font-size: 14px;
}

.reveal {
    opacity: 0;
    transform: translateY(32px);
    transition:
        opacity 940ms var(--ease-premium),
        transform 940ms var(--ease-premium);
    will-change: opacity, transform;
}

.reveal.is-visible {
    opacity: 1;
    transform: translateY(0);
}

.back-to-top {
    position: fixed;
    right: 24px;
    bottom: 24px;
    z-index: 900;
    display: grid;
    width: 46px;
    height: 46px;
    place-items: center;
    border: 1px solid rgba(216, 197, 163, 0.78);
    border-radius: 50%;
    background: var(--forest);
    color: var(--sand);
    box-shadow: 0 12px 28px rgba(13, 45, 38, 0.2);
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transform: translateY(12px);
    transition:
        opacity 300ms ease,
        visibility 300ms ease,
        background-color 300ms ease,
        box-shadow 300ms ease,
        transform 300ms var(--ease-premium);
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.back-to-top:hover {
    background: var(--forest-light);
    box-shadow: 0 16px 34px rgba(13, 45, 38, 0.26);
    transform: translateY(-3px);
}

.back-to-top:active {
    transform: translateY(-1px) scale(0.96);
}

.whatsapp-button {
    position: fixed;
    right: 24px;
    bottom: 82px;
    z-index: 900;
    display: grid;
    width: 46px;
    height: 46px;
    place-items: center;
    border: 1px solid rgba(216, 197, 163, 0.78);
    border-radius: 50%;
    background: var(--forest);
    color: var(--sand);
    box-shadow: 0 12px 28px rgba(13, 45, 38, 0.2);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.04em;
    transition:
        background-color 300ms ease,
        box-shadow 300ms ease,
        transform 300ms var(--ease-premium);
}

.whatsapp-button:hover {
    color: var(--sand);
    background: var(--forest-light);
    box-shadow: 0 16px 34px rgba(13, 45, 38, 0.26);
    transform: translateY(-3px);
}

.whatsapp-button:active {
    transform: translateY(-1px) scale(0.96);
}

@media (max-width: 1120px) {
    .brand-logo {
        width: 294px;
        margin: -52px -48px -81px -46px;
    }

    .navigation {
        gap: 17px;
    }

    .navigation a {
        font-size: 14px;
    }
}

@media (max-width: 1060px) {
    .nav-container {
        min-height: 86px;
    }

    .brand-logo {
        width: 250px;
        margin: -44px -41px -68px -39px;
    }

    .menu-button {
        position: absolute;
        top: 50%;
        right: 0;
        display: grid;
        place-items: center;
        transform: translateY(-50%);
    }

    .menu-button:hover {
        transform: translateY(-50%) scale(1.05);
    }

    .menu-button:active {
        transform: translateY(-50%) scale(0.96);
    }

    .navigation {
        position: absolute;
        top: 86px;
        left: 0;
        width: 100%;
        display: none;
        flex-direction: column;
        align-items: flex-start;
        gap: 0;
        padding: 14px 24px 20px;
        background: rgba(255, 255, 255, 0.98);
        border-bottom: 1px solid var(--border);
        box-shadow: 0 18px 36px rgba(13, 45, 38, 0.1);
        backdrop-filter: blur(18px);
    }

    .navigation.active {
        display: flex;
    }

    .navigation a {
        width: 100%;
        padding: 15px 0;
        font-size: 15px;
    }

    .navigation a:not(.nav-contact)::after {
        display: none;
    }

    .navigation .nav-contact {
        width: auto;
        margin-top: 8px;
        padding: 11px 22px;
    }

    .hero {
        min-height: 0;
    }

    .hero-layout {
        max-width: 820px;
        grid-template-columns: minmax(0, 1fr);
        gap: 54px;
        padding-top: 140px;
        padding-bottom: 96px;
    }

    .hero-visual {
        width: 100%;
        max-width: 760px;
    }

    .section h2 {
        font-size: clamp(36px, 4.8vw, 48px);
    }

    .paired-content {
        grid-template-columns: 1fr;
    }

    .hero-card {
        display: none;
    }

    .two-columns,
    .contact-layout,
    .partners-layout,
    .profile-layout {
        grid-template-columns: 1fr;
        gap: 52px;
    }

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

    .values-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .why-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .value-chain {
        max-width: 760px;
        grid-template-columns: 1fr;
        gap: 34px;
    }

    .chain-step:nth-child(n) {
        grid-column: 1;
        grid-row: auto;
    }

    .chain-step:not(:last-child)::after {
        top: auto;
        right: 50%;
        bottom: -35px;
        left: auto;
        width: 1.5px;
        height: 34px;
        background: var(--forest);
        transform: none;
    }

    .chain-step:not(:last-child)::before {
        top: auto;
        right: calc(50% - 5px);
        bottom: -35px;
        left: auto;
        transform: rotate(135deg);
    }
}

@media (max-width: 620px) {
    .container {
        width: min(100% - 28px, 1180px);
    }

    html {
        scroll-padding-top: 76px;
    }

    .nav-container {
        min-height: 74px;
    }

    .brand-logo {
        width: 212px;
        margin: -38px -35px -57px -33px;
    }

    .navigation {
        top: 74px;
        padding-inline: 14px;
    }

    .hero {
        min-height: 0;
    }

    .hero h1 {
        font-size: clamp(44px, 13vw, 56px);
        letter-spacing: -0.05em;
    }

    .hero p {
        font-size: 17px;
    }

    .hero-content {
        padding: 0;
    }

    .hero-layout {
        gap: 42px;
        padding-top: 112px;
        padding-bottom: 76px;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: stretch;
    }

    .section {
        padding: 76px 0;
    }

    .section h2 {
        font-size: clamp(30px, 9vw, 40px);
    }

    .section-heading {
        margin-bottom: 46px;
    }

    .about-tabs {
        flex-wrap: wrap;
        margin-inline: -2px;
        margin-bottom: 24px;
        padding: 5px;
    }

    .about-tab {
        min-height: 43px;
        flex: 1 1 calc(50% - 8px);
        padding-inline: 15px;
        font-size: 13px;
    }

    .about-panels {
        min-height: 0;
    }

    .about-feature-card {
        min-height: 0;
    }

    .product-media img {
        height: 190px;
    }

    .profile-section {
        padding: 72px 0;
    }

    .institutional-copy,
    .institutional-copy p,
    .partners-section .partners-layout > div > p {
        max-width: none;
        text-align: left;
        hyphens: none;
    }

    .cards-grid,
    .product-grid,
    .values-grid,
    .value-chain,
    .why-grid,
    .market-grid,
    .corporate-story,
    .purpose-grid,
    .compliance-grid {
        grid-template-columns: 1fr;
    }

    .about-intro {
        margin-bottom: 58px;
    }

    .story-card,
    .purpose-card,
    .compliance-card {
        padding: 28px 24px;
    }

    .purpose-grid {
        margin-bottom: 68px;
    }

    .value-card,
    .why-card,
    .market-card {
        min-height: 0;
    }

    .institution-card {
        grid-template-columns: 1fr;
        gap: 12px;
        padding: 26px 22px;
    }

    .process-step {
        grid-template-columns: 48px 1fr;
        gap: 16px;
    }

    .contact-form {
        padding: 26px 22px;
    }

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

    .back-to-top {
        right: 16px;
        bottom: 16px;
        width: 44px;
        height: 44px;
    }

    .whatsapp-button {
        right: 16px;
        bottom: 72px;
        width: 44px;
        height: 44px;
    }
}

@media (max-width: 380px) {
    .brand-logo {
        width: 190px;
        margin: -34px -31px -51px -30px;
    }

    .hero h1 {
        font-size: 41px;
    }
}

@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }

    *,
    *::before,
    *::after {
        scroll-behavior: auto !important;
        transition-duration: 0.01ms !important;
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
    }

    .reveal {
        opacity: 1;
        transform: none;
    }

    .hero-animate {
        opacity: 1;
        transform: none;
    }

    .about-panel.active {
        animation: none;
    }
}
