:root {
    --color-brand: #1e40af;
    --color-brand-hover: #1e3a8a;
    --color-brand-light: #3b82f6;
    --color-accent: #d97706;
    --color-accent-hover: #b45309;
    --color-accent-soft: #fff7ed;
    --color-surface-muted: #f1f5f9;
    --color-text-inverse: #ffffff;
    --color-text-muted-on-dark: rgba(255, 255, 255, 0.85);
    --color-hero-overlay: linear-gradient(262deg, rgba(13, 0, 0, 0) 17.44%, rgba(0, 0, 0, 0.9) 66.71%);
    --color-stat-divider: rgba(255, 255, 255, 0.35);
    --color-heading: #0f172a;
    --color-text-body: #475569;
    --color-text-label: #94a3b8;
    --color-border-light: #e2e8f0;
    --color-surface: #ffffff;
    --color-badge-roi: #2563eb;
    --color-badge-active: #0ea5e9;
    --color-accent-lime: var(--color-accent);
    --color-accent-lime-hover: var(--color-accent-hover);
    --color-heading-teal: #1e3a5f;

    --primary-green: var(--color-brand);
    --light-green: var(--color-brand-light);
    --navbar-green: var(--color-brand);
}

body.landing-page {
    overflow-x: hidden;
    padding-top: 72px;
}

.landing-section {
    position: relative;
    padding: 4.5rem 0;
}
.landing-section--white { background: var(--color-surface); }
.landing-section--muted { background: var(--color-surface-muted); }
.landing-section--accent-soft { background: var(--color-accent-soft); }
.landing-section-header {
    text-align: center;
    max-width: 42rem;
    margin: 0 auto 3rem;
}
.landing-section-header--left {
    text-align: left;
    margin-left: 0;
}
.landing-section-header__title {
    color: var(--color-heading);
    font-weight: 800;
    font-size: clamp(1.85rem, 3.5vw, 2.75rem);
    line-height: 1.2;
    margin-bottom: 1rem;
}
.landing-section-header__subtitle {
    color: var(--color-text-body);
    font-size: 1.1rem;
    line-height: 1.7;
    margin: 0;
}
.landing-section-header--accent .section-eyebrow__icon {
    color: var(--color-accent);
}

.text-primary-green { color: var(--color-brand) !important; }
.text-brand { color: var(--color-brand-light) !important; }
.text-accent { color: var(--color-accent) !important; }
.bg-primary-green { background-color: var(--color-brand) !important; }
.bg-light-green { background-color: var(--color-brand-light) !important; }
.card-project { transition: all 0.3s ease; }
.card-project:hover { transform: translateY(-10px); }
.card-project__title {
    font-size: 1.05rem;
    line-height: 1.35;
    margin-bottom: 1rem;
    min-width: 0;
}
.card-project__title a {
    display: block;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.card-project > img {
    position: relative;
    z-index: 1;
    display: block;
}
.project-card-image {
    position: relative;
    width: 100%;
    aspect-ratio: 1 / 1;
    overflow: hidden;
    background: var(--color-surface-muted);
}
.project-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.35s ease;
}
.card-project:hover .project-card-image img {
    transform: scale(1.03);
}
.project-card-image__placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--color-accent-soft);
}
.project-card-badges {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    z-index: 2;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 0.5rem;
    padding: 0.85rem 0.85rem 0;
    pointer-events: none;
}
.project-card-badges--status-only {
    justify-content: flex-end;
}
.project-card-roi-bar {
    background: linear-gradient(135deg, #fff1f2 0%, #fecdd3 100%);
    box-shadow: 0 2px 8px rgba(220, 38, 38, 0.08);
}
.project-card-roi-bar__label {
    color: #9f1239;
}
.project-card-roi-bar__value {
    color: #be123c;
}
.project-card-badge {
    display: inline-block;
    border-radius: 9999px;
    padding: 0.45rem 0.9rem;
    font-weight: 700;
    font-size: 0.72rem;
    line-height: 1.25;
    color: var(--color-text-inverse);
    border: none;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.18);
    max-width: calc(100% - 4rem);
}
.project-card-badge--roi {
    background: var(--color-badge-roi);
}
.project-card-badge--status,
.project-card-badge[class*="project-card-badge--status-"] {
    flex-shrink: 0;
}
.project-card-badge--status-active {
    background: var(--color-brand);
}
.project-card-badge--status-closed {
    background: #64748b;
}
.project-card-badge--status-sold-out {
    background: #dc3545;
}
.project-card-badge--status-unknown {
    background: #94a3b8;
}
@media (max-width: 575px) {
    .project-card-badge {
        font-size: 0.68rem;
        padding: 0.4rem 0.75rem;
    }
}
.btn-green { background-color: var(--color-brand); color: var(--color-text-inverse); }
.btn-green:hover { background-color: var(--color-brand-hover); color: var(--color-text-inverse); }
.btn-accent { background-color: var(--color-accent); color: var(--color-text-inverse); border: none; }
.btn-accent:hover { background-color: var(--color-accent-hover); color: var(--color-text-inverse); }

/* Navbar */
.landing-navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: var(--navbar-green);
}
.landing-navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    min-height: 72px;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
}
.landing-navbar__brand {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    text-decoration: none;
    flex-shrink: 0;
}
.landing-navbar__brand img { height: 55px; width: auto; }
@media (min-width: 992px) {
    .landing-navbar__brand img { height: 65px; }
}
.landing-navbar__brand-title {
    color: #fff;
    font-weight: 700;
    font-size: 1.25rem;
    line-height: 1.2;
}
@media (min-width: 992px) {
    .landing-navbar__brand-title { font-size: 1.5rem; }
}
.landing-navbar__end { display: flex; align-items: center; }
.landing-navbar__links { display: flex; align-items: center; gap: 0.5rem; }
.landing-navbar__link {
    color: #fff;
    font-weight: 700;
    font-size: 1rem;
    text-decoration: none;
    padding: 0.5rem 1rem;
    transition: opacity 0.2s;
}
.landing-navbar__link:hover { color: #fff; opacity: 0.85; }
.landing-navbar__login {
    margin-left: 0.75rem;
    background: #fff;
    color: var(--navbar-green);
    font-weight: 700;
    font-size: 1rem;
    border: none;
    border-radius: 6px;
    padding: 0.65rem 1.75rem;
    text-decoration: none;
    line-height: 1.25;
    transition: opacity 0.2s;
}
.landing-navbar__login:hover {
    background: #fff;
    color: var(--navbar-green);
    opacity: 0.92;
}
.landing-navbar__user {
    margin-left: 0.75rem;
    position: relative;
}
.landing-navbar__user-toggle {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: #fff;
    color: var(--navbar-green);
    font-weight: 700;
    font-size: 1rem;
    border: none;
    border-radius: 6px;
    padding: 0.45rem 1rem 0.45rem 0.45rem;
    line-height: 1.25;
    transition: opacity 0.2s;
}
.landing-navbar__user-toggle::after {
    margin-left: 0.15rem;
}
.landing-navbar__user-toggle:hover,
.landing-navbar__user-toggle:focus,
.landing-navbar__user-toggle.show {
    background: #fff;
    color: var(--navbar-green);
    opacity: 0.92;
}
.landing-navbar__user-avatar {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2rem;
    height: 2rem;
    border-radius: 50%;
    background: var(--navbar-green);
    color: #fff;
    overflow: hidden;
    flex-shrink: 0;
}
.landing-navbar__user-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.landing-navbar__user-avatar .ki-duotone {
    font-size: 1.15rem;
}
.landing-navbar__user-name {
    max-width: 10rem;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}
.landing-navbar__user-menu {
    min-width: 11rem;
    border: none;
    border-radius: 8px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
    padding: 0.35rem 0;
}
.landing-navbar__user-menu .dropdown-item {
    font-weight: 600;
    padding: 0.55rem 1.25rem;
}
.landing-navbar__user-menu .dropdown-item:hover,
.landing-navbar__user-menu .dropdown-item:focus {
    background: rgba(0, 128, 64, 0.08);
    color: var(--navbar-green);
}
.landing-navbar__toggle {
    display: none;
    background: transparent;
    border: none;
    color: #ffffff !important;
    font-size: 2.5rem;
    padding: 0.25rem 0.5rem;
    cursor: pointer;
    transition: transform 0.2s ease, opacity 0.2s ease;
}
.landing-navbar__toggle i {
    font-size: 2.5rem !important;
    color: #ffffff !important;
}
.landing-navbar__toggle:hover {
    opacity: 0.9;
    transform: scale(1.08);
}
.landing-navbar__toggle:active {
    transform: scale(0.92);
}
@media (max-width: 991px) {
    .landing-navbar__toggle { display: block; }
    .landing-navbar__brand-title { font-size: 1.2rem; }
    .landing-navbar__links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        flex-direction: column;
        align-items: stretch;
        background: var(--navbar-green);
        padding: 0.75rem 1rem 1rem;
        gap: 0;
    }
    .landing-navbar__links.is-open { display: flex; }
    .landing-navbar__link {
        padding: 0.85rem 1rem;
        font-size: 1.1rem;
    }
    .landing-navbar__login {
        margin-left: 0;
        margin-top: 0.5rem;
        text-align: center;
        font-size: 1.1rem;
        padding: 0.75rem 1.5rem;
    }
    .landing-navbar__user {
        margin-left: 0;
        margin-top: 0.5rem;
        width: 100%;
    }
    .landing-navbar__user-toggle {
        width: 100%;
        justify-content: center;
        font-size: 1.1rem;
        padding: 0.65rem 1.25rem 0.65rem 0.65rem;
    }
    .landing-navbar__user-name {
        max-width: none;
    }
    .landing-navbar__user-menu {
        width: 100%;
    }
    .landing-navbar .container { position: relative; }
}

