:root {
    --bg-white:  #f4f3ea;
    --bg-greenish: rgba(128,154,76, 0.2);
    --bg-greenish-solid: rgb(128,154,76);
    --bg-green: #112218;
}

html, body {
    display: grid;
    grid-template-rows: min-content 1fr;
    background-color: var(--bg-white);

    font-family: "Instrument Sans", sans-serif;
    font-optical-sizing: auto;
    font-weight: 400;
    font-style: normal;
    font-variation-settings:
        "wdth" 100;
    font-size: 15px;
}

.above-the-fold-spacer {
  height: 100vh;
  grid-column: 1 / -1;
  grid-row: 1 / span 2;
}

header {
    position: -webkit-sticky;
    position: sticky;
    height: 70px;
    grid-column-start: 1;
    grid-row-start: 1;
    top: 0;
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-left: 46px;
    padding-right: 46px;
    background-color: var(--bg-white);
}

nav ul li {
    display: inline-block;
}

nav.primary ul.primary-menu {
    display: flex;
    align-items: center;
    gap: 28px;
    margin-bottom: 0;
}

nav.primary ul.primary-menu li {
    color: rgba(14, 34, 24, 0.85);
    cursor: pointer;
    font-size: 14px;
    margin: 0;
}

nav.primary ul.primary-menu li a {
    color: inherit;
    text-decoration: none;
}

nav.primary ul.primary-menu li a:hover {
    opacity: 0.7;
}

nav.primary ul.primary-menu li.has-dropdown::after {
    content: '\00A0\25BE';
    color: rgba(14, 34, 24, 0.6);
    font-size: 11px;
}

header > div {
    display: flex;
    align-items: center;
    gap: 8px;
}

header button {
    border: none;
    border-radius: 1920px;
    padding: 10px 22px;
    cursor: pointer;
    font-family: inherit;
    font-size: 14px;
    font-weight: 500;
}

header button.btn-light {
    background-color: rgba(14, 34, 24, 0.06);
    color: rgb(14, 34, 24);
}

header button.btn-dark {
    background-color: var(--bg-green);
    color: #fff;
}

main {
    grid-column-start: 1;
    grid-row-start: 2;
}

main nav {
    position: -webkit-sticky;
    position: sticky;
    height: 60px;
    top: 70px;
    z-index: 99;
}

main section.hero {
    height: 676px;
}

/* ===== 3-Column with Cover Image ===== */
.columns.columns-stretch {
    align-items: stretch;
}

.col-cover-img {
    padding-left: 0;
    padding-right: 0;
    min-height: 420px;
}

.col-cover-img .cover-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    border-radius: 12px;
}

/* ===== Hero Slider ===== */
section.hero-slider-wrap {
    position: relative;
    overflow: hidden;
}

.hero-slides {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero-slide {
    position: absolute;
    inset: 0;
    background-color: var(--bg-green);
    background-position: center top;
    background-size: cover;
    background-repeat: no-repeat;
    opacity: 0;
    transition: opacity 1.2s ease-in-out;
    will-change: opacity;
}

.hero-slide.active {
    opacity: 1;
}

.hero-slider-content {
    position: relative;
    z-index: 2;
}

.hero-dots {
    position: absolute;
    bottom: 32px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 3;
}

.hero-dot {
    width: 36px;
    height: 4px;
    border: none;
    background: rgba(255, 255, 255, 0.35);
    cursor: pointer;
    padding: 0;
    border-radius: 2px;
    transition: background 0.3s ease, width 0.3s ease;
}

.hero-dot.active {
    background: rgba(255, 255, 255, 0.95);
    width: 52px;
}

.hero-dot:hover {
    background: rgba(255, 255, 255, 0.7);
}

nav.secondary {
    background-color: var(--bg-white);
    border: 1px solid #EBEBE2;
}
nav.secondary ul {
    margin-top: 20px;
}
nav.secondary ul li {
    color: rgba(14,34,24, 0.7);
    margin: 0;
    padding-left: 30px;
}
nav.secondary ul li.active {
    color: rgb(14,34,24);
    background-image: url('../../images/main-secondary-bullet.webp');
    background-repeat: no-repeat;
    background-position-y: 3px;
}
nav.secondary ul li a {
    color: inherit !important;
}

footer {
    background: #112218 url('../../images/section-bg-tiger-v.webp') right -100px repeat-y;
}

footer .footer-section-divider {
    border-top: 1px dotted rgba(255, 255, 255, 0.42);
    padding-top: 44px;
    margin-top: 44px;
}

footer .footer-cta .column {
    text-align: center;
}

.anchor.dark {
    background-color: rgba(0, 0, 0, 0.22) !important;
    border: 1px solid var(--bg-greenish-solid) !important;
    color: #fff !important;
}


footer .footer-cta-buttons {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 28px;
}

footer .footer-cta-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 12px 26px;
    border-radius: 1920px;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    line-height: 1.2;
}