/* Hero */
.hero-section.banner-section {
    position: relative;
    background: var(--hero-bg-image, none) center center / cover no-repeat;
    min-height: 85vh;
    display: flex;
    align-items: center;
    padding: 5rem 0 4rem;
    overflow: hidden;
}
.hero-section.banner-section::before {
    position: absolute;
    content: "";
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    background: var(--color-hero-overlay);
    z-index: 0;
}
.hero-section .container { position: relative; z-index: 1; }
.hero-section__title {
    color: var(--color-text-inverse);
    font-weight: 800;
    font-size: clamp(2.5rem, 5.5vw, 4.25rem);
    line-height: 1.15;
    margin-bottom: 1.25rem;
    max-width: 14ch;
}
.hero-section__subtitle {
    color: var(--color-text-inverse);
    font-size: clamp(1.15rem, 2.2vw, 1.6rem);
    line-height: 1.6;
    margin-bottom: 2rem;
    max-width: 36rem;
}
.hero-section__subtitle .text-brand {
    color: var(--color-brand-light);
    font-weight: 700;
}
.hero-section__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 3rem;
}
.hero-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.85rem 2rem;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.125rem;
    text-decoration: none;
    border: 2px solid transparent;
    transition: opacity 0.2s, background-color 0.2s;
}
.hero-section__eyebrow {
    display: inline-block;
    color: var(--color-accent);
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    margin-bottom: 1rem;
}
.hero-btn--primary {
    background: var(--color-brand);
    color: var(--color-text-inverse);
    border-color: var(--color-brand);
}
.hero-btn--primary:hover {
    background: var(--color-brand-hover);
    border-color: var(--color-brand-hover);
    color: var(--color-text-inverse);
    opacity: 0.95;
}
.hero-btn--accent {
    background: var(--color-accent);
    color: var(--color-text-inverse);
    border-color: var(--color-accent);
}
.hero-btn--accent:hover {
    background: var(--color-accent-hover);
    border-color: var(--color-accent-hover);
    color: var(--color-text-inverse);
    opacity: 0.95;
}
.hero-btn--outline {
    background: transparent;
    color: var(--color-text-inverse);
    border-color: var(--color-text-inverse);
}
.hero-btn--outline:hover {
    background: rgba(255, 255, 255, 0.1);
    color: var(--color-text-inverse);
}
.hero-section__stats {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    gap: 0;
}
.hero-stat { flex: 1 1 140px; padding: 0 1.75rem; }
.hero-stat:first-child { padding-left: 0; }
.hero-stat + .hero-stat { border-left: 1px solid var(--color-stat-divider); }
.hero-stat__value {
    color: var(--color-brand-light);
    font-weight: 800;
    font-size: clamp(2rem, 3.5vw, 3rem);
    line-height: 1.1;
    margin-bottom: 0.35rem;
}
.hero-stat__value--accent {
    color: var(--color-accent);
}
.hero-stat__label {
    color: var(--color-text-inverse);
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    opacity: 0.9;
}
@media (max-width: 991px) {
    .hero-section.banner-section {
        min-height: auto;
        padding: 4rem 0 3rem;
        text-align: center;
    }
    .hero-section__title {
        font-size: clamp(2.35rem, 7.5vw, 3.25rem);
        max-width: none;
        margin-left: auto;
        margin-right: auto;
    }
    .hero-section__subtitle {
        font-size: clamp(1.2rem, 4.2vw, 1.5rem);
        max-width: none;
        margin-left: auto;
        margin-right: auto;
    }
    .hero-btn {
        font-size: 1.1rem;
        padding: 0.9rem 1.75rem;
        width: 100%;
        max-width: 320px;
    }
    .hero-section__actions {
        justify-content: center;
        flex-direction: column;
        align-items: center;
    }
    .hero-section__stats { justify-content: center; }
    .hero-stat {
        flex: 1 1 100%;
        padding: 1rem 0 !important;
        border-left: none !important;
        border-top: 1px solid var(--color-stat-divider);
    }
    .hero-stat:first-child { border-top: none; }
    .hero-stat__value {
        font-size: clamp(2.15rem, 6vw, 2.75rem);
    }
    .hero-stat__label {
        font-size: 0.85rem;
    }
}

/* Contact page */
.contact-page {
    padding-top: 6.5rem;
    padding-bottom: 4rem;
}
.contact-page__header {
    margin-bottom: 2.5rem;
}
.contact-page__alert {
    max-width: 720px;
    margin: 0 auto 1.5rem;
    border-radius: 10px;
}
.contact-page__cards {
    margin-bottom: 2rem;
}
.contact-card {
    height: 100%;
    text-align: center;
    padding: 2rem 1.5rem;
    background: var(--color-surface);
    border: 1px solid rgba(39, 174, 96, 0.35);
    border-radius: 12px;
    transition: box-shadow 0.25s ease, border-color 0.25s;
}
.contact-card:hover {
    border-color: var(--color-brand);
    box-shadow: 0 12px 32px rgba(39, 174, 96, 0.12);
}
.contact-card__icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 56px;
    height: 56px;
    margin-bottom: 1.15rem;
    border-radius: 50%;
    background: var(--color-brand);
    color: #fff;
}
.contact-card__title {
    font-size: 1.15rem;
    font-weight: 700;
    color: #2d3436;
    margin-bottom: 0.65rem;
}
.contact-card__text {
    display: block;
    font-size: 0.95rem;
    line-height: 1.55;
    color: var(--color-text-body);
    text-decoration: none;
    margin: 0;
}
a.contact-card__text:hover {
    color: var(--color-brand);
}
.contact-card__text--static {
    max-width: 28rem;
    margin-left: auto;
    margin-right: auto;
}
.contact-form-wrap {
    background: var(--color-surface);
    border-radius: 14px;
    box-shadow: 0 8px 40px rgba(14, 74, 66, 0.08);
    padding: 2rem 1.75rem;
    max-width: 900px;
    margin: 0 auto;
}
.contact-form__label {
    display: block;
    font-weight: 700;
    font-size: 0.95rem;
    color: #2d3436;
    margin-bottom: 0.5rem;
}
.contact-form__required {
    color: #dc3545;
}
.contact-form__input {
    width: 100%;
    padding: 0.75rem 1rem;
    font-size: 0.95rem;
    line-height: 1.5;
    color: var(--color-heading);
    background: #fff;
    border: 1px solid #dce3dd;
    border-radius: 8px;
    transition: border-color 0.2s, box-shadow 0.2s;
}
.contact-form__input::placeholder {
    color: #adb5bd;
}
.contact-form__input:focus {
    outline: none;
    border-color: var(--color-brand);
    box-shadow: 0 0 0 3px rgba(39, 174, 96, 0.15);
}
.contact-form__input.is-invalid {
    border-color: #dc3545;
}
.contact-form__textarea {
    resize: vertical;
    min-height: 140px;
}
.contact-form__error {
    font-size: 0.85rem;
    color: #dc3545;
    margin-top: 0.35rem;
}
.contact-form__submit {
    font-size: 1.05rem;
    border: none;
    border-radius: 8px;
}
@media (max-width: 991px) {
    .contact-page {
        padding-top: 5.5rem;
    }
    .contact-form-wrap {
        padding: 1.5rem 1.25rem;
    }
}
@media (max-width: 575px) {
    .contact-card {
        padding: 1.5rem 1.15rem;
    }
}