footer .footer-cta-btn--primary {
    background-color: var(--bg-green);
    border: 1px solid var(--bg-greenish-solid);
    color: #fff !important;
}

footer .footer-cta-btn--ghost {
    background-color: transparent;
    border: 1px solid rgba(255, 255, 255, 0.9);
    color: #fff !important;
}

footer .footer-cta-btn-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 18px;
    height: 18px;
    flex-shrink: 0;
}

footer .footer-cta-btn--primary .footer-cta-btn-icon::before {
    content: '\25CE';
    font-size: 15px;
    line-height: 1;
    opacity: 0.95;
}

footer .footer-cta-btn--ghost .footer-cta-btn-icon--play::before {
    content: '';
    display: block;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 5px 0 5px 9px;
    border-color: transparent transparent transparent #fff;
    margin-left: 2px;
}

footer .footer-subscribe {
    max-width: 520px;
}

footer .footer-subscribe-label {
    position: relative;
    display: block;
    padding-left: 16px;
    margin-bottom: 10px;
}

footer .footer-subscribe-label::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.4em;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background-color: var(--bg-greenish-solid);
}

footer .footer-subscribe-line {
    display: flex;
    flex-wrap: nowrap;
    align-items: stretch;
    gap: 0;
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.22);
}

footer .footer-subscribe-line input[type="text"] {
    flex: 1;
    min-width: 0;
    padding: 12px 14px;
    border: none;
    border-radius: 0;
    background: rgba(0, 0, 0, 0.35);
    color: #fff;
    font-family: inherit;
    font-size: 14px;
}

footer .footer-subscribe-line input[type="text"]::placeholder {
    color: rgba(255, 255, 255, 0.45);
}

footer .footer-subscribe-btn {
    padding: 12px 18px;
    border-radius: 0;
    border: none;
    background-color: rgb(196, 214, 168);
    color: var(--bg-green);
    font-family: inherit;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    white-space: nowrap;
}

footer .footer-contact-below {
    margin-top: 20px;
}

footer .footer-contact-row {
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 8px 0;
    font-size: 14px;
}

footer .footer-contact-icon {
    display: inline-flex;
    width: 1.1em;
    justify-content: center;
    flex-shrink: 0;
    opacity: 0.9;
}

footer .footer-contact-icon--phone::before {
    content: '\260E';
    font-size: 14px;
}

footer .footer-contact-icon--mail::before {
    content: '\2709';
    font-size: 14px;
}

footer .footer-links > .anchor {
    display: inline-block;
    margin-bottom: 8px;
}

footer .footer-links ul {
    margin-top: 4px;
}

footer .footer-links ul li {
    margin-bottom: 8px;
    color: rgba(255, 255, 255, 0.9);
}

footer .footer-links ul li a {
    color: inherit;
    text-decoration: none;
}

footer .footer-links ul li a:hover {
    text-decoration: underline;
}

footer .footer-legal-list {
    display: block;
    list-style: none;
    margin: 0;
    padding: 0;
    line-height: 1.9;
}

footer .footer-legal-list li {
    display: inline;
    margin: 0;
    color: rgba(255, 255, 255, 0.78);
}