/* About page */
.about-page .why-choose-section {
    padding-top: 6.5rem;
}

/* Why choose us */
.why-choose-section {
    padding: 5rem 0;
    background: var(--color-surface);
    overflow: hidden;
}
.why-choose-section__decor {
    position: absolute;
    right: 0;
    bottom: 0;
    width: min(420px, 45vw);
    height: min(420px, 45vw);
    pointer-events: none;
    opacity: 0.12;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 200 200' fill='none'%3E%3Cpath stroke='%2327ae60' stroke-width='2' d='M120 180c20-40 60-70 70-110-25 10-45 30-70 50 5-35 25-65 50-90-15 25-20 55-15 85 25-20 55-35 85-40-30 20-50 50-70 105z'/%3E%3Cpath stroke='%2327ae60' stroke-width='1.5' d='M40 160c15-25 35-45 55-65-10 15-15 35-10 55 15-12 30-22 45-28-12 18-22 38-35 60z'/%3E%3C/svg%3E") no-repeat right bottom / contain;
}
.why-choose-section__media {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(30, 70, 35, 0.12);
}
.why-choose-section__media::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.35);
    pointer-events: none;
    z-index: 1;
}
.why-choose-section__image {
    display: block;
    width: 100%;
    height: auto;
    min-height: 320px;
    object-fit: cover;
    border-radius: 20px;
    transition: transform 0.4s ease;
}
.why-choose-section__media:hover .why-choose-section__image {
    transform: scale(1.02);
}
.why-choose-section__content {
    position: relative;
    z-index: 1;
}
.section-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--color-text-label);
    font-size: 0.95rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    margin-bottom: 1.25rem;
}
.section-eyebrow__icon {
    color: var(--color-brand);
    font-size: 1.5rem;
    line-height: 1;
}
.why-choose-section__title {
    color: var(--color-heading);
    font-weight: 800;
    font-size: clamp(2rem, 4vw, 3rem);
    line-height: 1.2;
    margin-bottom: 1.5rem;
    max-width: 20ch;
}
.why-choose-section__text {
    color: var(--color-text-body);
    font-size: 1.25rem;
    line-height: 1.75;
    margin-bottom: 2.25rem;
    max-width: 36rem;
}
.why-choose-section__features {
    list-style: none;
    padding: 0;
    margin: 0 0 2rem;
}
.why-choose-section__features li {
    position: relative;
    padding-left: 1.5rem;
    margin-bottom: 1rem;
    color: var(--color-text-body);
    font-size: 1.15rem;
    line-height: 1.55;
}
.why-choose-section__features li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.55em;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--color-brand);
    transform: translateY(-50%);
}
.why-choose-section__btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.9rem 2rem;
    border: 1px solid var(--color-border-light);
    border-radius: 6px;
    background: var(--color-surface);
    color: #1a1a1a;
    font-weight: 600;
    font-size: 1.125rem;
    text-decoration: none;
    transition: border-color 0.2s, box-shadow 0.2s;
}
.why-choose-section__btn:hover {
    border-color: var(--color-brand);
    box-shadow: 0 4px 14px rgba(30, 64, 175, 0.12);
    color: #1a1a1a;
}
@media (max-width: 991px) {
    .why-choose-section {
        padding: 3.5rem 0;
        text-align: center;
    }
    .why-choose-section__content {
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    .why-choose-section__title {
        font-size: clamp(2.1rem, 6.5vw, 2.75rem);
        max-width: none;
    }
    .why-choose-section__text {
        font-size: clamp(1.15rem, 3.8vw, 1.3rem);
        max-width: none;
    }
    .why-choose-section__features {
        text-align: left;
        width: 100%;
        max-width: 420px;
    }
    .why-choose-section__features li {
        font-size: clamp(1.05rem, 3.5vw, 1.15rem);
    }
    .section-eyebrow {
        font-size: 0.9rem;
        justify-content: center;
    }
    .why-choose-section__btn {
        font-size: 1.1rem;
        width: 100%;
        max-width: 320px;
    }
    .why-choose-section__media { margin-bottom: 2rem; }
    .why-choose-section__image { min-height: 260px; }
}

/* Who we are */
.who-we-are-section {
    padding: 5rem 0;
    background: var(--color-surface);
}
.who-we-are-section__media {
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 18px 45px rgba(14, 74, 66, 0.1);
}
.who-we-are-section__image {
    display: block;
    width: 100%;
    height: auto;
    min-height: 320px;
    object-fit: cover;
    border-radius: 24px;
}
.who-we-are-section__eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--color-text-label);
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    margin-bottom: 1.25rem;
}
.who-we-are-section__eyebrow-icon {
    font-size: 1.35rem;
    line-height: 1;
    color: var(--color-brand);
}
.who-we-are-section__title {
    color: var(--color-heading);
    font-weight: 800;
    font-size: clamp(2.25rem, 4.5vw, 3.25rem);
    line-height: 1.15;
    margin-bottom: 1.5rem;
}
.who-we-are-section__text {
    color: #2d3a35;
    font-size: 1.2rem;
    line-height: 1.8;
    margin-bottom: 2rem;
    max-width: 36rem;
}
.who-we-are-section__btn {
    display: inline-flex;
    align-items: center;
    gap: 0.65rem;
    padding: 0.9rem 1.85rem;
    border-radius: 9999px;
    background: var(--color-brand);
    color: var(--color-text-inverse);
    font-weight: 700;
    font-size: 1.125rem;
    text-decoration: none;
    transition: background-color 0.2s, transform 0.2s;
}
.who-we-are-section__btn:hover {
    background: var(--color-brand-hover);
    color: var(--color-text-inverse);
    transform: translateY(-1px);
}
.who-we-are-section__btn-icon {
    font-size: 1.15rem;
    line-height: 1;
}
@media (max-width: 991px) {
    .who-we-are-section {
        padding: 3.5rem 0;
        text-align: center;
    }
    .who-we-are-section__content {
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    .who-we-are-section__eyebrow { justify-content: center; }
    .who-we-are-section__title { max-width: none; }
    .who-we-are-section__text {
        max-width: none;
        font-size: clamp(1.1rem, 3.8vw, 1.2rem);
    }
    .who-we-are-section__media { margin-bottom: 2rem; }
    .who-we-are-section__image { min-height: 260px; }
}
@media (max-width: 575px) {
    .who-we-are-section__title { font-size: 2.15rem; }
    .who-we-are-section__text { font-size: 1.1rem; }
    .who-we-are-section__btn {
        width: 100%;
        max-width: 320px;
        justify-content: center;
    }
}

/* Our commitment */
.commitment-section {
    padding: 5rem 0;
    background: var(--color-surface);
}
.commitment-section__header {
    max-width: 42rem;
    margin: 0 auto 3rem;
}
.commitment-section__eyebrow {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.65rem;
    color: var(--color-text-label);
    font-size: 0.95rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    margin-bottom: 1rem;
}
.commitment-section__eyebrow-icon {
    color: var(--color-brand);
    font-size: 1.25rem;
    line-height: 1;
}
.commitment-section__title {
    color: var(--color-heading);
    font-weight: 800;
    font-size: clamp(2rem, 4vw, 2.85rem);
    line-height: 1.2;
    margin-bottom: 1rem;
}
.commitment-section__subtitle {
    color: var(--color-text-body);
    font-size: 1.15rem;
    line-height: 1.75;
    margin: 0;
}
.commitment-card {
    height: 100%;
    padding: 1.5rem;
    background: var(--color-surface);
    border: 1px solid var(--color-border-light);
    border-radius: 12px;
    transition: box-shadow 0.2s, border-color 0.2s;
}
.commitment-card:hover {
    border-color: rgba(39, 174, 96, 0.35);
    box-shadow: 0 8px 24px rgba(30, 70, 35, 0.08);
}
.commitment-card__icon-wrap {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 56px;
    height: 56px;
    margin-bottom: 1.25rem;
    background: #f3f5f4;
    border-radius: 10px;
}
.commitment-card__icon {
    width: 36px;
    height: 36px;
    object-fit: contain;
}
.commitment-card__text {
    color: var(--color-heading);
    font-weight: 700;
    font-size: 1.05rem;
    line-height: 1.5;
    margin: 0;
}
@media (max-width: 991px) {
    .commitment-section { padding: 3.5rem 0; }
    .commitment-section__header { margin-bottom: 2rem; }
    .commitment-section__subtitle { font-size: clamp(1.05rem, 3.5vw, 1.15rem); }
    .commitment-card__text { font-size: 1rem; }
}
@media (max-width: 575px) {
    .commitment-section__title { font-size: 2rem; }
    .commitment-card { padding: 1.25rem; }
}

/* How to investment / process */
.invest-process-section {
    padding: 5rem 0;
    background: #f8faf9;
}
.invest-process-section__media {
    flex: 1;
    width: 100%;
    min-height: 100%;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(30, 70, 35, 0.12);
}
.invest-process-section__image {
    display: block;
    width: 100%;
    height: 100%;
    min-height: 100%;
    object-fit: cover;
    border-radius: 20px;
}
.invest-process-section__eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 0.65rem;
    color: var(--color-text-label);
    font-size: 0.95rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    margin-bottom: 1rem;
}
.invest-process-section__eyebrow-icon {
    color: var(--color-brand);
    font-size: 1.25rem;
    line-height: 1;
}
.invest-process-section__title {
    color: var(--color-heading);
    font-weight: 800;
    font-size: clamp(2rem, 4vw, 2.75rem);
    line-height: 1.2;
    margin-bottom: 0.75rem;
}
.invest-process-section__intro {
    color: var(--color-text-body);
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 2rem;
    max-width: 32rem;
}
.invest-process-steps {
    display: flex;
    flex-direction: column;
    gap: 0;
}
.invest-process-step {
    position: relative;
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: start;
    gap: 1rem 1.25rem;
    padding-bottom: 2rem;
}
.invest-process-step--last {
    padding-bottom: 0;
}
.invest-process-step__track {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    flex-shrink: 0;
}
.invest-process-step:not(.invest-process-step--last) .invest-process-step__track::after {
    content: "";
    position: absolute;
    top: 56px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: calc(100% + 2rem - 56px);
    border-left: 2px dashed #d5ddd7;
}
.invest-process-step__icon-ring {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 56px;
    height: 56px;
    border: 2px dashed #d5ddd7;
    border-radius: 50%;
    background: var(--color-surface);
    position: relative;
    z-index: 1;
}
.invest-process-step__icon {
    width: 28px;
    height: 28px;
    object-fit: contain;
}
.invest-process-step__body {
    padding-top: 0.35rem;
    min-width: 0;
}
.invest-process-step__title {
    color: var(--color-heading);
    font-weight: 700;
    font-size: 1.15rem;
    line-height: 1.35;
    margin: 0 0 0.35rem;
}
.invest-process-step__text {
    color: var(--color-text-body);
    font-size: 0.98rem;
    line-height: 1.6;
    margin: 0;
    max-width: 22rem;
}
.invest-process-step__num {
    color: rgba(30, 70, 35, 0.12);
    font-weight: 800;
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    line-height: 1;
    align-self: start;
    padding-top: 0.15rem;
    user-select: none;
}
@media (max-width: 991px) {
    .invest-process-section {
        padding: 3.5rem 0;
    }
    .invest-process-section__media {
        margin-bottom: 0.5rem;
        min-height: auto;
    }
    .invest-process-section__image {
        height: auto;
        min-height: 0;
        max-height: none;
        object-fit: cover;
    }
    .invest-process-step__num {
        font-size: 2.25rem;
    }
}
@media (max-width: 575px) {
    .invest-process-section__image {
        height: auto;
    }
    .invest-process-step {
        grid-template-columns: auto 1fr;
    }
    .invest-process-step__num {
        display: none;
    }
    .invest-process-section__title {
        font-size: 2rem;
    }
}