footer .footer-legal-list li a {
    color: inherit;
    text-decoration: none;
}

footer .footer-legal-list li a:hover {
    text-decoration: underline;
}

footer .footer-legal-list li + li::before {
    content: '|';
    display: inline-block;
    color: rgba(255, 255, 255, 0.35);
    margin: 0 10px;
}

footer .footer-lang {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 8px;
}

footer .footer-globe {
    font-size: 16px;
    line-height: 1;
    opacity: 0.85;
}

footer select {
    background: rgba(0, 0, 0, 0.25);
    border: 1px solid rgba(255, 255, 255, 0.45);
    color: #fff;
    padding: 8px 12px;
    border-radius: 6px;
    font-family: inherit;
    font-size: 14px;
}

.dark {
    background-color: rgba(0, 0, 0, 0.22);
    border: 1px solid var(--bg-greenish-solid);
}

.content-teaser-card {
    background-color: var(--bg-white);
    border-radius: 12px;
    overflow: hidden;
}

.content-teaser-body {
    padding-top: 14px;
}

.content-teaser-type {
    font-size: 14px;
    color: rgba(14, 34, 24, 0.62);
}

.content-teaser-card h4 {
    margin-top: 8px;
}

.meta-inline {
    margin-top: 10px;
    font-size: 14px;
    color: rgba(14, 34, 24, 0.8);
}

.meta-inline-sub {
    margin-top: 6px;
}

.meta-icon {
    opacity: 0.8;
    margin-right: 6px;
}

.media-gallery {
    position: relative;
    margin-top: 24px;
    text-align: center;
}

.media-gallery-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 28px;
    height: 28px;
    border-radius: 50%;
    border: 1px solid rgba(14, 34, 24, 0.2);
    color: rgba(14, 34, 24, 0.7);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(255, 255, 255, 0.85);
}

.media-gallery-arrow.left { left: -14px; }
.media-gallery-arrow.right { right: -14px; }

.media-gallery-dots {
    margin-top: 10px;
    font-size: 14px;
    color: rgba(14, 34, 24, 0.55);
}

.form-control {
    width: 100%;
    border: 1px solid rgba(14, 34, 24, 0.2);
    border-radius: 8px;
    padding: 12px 14px;
    background-color: #fff;
    font-family: inherit;
    font-size: 14px;
    color: rgba(14, 34, 24, 0.92);
    box-sizing: border-box;
}

.form-control + .form-control,
.form-checkline + .form-checkline {
    margin-top: 12px;
}

.form-checkline {
    text-align: left;
    color: rgba(14, 34, 24, 0.78);
    font-size: 14px;
}

.form-checkline input {
    margin-right: 8px;
}

.form-actions-inline {
    margin-top: 16px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
}

.archive-year-nav {
    position: sticky;
    top: 140px;
}

.archive-year-nav ul li {
    margin: 10px 0;
    color: rgba(14, 34, 24, 0.72);
}

.archive-year-nav ul li.active {
    color: rgba(14, 34, 24, 1);
    font-weight: 600;
}

.article-card {
    margin-bottom: 54px;
}

.article-card img {
    display: block;
    width: 100%;
    height: auto;
    border-radius: 8px;
}

.article-card .text-eyebrow {
    letter-spacing: 4px;
    font-size: 12px;
    color: rgba(14, 34, 24, 0.5);
}

.article-card h4 {
    margin-top: 10px;
}

.content-sidebar-nav {
    position: sticky;
    top: 140px;
}

.content-sidebar-nav ul li {
    display: block;
    margin: 10px 0;
    color: rgba(14, 34, 24, 0.72);
}

.content-sidebar-nav ul li.active {
    color: rgba(14, 34, 24, 1);
    font-weight: 600;
}
.content-sidebar-nav ul li a {
    color: inherit;
}

.accordion-group {
    margin-top: 34px;
}

.accordion-group-label {
    position: relative;
    display: inline-block;
    padding-left: 16px;
    color: rgba(14, 34, 24, 0.62);
    font-size: 13px;
}

.accordion-group-label::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.5em;
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background-color: var(--bg-greenish-solid);
}

.accordion-item {
    border-top: 1px dashed rgba(14, 34, 24, 0.18);
}

.accordion-item:last-child {
    border-bottom: 1px dashed rgba(14, 34, 24, 0.18);
}

.accordion-item summary {
    list-style: none;
    cursor: pointer;
    padding: 18px 26px 18px 0;
    position: relative;
    font-weight: 600;
    color: rgba(14, 34, 24, 0.95);
}

.accordion-item summary::-webkit-details-marker {
    display: none;
}

.accordion-item summary::after {
    content: '+';
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    color: rgba(14, 34, 24, 0.6);
    font-size: 18px;
    line-height: 1;
}

.accordion-item[open] summary::after {
    content: '×';
}

.accordion-item-content {
    padding: 0 26px 18px 0;
    color: rgba(14, 34, 24, 0.84);
}

.logo-cloud-grid {
    display: grid;
    grid-template-columns: repeat(6, minmax(0, 1fr));
    gap: 22px 28px;
    align-items: center;
}

.logo-cloud-item {
    text-align: center;
}

.logo-cloud-item img {
    max-width: 100%;
    height: auto;
}

.pagination-inline {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 12px;
    margin-top: 40px;
}

.pagination-inline .page-number {
    min-width: 24px;
    height: 24px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 6px;
    color: rgba(14, 34, 24, 0.75);
    font-size: 14px;
}

.pagination-inline .page-number.active {
    background-color: var(--bg-green);
    color: #fff;
}

.form-grid-2 {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
}

.office-card-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
}

.office-card {
    background-color: rgba(128, 154, 76, 0.12);
    border-radius: 12px;
    padding: 22px 20px;
}

section.bg-white {
    background-color: var(--bg-white);
}
section.bg-greenish {
    background-color: var(--bg-greenish);
}
section.bg-greenish-tiger {
    background: var(--bg-greenish) url('../../images/section-bg-tiger.webp') right top no-repeat;
}
section.bg-greenish-tiger-inverted {
    background: var(--bg-greenish) url('../../images/section-bg-tiger-inverted.webp') left top no-repeat;
}
section.bg-green-vtiger {
    background: var(--bg-green) url('../../images/section-bg-tiger-v.webp') right -100px repeat-y;
}
section.bg-hero-default {
    background: var(--bg-green) url('../../images/hero-default.webp') center top;
    background-size: cover;
}
/* ===== Hero Media Stack ===== */
.columns:has(.hero-media-stack) {
    align-items: center;
}

.hero-media-stack {
    position: relative;
    width: 100%;
    max-width: 340px;
    margin: 0 auto;
    padding-bottom: 60px;
}

.hero-media-primary {
    position: relative;
    z-index: 2;
    box-sizing: border-box;
    border-left: 8px solid var(--bg-green);
    border-bottom: 8px solid var(--bg-green);
}

.hero-media-secondary {
    position: absolute;
    left: -50px;
    bottom: 0;
    width: 58%;
    z-index: 1;
}

/* ===== Hero Split Section ===== */
section.hero-split {
    overflow: hidden;
}

section.hero-split > .columns.w-1440 {
    align-items: center;
}

section.hero-split > .columns.w-1440 > .column:last-child {
    padding-left: 0;
    padding-right: 0;
    margin-right: calc((100vw - 100%) / -2);
}

section.hero-split > .columns.w-1440 > .column:last-child img {
    display: block;
    width: 100%;
    height: auto;
}

/* ===== Article Card Grid ===== */
.columns.article-card-grid > .column {
    flex: 0 0 50%;
    max-width: 50%;
    box-sizing: border-box;
}

/* ===== img-logo (logo cloud) ===== */
.img-logo {
    max-width: 100%;
    height: auto;
    opacity: 0.65;
    filter: grayscale(100%);
    transition: opacity 0.2s ease, filter 0.2s ease;
}

.img-logo:hover {
    opacity: 1;
    filter: grayscale(0%);
}

/* ============================================================
   AUTH MODAL
   ============================================================ */