/* FAQ */
.faq-section {
    padding: 0;
    background: #1e3a8a;
    color: var(--color-text-inverse);
}
.faq-section__row {
    min-height: 520px;
}
.faq-section__intro {
    min-height: 520px;
    height: 100%;
    background: #1e3a8a;
}
.faq-section__intro-content {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-height: 520px;
    padding: 3rem 2.5rem;
}
.faq-section__eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.95rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    margin-bottom: 1.25rem;
    color: rgba(255, 255, 255, 0.9);
}
.faq-section__eyebrow-icon {
    color: var(--color-brand-light);
    font-size: 1.25rem;
    line-height: 1;
}
.faq-section__title {
    font-weight: 800;
    font-size: clamp(2rem, 4vw, 2.75rem);
    line-height: 1.2;
    margin-bottom: 1rem;
    max-width: 14ch;
}
.faq-section__tagline {
    font-size: 1.15rem;
    line-height: 1.6;
    margin-bottom: 2rem;
    color: rgba(255, 255, 255, 0.88);
    max-width: 22rem;
}
.faq-section__btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    align-self: flex-start;
    padding: 0.85rem 1.75rem;
    border-radius: 8px;
    background: var(--color-brand-light);
    color: var(--color-text-inverse);
    font-weight: 700;
    font-size: 1.05rem;
    text-decoration: none;
    transition: background-color 0.2s, opacity 0.2s;
}
.faq-section__btn:hover {
    background: var(--color-brand);
    color: var(--color-text-inverse);
    opacity: 0.95;
}
.faq-section__accordion {
    min-height: 520px;
    padding: 3rem 2.5rem 3rem 2rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.faq-item {
    border-bottom: 1px solid rgba(255, 255, 255, 0.25);
}
.faq-item__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
    width: 100%;
    padding: 1.35rem 0;
    background: transparent;
    border: none;
    color: var(--color-text-inverse);
    text-align: left;
    cursor: pointer;
}
.faq-item__header:hover {
    opacity: 0.92;
}
.faq-item__question {
    font-weight: 700;
    font-size: clamp(1.05rem, 2vw, 1.25rem);
    line-height: 1.4;
}
.faq-item__toggle {
    flex-shrink: 0;
    width: 1.5rem;
    font-size: 1.5rem;
    font-weight: 300;
    line-height: 1;
    text-align: center;
}
.faq-item__header.collapsed .faq-item__toggle::before {
    content: "+";
}
.faq-item__header:not(.collapsed) .faq-item__toggle::before {
    content: "—";
}
.faq-item__body {
    padding: 0 0 1.35rem;
}
.faq-item__body p {
    margin: 0;
    font-size: 1rem;
    line-height: 1.75;
    color: rgba(255, 255, 255, 0.88);
    max-width: 40rem;
}
@media (max-width: 991px) {
    .faq-section__row {
        min-height: auto;
    }
    .faq-section__intro {
        min-height: 320px;
    }
    .faq-section__intro-content {
        min-height: 320px;
        padding: 2.5rem 1.5rem;
    }
    .faq-section__title {
        max-width: none;
    }
    .faq-section__accordion {
        min-height: auto;
        padding: 2rem 1.5rem 2.5rem;
    }
}
@media (max-width: 575px) {
    .faq-section__intro {
        min-height: 280px;
    }
    .faq-section__intro-content {
        min-height: 280px;
    }
    .faq-section__btn {
        width: 100%;
        max-width: 320px;
    }
}