.auth-modal-backdrop {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.52);
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.22s ease;
    padding: 16px;
    box-sizing: border-box;
}
.auth-modal-backdrop.is-open {
    opacity: 1;
    pointer-events: all;
}
.auth-modal {
    background: #fff;
    border-radius: 16px;
    padding: 44px 38px 38px;
    width: 100%;
    max-width: 424px;
    position: relative;
    max-height: 92vh;
    overflow-y: auto;
    transform: translateY(18px);
    transition: transform 0.22s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.18);
}
.auth-modal-backdrop.is-open .auth-modal {
    transform: translateY(0);
}
.auth-modal-close {
    position: absolute;
    top: 14px;
    right: 16px;
    background: none;
    border: none;
    font-size: 18px;
    line-height: 1;
    cursor: pointer;
    color: rgba(14, 34, 24, 0.42);
    padding: 6px 8px;
    transition: color 0.15s;
}
.auth-modal-close:hover { color: rgba(14, 34, 24, 0.85); }

/* Screen switching */
.auth-screen { display: none; }
.auth-screen.is-active { display: block; }

/* Logo */
.auth-logo {
    font-size: 18px;
    font-weight: 700;
    letter-spacing: 0.4px;
    color: #0e2218;
    margin-bottom: 16px;
    font-family: inherit;
}

/* Heading */
.auth-heading {
    font-size: 22px;
    font-weight: 600;
    color: #0e2218;
    line-height: 1.35;
    margin: 0 0 28px;
}
.auth-heading span {
    display: block;
    font-weight: 400;
    font-size: 20px;
}

/* Fields */
.auth-field {
    margin-bottom: 12px;
}
.auth-field label {
    display: block;
    font-size: 12px;
    color: rgba(14, 34, 24, 0.52);
    margin-bottom: 5px;
}
.auth-field input {
    width: 100%;
    padding: 11px 14px;
    border: 1.5px solid rgba(14, 34, 24, 0.18);
    border-radius: 8px;
    font-size: 14px;
    color: #0e2218;
    background: #fff;
    box-sizing: border-box;
    font-family: inherit;
    outline: none;
    transition: border-color 0.15s;
}
.auth-field input:focus { border-color: rgb(128, 154, 76); }
.auth-field input::placeholder { color: rgba(14, 34, 24, 0.32); }

/* Remember me + Forgot link row */
.auth-check-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 14px 0 22px;
}
.auth-check-label {
    display: flex;
    align-items: center;
    gap: 7px;
    font-size: 13px;
    color: rgba(14, 34, 24, 0.72);
    cursor: pointer;
}
.auth-check-label input[type="checkbox"] {
    width: 15px;
    height: 15px;
    accent-color: rgb(128, 154, 76);
    cursor: pointer;
    flex-shrink: 0;
}
.auth-link-forgot {
    font-size: 13px;
    color: rgb(128, 154, 76);
    text-decoration: none;
    cursor: pointer;
    background: none;
    border: none;
    font-family: inherit;
    padding: 0;
}
.auth-link-forgot:hover { text-decoration: underline; }

/* Error message */
.auth-error-msg {
    background: #fef2f2;
    border: 1px solid #fecaca;
    color: #dc2626;
    font-size: 13px;
    border-radius: 6px;
    padding: 10px 14px;
    margin-bottom: 12px;
}

/* Primary button */
.auth-btn-primary {
    display: block;
    width: 100%;
    padding: 13px;
    background: rgb(128, 154, 76);
    color: #fff;
    border: none;
    border-radius: 8px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    font-family: inherit;
    text-align: center;
    transition: background 0.15s;
}
.auth-btn-primary:hover { background: rgb(108, 132, 60); }

/* Switch text */
.auth-switch-text {
    text-align: center;
    font-size: 13px;
    color: rgba(14, 34, 24, 0.62);
    margin: 14px 0;
}
.auth-link {
    color: rgb(128, 154, 76);
    text-decoration: none;
    font-weight: 500;
    cursor: pointer;
    background: none;
    border: none;
    font-size: inherit;
    font-family: inherit;
    padding: 0;
}
.auth-link:hover { text-decoration: underline; }

/* OR divider */
.auth-or-divider {
    display: flex;
    align-items: center;
    gap: 12px;
    color: rgba(14, 34, 24, 0.36);
    font-size: 12px;
    letter-spacing: 0.5px;
    margin: 4px 0 14px;
}
.auth-or-divider::before,
.auth-or-divider::after {
    content: '';
    flex: 1;
    height: 1px;
    background: rgba(14, 34, 24, 0.13);
}

/* Google button */
.auth-btn-google {
    width: 100%;
    padding: 11px 14px;
    background: #fff;
    border: 1.5px solid rgba(14, 34, 24, 0.18);
    border-radius: 8px;
    font-size: 14px;
    color: #0e2218;
    font-family: inherit;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: background 0.15s, border-color 0.15s;
}
.auth-btn-google:hover {
    background: rgba(14, 34, 24, 0.03);
    border-color: rgba(14, 34, 24, 0.28);
}

/* Forgot password */
.auth-forgot-icon { margin-bottom: 18px; }
.auth-forgot-title {
    font-size: 20px;
    font-weight: 600;
    color: #0e2218;
    line-height: 1.38;
    margin-bottom: 24px;
}
.auth-sent-display {
    width: 100%;
    padding: 11px 14px;
    border: 1.5px solid rgba(14, 34, 24, 0.14);
    border-radius: 8px;
    font-size: 14px;
    color: rgba(14, 34, 24, 0.65);
    background: rgba(14, 34, 24, 0.03);
    box-sizing: border-box;
    margin-bottom: 8px;
}
.auth-helper-text {
    font-size: 12px;
    color: rgba(14, 34, 24, 0.5);
    line-height: 1.55;
    margin-bottom: 20px;
}
.auth-btn-link {
    display: block;
    width: 100%;
    text-align: center;
    font-size: 13px;
    color: rgba(14, 34, 24, 0.62);
    margin-top: 14px;
    cursor: pointer;
    text-decoration: underline;
    background: none;
    border: none;
    font-family: inherit;
    padding: 0;
}
.auth-btn-link:hover { color: #0e2218; }

/* Policy text (register) */
.auth-policy {
    font-size: 12px;
    color: rgba(14, 34, 24, 0.5);
    line-height: 1.55;
    margin-bottom: 18px;
}
.auth-policy a {
    color: rgb(128, 154, 76);
    text-decoration: none;
}
.auth-policy a:hover { text-decoration: underline; }

/* ============================================================
   HEADER: ACCOUNT DROPDOWN (Logged-in state)
   ============================================================ */
.header-account-wrap {
    position: relative;
    display: inline-flex;
    align-items: center;
}
.header-account-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: none;
    border: 1px solid rgba(14, 34, 24, 0.18);
    border-radius: 24px;
    padding: 6px 12px 6px 10px;
    font-size: 14px;
    color: #0e2218;
    cursor: pointer;
    font-family: inherit;
    white-space: nowrap;
    transition: background 0.15s;
}
.header-account-btn:hover { background: rgba(14, 34, 24, 0.05); }
.header-account-dropdown {
    position: absolute;
    top: calc(100% + 8px);
    right: 0;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 8px 28px rgba(0, 0, 0, 0.13);
    min-width: 160px;
    overflow: hidden;
    opacity: 0;
    transform: translateY(-6px);
    pointer-events: none;
    transition: opacity 0.15s ease, transform 0.15s ease;
    z-index: 600;
}
.header-account-dropdown.is-open {
    opacity: 1;
    transform: translateY(0);
    pointer-events: all;
}
.header-account-dropdown a {
    display: block;
    padding: 12px 20px;
    font-size: 14px;
    color: #0e2218;
    text-decoration: none;
    transition: background 0.1s;
}
.header-account-dropdown a:hover { background: rgba(14, 34, 24, 0.04); }
.header-account-dropdown .acct-logout { color: #d93025; }

/* ============================================================
   USER ACCOUNT PAGES
   ============================================================ */

/* Page hero */
.user-page-hero {
    background: linear-gradient(135deg, #0e2218 0%, #1a4a2e 100%);
    padding: 48px 46px;
    color: #fff;
}
.user-page-hero-inner { max-width: 1400px; margin: 0 auto; }
.user-page-hero h1 {
    font-size: 30px;
    font-weight: 700;
    margin: 0 0 10px;
}
.user-breadcrumb {
    display: flex;
    gap: 6px;
    list-style: none;
    padding: 0;
    margin: 0;
    font-size: 13px;
    color: rgba(255,255,255,0.65);
    flex-wrap: wrap;
}
.user-breadcrumb li + li::before { content: "/"; margin-right: 4px; }
.user-breadcrumb a { color: rgba(255,255,255,0.65); text-decoration: none; }
.user-breadcrumb a:hover { color: #fff; }

/* Layout container */
.user-area {
    max-width: 1400px;
    margin: 0 auto;
    padding: 36px 46px 56px;
    display: flex;
    gap: 28px;
    align-items: flex-start;
}

/* Sidebar */
.user-area .layout--sidebar {
    width: 240px;
    flex-shrink: 0;
    background: #fff;
    border-radius: 12px;
    padding: 20px 0;
    box-shadow: 0 2px 16px rgba(0,0,0,0.07);
}
.user-area .layout--sidebar small {
    display: block;
    padding: 0 18px 14px;
    font-size: 13px;
    color: #6b7280;
    font-weight: 500;
}
.user-area .layout--sidebar .layout--menu {
    list-style: none;
    padding: 0;
    margin: 0;
}
.user-area .layout--sidebar .layout--menu li a {
    display: block;
    padding: 10px 18px;
    font-size: 14px;
    color: #374151;
    text-decoration: none;
    border-left: 3px solid transparent;
    transition: all 0.18s;
    font-weight: 400;
}
.user-area .layout--sidebar .layout--menu li a:hover,
.user-area .layout--sidebar .layout--menu li a.active {
    border-left-color: #6c843c;
    color: #6c843c;
    background: rgba(108,132,60,0.07);
    font-weight: 500;
}
.user-area .layout--sidebar .layout--menu li a.logout { color: #dc2626; }
.user-area .layout--sidebar .layout--menu li a.logout:hover {
    border-left-color: #dc2626;
    background: rgba(220,38,38,0.06);
}

/* Content area */
.user-area .layout--content {
    flex: 1;
    min-width: 0;
}
.user-area .layout--content.box {
    background: #fff;
    border-radius: 12px;
    padding: 28px 32px;
    box-shadow: 0 2px 16px rgba(0,0,0,0.07);
}
.user-area .layout--header {
    margin-bottom: 22px;
    padding-bottom: 16px;
    border-bottom: 1px solid #e5e7eb;
}
.user-area .layout--header h2 {
    font-size: 20px;
    font-weight: 600;
    color: #0e2218;
    margin: 0;
}

/* Form styling */
.cge--form small {
    display: block;
    font-size: 12px;
    font-weight: 600;
    color: #6c843c;
    margin: 20px 0 10px;
    padding-bottom: 8px;
    border-bottom: 1px solid #e5e7eb;
    text-transform: uppercase;
    letter-spacing: 0.4px;
}
.cge--form .row {
    display: flex;
    flex-direction: column;
    margin-bottom: 14px;
}
.cge--form label {
    font-size: 13px;
    font-weight: 500;
    color: #4b5563;
    margin-bottom: 5px;
}
.cge--form input[type="text"],
.cge--form input[type="email"],
.cge--form input[type="password"],
.cge--form input[type="tel"],
.cge--form select,
.cge--form textarea {
    width: 100%;
    padding: 9px 13px;
    border: 1px solid #d1d5db;
    border-radius: 8px;
    font-size: 14px;
    color: #374151;
    background: #f9fafb;
    transition: border-color 0.15s, background 0.15s;
    box-sizing: border-box;
}
.cge--form input:focus,
.cge--form select:focus,
.cge--form textarea:focus {
    outline: none;
    border-color: #6c843c;
    background: #fff;
}
.cge--form input[disabled],
.cge--form input:disabled {
    background: #f3f4f6;
    color: #9ca3af;
    cursor: not-allowed;
}
.cge--form input[type="submit"] {
    background: #6c843c;
    color: #fff;
    border: none;
    padding: 11px 28px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.15s;
    width: auto;
}
.cge--form input[type="submit"]:hover { background: #5a6e31; }
.cge--form .demo-hint {
    font-size: 12px;
    color: #9ca3af;
    margin-top: 5px;
}
.cge--form .messages { margin-bottom: 16px; }
.cge--form .row.remember { flex-direction: row; align-items: center; gap: 8px; }

/* Product list */
.product--list .category {
    list-style: none;
    padding: 0;
    margin: 0;
}
.product--list .category li {
    display: flex;
    align-items: center;
    padding: 14px 0;
    border-bottom: 1px solid #f0f0f0;
}
.product--list .category li a {
    text-decoration: none;
    color: #374151;
    flex-direction: column;
}
.product--list .category li a small {
    font-size: 12px;
    color: #9ca3af;
    margin-bottom: 3px;
}
.product--list .category li a p {
    font-size: 14px;
    font-weight: 500;
    color: #0e2218;
    margin: 0 0 4px;
}
.product--list .category li a .row {
    display: flex;
    gap: 12px;
    flex-direction: row;
    margin-top: 4px;
}
.product--list .category li a:last-child:not(:first-child) {
    margin-left: auto;
    background: #6c843c;
    color: #fff;
    padding: 8px 16px;
    border-radius: 8px;
    font-size: 13px;
    font-weight: 600;
    align-items: center;
    justify-content: center;
    min-width: 80px;
    text-align: center;
}
.product--list .category li a:last-child:not(:first-child) span {
    display: block;
    text-align: center;
}

/* Reports grid */
ul.three--column.category {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
    list-style: none;
    padding: 0;
    margin: 0;
}
ul.three--column.category li a {
    display: block;
    text-decoration: none;
    background: #f9fafb;
    border: 1px solid #e5e7eb;
    border-radius: 10px;
    padding: 18px;
    transition: box-shadow 0.18s, border-color 0.18s;
    height: 100%;
    box-sizing: border-box;
}
ul.three--column.category li a:hover {
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    border-color: #6c843c;
}
ul.three--column.category li a small {
    font-size: 11px;
    color: #9ca3af;
    text-transform: uppercase;
    letter-spacing: 0.4px;
    display: block;
    margin-bottom: 6px;
}
ul.three--column.category li a p {
    font-size: 14px;
    font-weight: 600;
    color: #0e2218;
    margin: 0 0 4px;
}
ul.three--column.category li a span {
    display: inline-block;
    margin-top: 10px;
    background: #6c843c;
    color: #fff;
    padding: 5px 14px;
    border-radius: 6px;
    font-size: 12px;
    font-weight: 500;
}

/* Messages */
.messages p.success,
.messages p.error {
    padding: 10px 14px;
    border-radius: 8px;
    font-size: 13px;
    margin-bottom: 10px;
}
.messages p.success { color: #059669; background: #ecfdf5; border: 1px solid #a7f3d0; }
.messages p.error   { color: #dc2626; background: #fef2f2; border: 1px solid #fecaca; }
.messages b span { font-size: 14px; color: #374151; }

/* Password row eye icon */
.cge--form .row.password { position: relative; }
.cge--form .row.password .eye {
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
    cursor: pointer;
    width: 18px;
    height: 18px;
    background: url('/Content/images/eye.svg') center/contain no-repeat;
    opacity: 0.5;
}

/* Kendo grid wrapper */
.user-area .layout--content [id^="user-"] {
    border-radius: 8px;
    overflow: hidden;
}

/* Profile logo input */
.cge--form input[type="file"] { background: #fff; padding: 6px; }

/* Tabs (FirmInfo) */
#firma-tabs { border-radius: 8px; overflow: hidden; }