/* Testimonials */
.testimonials-section {
    padding: 5rem 0;
    background: #f6f8f5;
}
.testimonials-book {
    position: relative;
    max-width: 520px;
    margin: 0 auto;
    padding: 0.5rem 1.25rem 2.5rem;
}
.testimonials-stack__peek {
    position: absolute;
    top: 0.75rem;
    left: 0.75rem;
    right: 0.75rem;
    bottom: 2.75rem;
    z-index: 0;
    pointer-events: none;
}
.testimonials-stack__peek-page {
    position: absolute;
    inset: 0;
    border-radius: 14px;
    background: #e9eeea;
    border: 1px solid #dce3dd;
    box-shadow: 0 4px 16px rgba(30, 70, 32, 0.06);
}
.testimonials-stack__peek-page:nth-child(1) {
    transform: translate(10px, 12px);
    z-index: 1;
}
.testimonials-stack__peek-page:nth-child(2) {
    transform: translate(18px, 22px);
    z-index: 0;
    background: #e2e8e3;
}
.testimonials-stack {
    position: relative;
    z-index: 2;
    width: 100%;
    padding-top: 0.75rem;
    padding-bottom: 2.25rem;
    touch-action: pan-y;
}
.testimonials-stack__deck {
    position: relative;
    z-index: 2;
    width: 100%;
    min-height: 320px;
    overflow: hidden;
}
.testimonial-stack__card {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    transform-origin: center bottom;
    transition: transform 0.48s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.48s ease;
    will-change: transform, opacity;
}
.testimonial-stack__card.is-under {
    visibility: visible;
    opacity: 1;
    pointer-events: none;
    transform: translateX(0) scale(1) !important;
}
.testimonial-stack__card.is-hidden {
    visibility: hidden;
    opacity: 0;
    pointer-events: none;
    transform: translateX(0) scale(1) !important;
}
.testimonial-stack__card.is-top {
    visibility: visible;
    opacity: 1;
    cursor: grab;
    user-select: none;
    box-shadow: 0 20px 50px rgba(14, 74, 66, 0.14);
}
.testimonial-stack__card.is-top.is-dragging {
    cursor: grabbing;
    transition: none;
    z-index: 20 !important;
}
.testimonial-stack__card.is-flipping-out {
    pointer-events: none;
    z-index: 30 !important;
    transform: translateX(-115%) rotate(-6deg) scale(0.92) !important;
    opacity: 0;
}
.testimonials-stack__pagination {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 1.5rem;
}
.testimonials-stack__bullet {
    width: 8px;
    height: 8px;
    padding: 0;
    border: none;
    border-radius: 50%;
    background: #c5d0c8;
    cursor: pointer;
    transition: transform 0.25s, background-color 0.25s;
}
.testimonials-stack__bullet.is-active {
    background: var(--color-brand);
    transform: scale(1.25);
}
.testimonials-stack__bullet:focus-visible {
    outline: 2px solid var(--color-brand);
    outline-offset: 2px;
}
.testimonial-card {
    background: var(--color-surface);
    border-radius: 14px;
    padding: 1.75rem 1.85rem 1.5rem;
    min-height: 320px;
    display: flex;
    flex-direction: column;
    border: 1px solid rgba(220, 227, 221, 0.9);
    width: 100%;
}
.testimonial-card__stars i {
    color: #f5b301;
}
.testimonial-card__header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 1rem;
    margin-bottom: 1.25rem;
}
.testimonial-card__title {
    margin: 0;
    font-size: 1.2rem;
    font-weight: 700;
    color: #2d3436;
    line-height: 1.35;
    flex: 1;
}
.testimonial-card__stars {
    display: flex;
    gap: 0.15rem;
    flex-shrink: 0;
    color: var(--color-brand);
    font-size: 1rem;
}
.testimonial-card__quote {
    flex: 1;
    margin: 0 0 1.5rem;
}
.testimonial-card__quote p {
    margin: 0;
    font-size: 1.05rem;
    line-height: 1.7;
    color: #6b7b72;
    font-style: italic;
}
.testimonial-card__author {
    display: flex;
    align-items: center;
    gap: 0.85rem;
    padding-top: 1.15rem;
    border-top: 1px solid var(--color-border-light);
}
.testimonial-card__avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--color-brand) 0%, var(--color-heading-teal) 100%);
    color: #fff;
    font-size: 0.85rem;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    letter-spacing: 0.02em;
}
.testimonial-card__name {
    display: block;
    font-style: normal;
    font-weight: 700;
    font-size: 1rem;
    color: var(--color-heading);
    margin-bottom: 0.15rem;
}
.testimonial-card__role {
    display: block;
    font-size: 0.88rem;
    color: var(--color-text-label);
}
.testimonials-section__content {
    max-width: 34rem;
}
.testimonials-section__eyebrow {
    color: var(--color-accent-lime);
    font-size: 0.9rem;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    margin-bottom: 0.85rem;
}
.testimonials-section__title {
    color: var(--color-heading-teal);
    font-weight: 800;
    font-size: clamp(2rem, 4vw, 2.65rem);
    line-height: 1.2;
    margin-bottom: 1.25rem;
}
.testimonials-section__text {
    color: var(--color-text-body);
    font-size: 1.05rem;
    line-height: 1.7;
    margin-bottom: 2rem;
}
.testimonials-section__rating {
    display: flex;
    align-items: center;
    gap: 1rem;
}
.testimonials-section__rating-icon {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: rgba(14, 74, 66, 0.1);
    color: var(--color-heading-teal);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 1.75rem;
}
.testimonials-section__rating-value {
    margin: 0 0 0.2rem;
    font-weight: 800;
    font-size: 1.15rem;
    color: var(--color-heading-teal);
}
.testimonials-section__rating-note {
    margin: 0;
    font-size: 0.9rem;
    color: var(--color-text-label);
    line-height: 1.45;
}

@media (max-width: 991px) {
    .testimonials-section {
        padding: 4rem 0;
    }
    .testimonials-section__content {
        max-width: none;
        text-align: center;
        margin-top: 0.5rem;
    }
    .testimonials-section__rating {
        justify-content: center;
    }
    .testimonials-book {
        max-width: 100%;
        padding: 1rem 1.25rem 2.25rem;
    }
}
@media (max-width: 575px) {
    .testimonials-section {
        padding: 3rem 0;
    }
    .testimonial-card {
        min-height: 300px;
        padding: 1.35rem 1.25rem 1.25rem;
    }
    .testimonial-card__header {
        flex-direction: column;
        align-items: flex-start;
    }
    .testimonials-stack__peek-page:nth-child(2) {
        transform: translate(12px, 16px);
    }
}

/* Public listing pages (projects / blogs) */
.landing-public-page {
    padding: 3rem 0 4rem;
    background: #f6f8f5;
    min-height: 60vh;
}
.landing-public-page__header {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    justify-content: space-between;
    gap: 1.5rem 2rem;
    margin-bottom: 2.75rem;
}
.landing-public-page__header--center {
    flex-direction: column;
    align-items: center;
    text-align: center;
}
.landing-public-page__intro {
    max-width: 36rem;
}
.landing-public-page__eyebrow {
    display: block;
    color: var(--color-brand);
    font-size: 0.9rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    margin-bottom: 0.5rem;
}
.landing-public-page__title {
    color: var(--color-heading);
    font-weight: 800;
    font-size: clamp(2rem, 4vw, 2.75rem);
    line-height: 1.2;
    margin-bottom: 0.75rem;
}
.landing-public-page__subtitle {
    color: var(--color-text-body);
    font-size: 1.05rem;
    line-height: 1.65;
    margin: 0;
}
.landing-public-page__subtitle--center {
    max-width: 40rem;
}
.landing-status-tabs {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    justify-content: flex-end;
    align-self: flex-start;
}
.landing-status-tabs__item {
    display: inline-flex;
    align-items: center;
    padding: 0.5rem 1rem;
    border-radius: 999px;
    border: 1px solid var(--color-border-light);
    background: var(--color-surface);
    color: var(--color-text-body);
    font-size: 0.9rem;
    font-weight: 600;
    text-decoration: none;
    transition: background-color 0.2s, color 0.2s, border-color 0.2s;
}
.landing-status-tabs__item:hover {
    border-color: var(--color-brand);
    color: var(--color-brand);
}
.landing-status-tabs__item.is-active {
    background: var(--color-brand);
    border-color: var(--color-brand);
    color: #fff;
}
.landing-public-page__empty {
    text-align: center;
    padding: 3rem 1.5rem;
    background: var(--color-surface);
    border-radius: 14px;
    border: 1px dashed var(--color-border-light);
}
.landing-public-page__empty p {
    color: var(--color-text-body);
    margin-bottom: 1.25rem;
}
.landing-pagination-wrap {
    margin-top: 3rem;
    display: flex;
    justify-content: center;
}
.landing-pagination__list {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 0.35rem;
    list-style: none;
    padding: 0;
    margin: 0;
}
.landing-pagination__link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 40px;
    height: 40px;
    padding: 0 0.65rem;
    border-radius: 8px;
    border: 1px solid var(--color-border-light);
    background: var(--color-surface);
    color: var(--color-heading);
    font-weight: 600;
    font-size: 0.95rem;
    text-decoration: none;
    transition: background-color 0.2s, color 0.2s, border-color 0.2s;
}
.landing-pagination__link:hover:not(.is-disabled):not(.is-active) {
    border-color: var(--color-brand);
    color: var(--color-brand);
}
.landing-pagination__link.is-active {
    background: var(--color-brand);
    border-color: var(--color-brand);
    color: #fff;
}
.landing-pagination__link.is-disabled {
    opacity: 0.45;
    cursor: default;
}
.landing-pagination__dots {
    padding: 0 0.35rem;
    color: var(--color-text-label);
}
.blogs-page .blog-card__excerpt {
    font-size: 0.95rem;
    line-height: 1.55;
    color: var(--color-text-body);
    margin: 0 0 0.85rem;
}
@media (max-width: 991px) {
    .landing-public-page {
        padding: 2rem 0 3rem;
    }
    .landing-status-tabs {
        width: 100%;
        justify-content: flex-start;
    }
}
@media (max-width: 575px) {
    .landing-status-tabs__item {
        flex: 1 1 auto;
        justify-content: center;
        min-width: calc(50% - 0.25rem);
    }
}

/* Blog section */
.blog-section {
    padding: 5rem 0 5.5rem;
    background: var(--color-surface);
}
.blog-section__header {
    max-width: 42rem;
    margin: 0 auto 3.5rem;
}
.blog-section__eyebrow {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.65rem;
    color: var(--color-brand);
    font-size: 0.9rem;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    margin-bottom: 1rem;
}
.blog-section__eyebrow-icon {
    color: var(--color-brand);
    font-size: 1.1rem;
    line-height: 1;
}
.blog-section__title {
    color: var(--color-heading);
    font-weight: 800;
    font-size: clamp(2rem, 4vw, 2.75rem);
    line-height: 1.2;
    margin-bottom: 1rem;
}
.blog-section__subtitle {
    color: var(--color-text-body);
    font-size: 1.1rem;
    line-height: 1.65;
    margin: 0;
}
.blog-section__view-all {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.75rem 2rem;
    border-radius: 8px;
    background: var(--color-brand);
    color: #fff;
    font-weight: 700;
    font-size: 1rem;
    text-decoration: none;
    transition: background 0.2s ease, opacity 0.2s ease;
}
.blog-section__view-all:hover {
    background: var(--color-brand-hover);
    color: #fff;
    opacity: 0.95;
}
.blog-detail-page {
    padding-top: 5rem;
}
.blog-detail-page__breadcrumb {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    color: var(--color-text-label);
    margin-bottom: 1.5rem;
}
.blog-detail-page__breadcrumb a {
    color: var(--color-brand);
    font-weight: 600;
    text-decoration: none;
}
.blog-detail-page__breadcrumb a:hover {
    text-decoration: underline;
}
.blog-detail {
    background: var(--color-surface);
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid var(--color-border-light);
    box-shadow: 0 8px 28px rgba(30, 70, 32, 0.08);
}
.blog-detail__hero {
    width: 100%;
    max-height: 420px;
    overflow: hidden;
    background: #e8efe9;
}
.blog-detail__image {
    width: 100%;
    max-height: 420px;
    object-fit: cover;
    display: block;
}
.blog-detail__content {
    padding: 2rem 2.25rem 2.5rem;
}
.blog-detail__title {
    color: var(--color-heading);
    font-weight: 800;
    font-size: clamp(1.75rem, 3.5vw, 2.5rem);
    line-height: 1.25;
    margin-bottom: 1rem;
}
.blog-detail__meta {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--color-text-label);
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
}
.blog-detail__body {
    color: var(--color-text-body);
    font-size: 1.05rem;
    line-height: 1.75;
    margin-bottom: 2rem;
}
.blog-detail__back {
    display: inline-flex;
    align-items: center;
    color: var(--color-brand);
    font-weight: 700;
    text-decoration: none;
}
.blog-detail__back:hover {
    text-decoration: underline;
}
@media (max-width: 575px) {
    .blog-detail__content {
        padding: 1.5rem 1.25rem 2rem;
    }
}
.blog-card {
    display: flex;
    flex-direction: column;
    height: 100%;
    background: var(--color-surface);
    border: 1px solid var(--color-border-light);
    border-radius: 12px;
    overflow: hidden;
    transition: box-shadow 0.25s ease, transform 0.25s ease;
}
.blog-card:hover {
    box-shadow: 0 12px 32px rgba(30, 70, 32, 0.1);
    transform: translateY(-4px);
}
.blog-card__image-link {
    display: block;
    overflow: hidden;
}
.blog-card__image {
    width: 100%;
    aspect-ratio: 16 / 10;
    object-fit: fill;
    display: block;
    transition: transform 0.35s ease;
}
.blog-card:hover .blog-card__image {
    transform: scale(1.03);
}
.blog-card__body {
    display: flex;
    flex-direction: column;
    flex: 1;
    padding: 1.35rem 1.5rem 1.5rem;
}
.blog-card__title {
    font-size: 1.2rem;
    font-weight: 700;
    line-height: 1.4;
    margin-bottom: 0.75rem;
}
.blog-card__title a {
    color: var(--color-heading);
    text-decoration: none;
    transition: color 0.2s;
}
.blog-card__title a:hover {
    color: var(--color-brand);
}
.blog-card__meta {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--color-text-label);
    font-size: 0.9rem;
    margin-bottom: 1.25rem;
}
.blog-card__meta i {
    color: var(--color-text-label);
}
.blog-card__btn {
    display: inline-flex;
    align-items: center;
    align-self: flex-start;
    margin-top: auto;
    padding: 0.5rem 1.15rem;
    border: 1px solid var(--color-border-light);
    border-radius: 6px;
    color: var(--color-text-body);
    font-size: 0.95rem;
    font-weight: 600;
    text-decoration: none;
    transition: border-color 0.2s, color 0.2s, background-color 0.2s;
}
.blog-card__btn:hover {
    border-color: var(--color-brand);
    color: var(--color-brand);
    background: rgba(39, 174, 96, 0.06);
}

/* Footer */
.landing-footer {
    position: relative;
    background: linear-gradient(180deg, #f8fafc 0%, #eff6ff 100%);
    color: var(--color-text-body);
    border-top: 1px solid var(--color-border-light);
}
.landing-footer__main {
    padding: 4.5rem 0 3.5rem;
}
.landing-footer__brand {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1.25rem;
}
.landing-footer__logo {
    height: 62px;
    width: auto;
}
.landing-footer__brand-name {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--color-heading);
    letter-spacing: -0.02em;
}
.landing-footer__about {
    font-size: 0.95rem;
    line-height: 1.7;
    margin: 0;
    max-width: 22rem;
    color: var(--color-text-body);
}
.landing-footer__heading {
    color: var(--color-heading);
    font-size: 1.05rem;
    font-weight: 700;
    margin-bottom: 1.25rem;
}
.landing-footer__heading--social {
    margin-top: 1.75rem;
    margin-bottom: 1rem;
}
.landing-footer__links {
    list-style: none;
    padding: 0;
    margin: 0;
}
.landing-footer__links li {
    margin-bottom: 0.65rem;
}
.landing-footer__links a {
    color: var(--color-text-body);
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.2s;
}
.landing-footer__links a:hover {
    color: var(--color-brand);
}
.landing-footer__contact {
    list-style: none;
    padding: 0;
    margin: 0;
}
.landing-footer__contact li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    margin-bottom: 1rem;
    font-size: 0.92rem;
    line-height: 1.55;
}
.landing-footer__contact i {
    color: var(--color-brand);
    flex-shrink: 0;
    margin-top: 0.1rem;
}
.landing-footer__contact a {
    color: var(--color-text-body);
    text-decoration: none;
    transition: color 0.2s;
}
.landing-footer__contact a:hover {
    color: var(--color-brand);
}
.landing-footer__contact span {
    color: var(--color-text-body);
}
.landing-footer__social {
    display: flex;
    flex-wrap: wrap;
    gap: 0.65rem;
}
.landing-footer__social-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    border-radius: 8px;
    background: #fff;
    color: var(--color-brand);
    border: 1px solid var(--color-border-light);
    text-decoration: none;
    transition: background-color 0.2s, color 0.2s, border-color 0.2s;
}
.landing-footer__social-link:hover {
    background: var(--color-brand);
    color: #fff;
}
.landing-footer__social-link svg {
    width: 16px;
    height: 16px;
    fill: currentColor;
}
.landing-footer__bar {
    padding: 1.15rem 0;
    background: var(--color-brand);
    border-top: none;
}
.landing-footer__copyright {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.92);
}
.landing-footer__copyright strong {
    color: #fff;
    font-weight: 700;
}
.landing-footer__copyright-link {
    color: inherit;
    text-decoration: none;
}
.landing-footer__copyright-link:hover {
    color: var(--color-accent);
    text-decoration: underline;
}
.landing-scroll-top {
    position: fixed;
    right: 1.5rem;
    bottom: 1.5rem;
    z-index: 100;
    width: 44px;
    height: 44px;
    border: none;
    border-radius: 50%;
    background: var(--color-brand);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 4px 16px rgba(39, 174, 96, 0.45);
    opacity: 0;
    visibility: hidden;
    transform: translateY(12px);
    transition: opacity 0.25s, visibility 0.25s, transform 0.25s, background-color 0.2s;
}
.landing-scroll-top.is-visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}
.landing-scroll-top:hover {
    background: var(--color-brand-hover);
}

@media (max-width: 991px) {
    .blog-section {
        padding: 4rem 0;
    }
    .blog-section__header {
        margin-bottom: 2.5rem;
    }
    .landing-footer__main {
        padding: 3.5rem 0 2.5rem;
    }
}
@media (max-width: 575px) {
    .blog-section {
        padding: 3rem 0;
    }
    .blog-card__body {
        padding: 1.15rem 1.25rem 1.25rem;
    }
    .landing-scroll-top {
        right: 1rem;
        bottom: 1rem;
        width: 40px;
        height: 40px;
    }
}

/* Project invest action (top of details — landing + admin) */
.project-invest-action {
    width: 100%;
}
.project-invest-action__wallet {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #eff6ff;
    border-radius: 10px;
    padding: 0.85rem 1.15rem;
    margin-bottom: 1.25rem;
    font-weight: 600;
}
.project-invest-action__wallet-label {
    color: var(--color-heading, #1e4620);
    font-weight: 700;
}
.project-invest-action__wallet-value {
    color: var(--color-heading, #1e4620);
    font-weight: 800;
}
.project-invest-action__summary {
    display: flex;
    justify-content: space-between;
    gap: 1.5rem;
    background: #eff6ff;
    border: 1px solid rgba(39, 174, 96, 0.28);
    border-radius: 12px;
    padding: 1.15rem 1.35rem;
    margin-bottom: 1.35rem;
}
.project-invest-action__summary-label {
    display: block;
    font-size: 0.8rem;
    color: var(--color-text-label, #9aa89e);
    font-weight: 700;
    margin-bottom: 0.35rem;
}
.project-invest-action__summary-value {
    display: block;
    color: var(--color-heading, #1e4620);
    font-size: clamp(1.35rem, 2.5vw, 1.75rem);
    font-weight: 800;
    line-height: 1.2;
}
.project-invest-action__summary-item--end {
    text-align: right;
}
.project-invest-action__field-label {
    display: block;
    font-weight: 700;
    font-size: 0.9rem;
    color: var(--color-text-body, #5c6b5f);
    margin-bottom: 0.5rem;
}
.project-invest-action__qty,
.project-invest-action__amount-group {
    --invest-field-height: 42px;
    height: var(--invest-field-height);
    min-height: var(--invest-field-height);
}
.project-invest-action__qty {
    display: flex;
    align-items: stretch;
    border: 1px solid var(--color-border-light, #dce3dd);
    border-radius: 8px;
    overflow: hidden;
    background: #fff;
}
.project-invest-action__qty button {
    width: 2.75rem;
    height: 100%;
    border: none;
    background: #f3f7f4;
    color: var(--color-brand, #27ae60);
    font-weight: 700;
    font-size: 1.15rem;
    line-height: 1;
    padding: 0;
}
.project-invest-action__qty button:hover {
    background: #e8f5eb;
}
.project-invest-action__qty input {
    flex: 1;
    min-width: 0;
    height: 100%;
    text-align: center;
    border: none;
    font-weight: 700;
    font-size: 1rem;
    background: #fff;
    padding: 0 0.5rem;
}
.project-invest-action__amount-group {
    flex-wrap: nowrap;
}
.project-invest-action__amount-group .input-group-text,
.project-invest-action__amount-group .form-control {
    height: var(--invest-field-height);
    min-height: var(--invest-field-height);
    padding-top: 0;
    padding-bottom: 0;
    display: flex;
    align-items: center;
}
.project-invest-action__amount-group .input-group-text {
    font-weight: 700;
    background: #f3f7f4;
    border-color: var(--color-border-light, #dce3dd);
}
.project-invest-action__amount-group .form-control {
    border-color: var(--color-border-light, #dce3dd);
    font-weight: 600;
}
.project-invest-action__submit {
    margin-top: 0.25rem;
}
.project-invest-action--admin .project-invest-action__wallet {
    background: var(--bs-success-bg-subtle, #eff6ff);
}
.landing-project-detail-card {
    background: var(--color-surface);
    border: 1px solid var(--color-border-light);
    border-radius: 16px;
    padding: 1.75rem;
    box-shadow: 0 8px 28px rgba(30, 70, 32, 0.08);
}
.project-invest-meta {
    margin: 1.5rem 0 0;
    padding: 1.5rem;
    background: #f9fbf9;
    border: 1px solid var(--color-border-light);
    border-radius: 12px;
}
.project-invest-meta__title {
    font-size: 1.15rem;
    font-weight: 800;
    color: var(--color-heading);
    margin-bottom: 1.25rem;
}
.project-invest-meta__label {
    display: block;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--color-text-label);
    margin-bottom: 0.25rem;
}
.project-invest-meta__value {
    display: block;
    font-weight: 700;
    color: var(--color-heading);
}
.project-invest-meta__availability {
    margin-top: 1.25rem;
    padding-top: 1.25rem;
    border-top: 1px dashed var(--color-border-light);
}
.project-invest-meta--admin {
    background: var(--bs-light, #f9f9f9);
}
.project-invest-meta--sidebar {
    margin: 0;
    padding: 0;
    border: none;
    background: transparent;
}
.project-invest-meta--sidebar .project-invest-meta__title {
    font-size: 1.25rem;
    font-weight: 800;
    color: var(--color-heading);
    margin: 1.5rem 0 1.25rem;
    padding-top: 1.5rem;
    border-top: 1px dashed var(--color-border-light);
}
.project-invest-action + .project-invest-meta--sidebar .project-invest-meta__title {
    margin-top: 1.5rem;
}
.project-invest-meta__row {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    padding: 0.65rem 0;
    border-bottom: 1px dashed var(--color-border-light);
    font-size: 0.95rem;
}
.project-invest-meta__row span {
    color: var(--color-text-label);
    font-weight: 600;
}
.project-invest-meta--sidebar .project-invest-meta__availability {
    margin-top: 1.25rem;
    padding-top: 0;
    border-top: none;
}
.landing-project-invest .project-invest-action {
    margin-bottom: 0;
}

/* Landing project detail */
.landing-project-show-page .landing-project-detail {
    background: var(--color-surface);
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid var(--color-border-light);
    box-shadow: 0 8px 28px rgba(30, 70, 32, 0.08);
}
.landing-project-detail__image-wrap {
    position: relative;
    width: 100%;
    aspect-ratio: 1 / 1;
    overflow: hidden;
    background: var(--color-surface-muted);
}
.landing-project-detail__image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.landing-project-detail__image-placeholder {
    width: 100%;
    height: 100%;
    min-height: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--color-accent-soft);
}
.landing-project-detail__badges {
    position: absolute;
    top: 1rem;
    left: 1rem;
    right: 1rem;
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    justify-content: space-between;
}
.landing-project-detail__body {
    padding: 2rem 2.25rem 2.5rem;
}
.landing-project-detail__title {
    color: var(--color-heading);
    font-weight: 800;
    font-size: clamp(1.75rem, 3vw, 2.35rem);
    margin-bottom: 0.75rem;
}
.landing-project-detail__summary {
    color: var(--color-text-body);
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
}
.landing-project-invest-card {
    position: sticky;
    top: 5.5rem;
}
.landing-project-invest {
    background: var(--color-surface);
    border: 1px solid var(--color-border-light);
    border-radius: 16px;
    padding: 1.75rem;
    box-shadow: 0 8px 28px rgba(30, 70, 32, 0.08);
}
.landing-project-invest__title {
    font-size: 1.25rem;
    font-weight: 800;
    color: var(--color-heading);
    margin-bottom: 1.25rem;
}
.landing-project-invest__row {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    padding: 0.65rem 0;
    border-bottom: 1px dashed var(--color-border-light);
    font-size: 0.95rem;
}
.landing-project-invest__row span {
    color: var(--color-text-label);
    font-weight: 600;
}
.landing-project-invest__availability {
    margin: 1.25rem 0;
}
.landing-project-invest__wallet {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #eff6ff;
    border-radius: 10px;
    padding: 0.85rem 1rem;
    margin-bottom: 1.25rem;
    font-weight: 600;
}
.landing-project-invest__summary-box {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    background: #eff6ff;
    border: 1px solid rgba(39, 174, 96, 0.25);
    border-radius: 12px;
    padding: 1rem 1.15rem;
    margin-bottom: 1.25rem;
}
.landing-project-invest__summary-box .label {
    display: block;
    font-size: 0.75rem;
    color: var(--color-text-label);
    font-weight: 700;
    margin-bottom: 0.25rem;
}
.landing-project-invest__qty {
    display: flex;
    align-items: center;
    border: 1px solid var(--color-border-light);
    border-radius: 8px;
    overflow: hidden;
}
.landing-project-invest__qty button {
    width: 2.5rem;
    height: 2.5rem;
    border: none;
    background: #eef5ef;
    color: var(--color-brand);
    font-weight: 700;
    font-size: 1.1rem;
}
.landing-project-invest__qty input {
    flex: 1;
    text-align: center;
    border: none;
    font-weight: 700;
    min-width: 0;
}
@media (max-width: 991px) {
    .landing-project-invest-card {
        position: static;
    }
}

/* Other landing sections */
.landing-page .landing-section .text-uppercase.ls-2 {
    font-size: 1rem;
    letter-spacing: 0.12em;
}
.landing-page .landing-section h2.display-5 {
    font-size: clamp(2rem, 4vw, 2.85rem) !important;
}
.landing-page .landing-section .fs-4 {
    font-size: 1.35rem !important;
}
.landing-page .landing-section .fs-6 {
    font-size: 1.05rem !important;
}
.landing-page .landing-section h3.fs-3 {
    font-size: 1.5rem !important;
}
.landing-page .landing-section h4.fw-bolder {
    font-size: 1.25rem;
}
.landing-page .landing-section .fs-7 {
    font-size: 0.9rem !important;
}
.landing-page .landing-section .fs-6.fw-bolder {
    font-size: 1.1rem !important;
}

@media (max-width: 991px) {
    .landing-page .landing-section .text-uppercase.ls-2 {
        font-size: 0.95rem;
    }
    .landing-page .landing-section h2.display-5 {
        font-size: clamp(1.9rem, 6vw, 2.5rem) !important;
    }
    .landing-page .landing-section .fs-4 {
        font-size: clamp(1.15rem, 4vw, 1.3rem) !important;
    }
    .landing-page .landing-section .fs-6 {
        font-size: 1.05rem !important;
    }
    .landing-page .landing-section h3.fs-3 {
        font-size: clamp(1.35rem, 4.5vw, 1.5rem) !important;
    }
    .landing-page .landing-section h4.fw-bolder {
        font-size: clamp(1.15rem, 3.5vw, 1.25rem);
    }
    .landing-page .landing-section .fs-7 {
        font-size: 0.95rem !important;
    }
    .landing-page .landing-section .fs-6.fw-bolder {
        font-size: 1.05rem !important;
    }
    .landing-page .btn-green {
        font-size: 1.05rem;
        padding: 0.75rem 1rem;
    }
}

@media (max-width: 575px) {
    body.landing-page { padding-top: 60px; }

    .hero-section.banner-section { padding: 3.25rem 0 2.5rem; }
    .hero-section__title { font-size: 2.35rem; }
    .hero-section__subtitle { font-size: 1.2rem; }
    .hero-stat__value { font-size: 2.25rem; }
    .hero-stat__label { font-size: 0.8rem; }

    .why-choose-section { padding: 3rem 0; }
    .why-choose-section__title { font-size: 2.15rem; }
    .why-choose-section__text { font-size: 1.15rem; }
    .why-choose-section__features li { font-size: 1.08rem; }
    .section-eyebrow { font-size: 0.85rem; }

    .landing-page .landing-section h2.display-5 {
        font-size: 2rem !important;
    }
    .landing-page .landing-section h3.fs-3 {
        font-size: 1.4rem !important;
    }

    .landing-page .accordion-header h3.fs-4 {
        font-size: 1.15rem !important;
    }
}

/* Modals */
.modal-content { border-radius: 16px; border: none; }
.modal-header { border-bottom: none; padding: 30px 30px 10px; }
.modal-body { padding: 10px 30px 30px; }
.form-control-solid { background-color: #f5f8fa; border-color: #f5f8fa; color: #5e6278; }
