/* -----------------------------------------------------------------------------
   Company Section — About, Connect, Careers, Partnership page styles
----------------------------------------------------------------------------- */

/* =============================================================================
   SHARED PILL / EYEBROW
============================================================================= */

.cnt-pill {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    background: rgba(123, 185, 62, 0.08);
    color: var(--primary-green);
    border: 1px solid rgba(123, 185, 62, 0.28);
    border-radius: 20px;
    padding: 0.28rem 0.9rem;
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

/* =============================================================================
   ABOUT HERO — Dark hero with glass stats card (/about)
============================================================================= */

.ab-hero {
    background: linear-gradient(135deg, #1a2e10 0%, #14161A 50%, #0e1012 100%);
    padding: 6rem 0 5rem;
    position: relative;
    overflow: hidden;
}
.ab-hero::before {
    content: '';
    position: absolute;
    top: -30%;
    right: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(123,185,62,0.12) 0%, transparent 65%);
    pointer-events: none;
}
.ab-hero::after {
    content: '';
    position: absolute;
    bottom: -20%;
    left: -5%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(123,185,62,0.07) 0%, transparent 65%);
    pointer-events: none;
}

.ab-hero .button {
    padding: 0.9rem 2rem;
    border-radius: var(--radius-small);
}

.ab-hero-label {
    display: inline-block;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--primary-green);
    border-left: 4px solid var(--primary-green);
    padding-left: 15px;
    margin-bottom: 1.25rem;
}

.ab-hero-title {
    font-size: clamp(1.6rem, 2.6vw, 2.5rem) !important;
    font-weight: 400 !important;
    color: #ffffff !important;
    line-height: 1.15 !important;
    letter-spacing: -0.01em;
    margin-bottom: 1.25rem !important;
}
.ab-hero-title span { color: var(--primary-green); }

.ab-hero-subtitle {
    font-size: 1.05rem;
    font-weight: 300;
    color: rgba(255,255,255,0.65);
    line-height: 1.8;
    margin-bottom: 2rem;
    max-width: 520px;
}

/* Glass card */
.ab-hero-glass {
    background: rgba(255,255,255,0.05);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 20px;
    padding: 2.5rem;
    position: relative;
    overflow: hidden;
}
.ab-hero-glass::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(123,185,62,0.08) 0%, transparent 60%);
    pointer-events: none;
}

.ab-hero-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.25rem;
    position: relative;
}

.ab-hero-stat {
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 12px;
    padding: 1.25rem;
    transition: background 0.25s ease, border-color 0.25s ease;
}
.ab-hero-stat:hover {
    background: rgba(123,185,62,0.08);
    border-color: rgba(123,185,62,0.3);
}

.ab-hero-stat-icon {
    width: 40px;
    height: 40px;
    background: rgba(123,185,62,0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    color: var(--primary-green);
    margin-bottom: 0.85rem;
    transition: background 0.25s ease;
}
.ab-hero-stat:hover .ab-hero-stat-icon {
    background: rgba(123,185,62,0.25);
}

.ab-hero-stat-title {
    font-size: 0.95rem;
    font-weight: 500;
    color: #ffffff;
    margin-bottom: 0.3rem;
    line-height: 1.2;
}

.ab-hero-stat-desc {
    font-size: 0.78rem;
    color: rgba(255,255,255,0.5);
    line-height: 1.5;
    margin: 0;
}

@media screen and (max-width: 1023px) {
    .ab-hero { padding: 4rem 0; }
    .ab-hero-glass { margin-top: 3rem; }
}
@media screen and (max-width: 768px) {
    .ab-hero { padding: 3rem 0 2.5rem; }
    .ab-hero-subtitle { max-width: 100%; text-align: center; }
    /* Hero mobile centering */
    .ab-hero .column:first-child { text-align: center; }
    .ab-hero .buttons { justify-content: center; }
}

/* =============================================================================
   ABOUT HUB — Navigation cards and quick fact cards (/about)
============================================================================= */

.about-nav-card {
    background: white;
    border-radius: var(--radius-small);
    padding: 2rem;
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
    border: 1px solid var(--border-color);
    position: relative;
}
.about-nav-card:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-5px);
    border-color: var(--primary-green);
}

.about-nav-card-highlight {
    border: 2px solid var(--primary-green);
    background: linear-gradient(to bottom, white 0%, var(--lighter-green) 100%);
}
.about-nav-card-highlight:hover {
    border-color: var(--primary-green-dark);
}

.about-nav-card-badge {
    position: absolute;
    top: -12px;
    right: 20px;
    background: var(--primary-green);
    color: white;
    padding: 0.4rem 1rem;
    border-radius: 20px;
    font-size: 0.7rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 2px 8px rgba(123, 185, 62, 0.4);
}

.about-nav-card-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.25rem;
}

.about-nav-icon {
    flex-shrink: 0;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-green) 0%, var(--primary-green-dark) 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: white;
    box-shadow: 0 4px 12px rgba(123, 185, 62, 0.3);
    transition: all 0.3s ease;
}
.about-nav-card:hover .about-nav-icon {
    transform: scale(1.1);
    box-shadow: 0 6px 16px rgba(123, 185, 62, 0.4);
}

.about-nav-features {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    flex: 1;
}

.about-feature-tag {
    display: inline-flex;
    align-items: center;
    background: var(--neutral-50);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    padding: 0.4rem 0.9rem;
    font-size: 0.8rem;
    color: var(--text-secondary);
    transition: all 0.3s ease;
}
.about-feature-tag i {
    color: var(--primary-green);
    font-size: 0.7rem;
}
.about-nav-card:hover .about-feature-tag {
    background: white;
    border-color: var(--primary-green);
}

@media screen and (max-width: 1024px) {
    .about-nav-card { padding: 1.75rem; }
    .about-nav-icon { width: 55px; height: 55px; font-size: 1.35rem; }
}
@media screen and (max-width: 768px) {
    .about-nav-card { padding: 1.5rem; margin-bottom: 2rem; }
    .about-nav-card-header { flex-direction: column; align-items: flex-start; gap: 0.75rem; }
    .about-nav-icon { width: 50px; height: 50px; font-size: 1.25rem; }
    .about-feature-tag { font-size: 0.75rem; padding: 0.35rem 0.75rem; }
    .quick-fact-icon { width: 60px; height: 60px; font-size: 1.5rem; }
    .partner-cta-box { padding: 1.75rem !important; }
    .partner-cta-box .column.is-4 { text-align: center; }
    .partner-cta-box .button { width: 100%; justify-content: center; }
}
@media screen and (max-width: 480px) {
    .about-nav-card { padding: 1.25rem; }
    .about-feature-tag { font-size: 0.7rem; padding: 0.3rem 0.65rem; }
}

/* =============================================================================
   CAREERS HERO — Centered layout with perk strip (/careers)
============================================================================= */

.cr-hero-body {
    text-align: center;
    max-width: 1400px;
    margin: 0 auto;
}

.cr-perks-strip {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-top: 1px solid var(--border-color);
    padding-top: 2rem;
    gap: 0;
}

.cr-perk-item {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    padding: 0 2rem;
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--navbar-bg);
    white-space: nowrap;
}
.cr-perk-item i {
    color: var(--primary-green);
    font-size: 1rem;
}

.cr-perk-divider {
    width: 1px;
    height: 24px;
    background: var(--border-color);
    flex-shrink: 0;
}

@media screen and (max-width: 768px) {
    .cr-hero-body { text-align: center; }
    .cr-perks-strip {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 0.9rem;
        padding-top: 1.5rem;
        border-top: 1px solid var(--border-color);
    }
    .cr-perk-item { padding: 0; }
    .cr-perk-divider { display: none; }
    .cr-open-box .button { width: 100%; justify-content: center; }
}

/* =============================================================================
   CONNECT HERO — Expertise cards in hero right column (/connect)
============================================================================= */

.cn-expertise-panel {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.cn-expertise-card {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    background: white;
    border: 1px solid var(--border-color);
    border-radius: var(--radius-small);
    padding: 1.5rem 1.75rem;
    box-shadow: var(--shadow-sm);
    transition: box-shadow 0.3s ease, border-color 0.3s ease, transform 0.3s ease;
}
.cn-expertise-card:hover {
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-green);
    transform: translateX(6px);
}

.cn-expertise-icon {
    flex-shrink: 0;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-green) 0%, var(--primary-green-dark) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    color: white;
    box-shadow: 0 4px 12px rgba(123, 185, 62, 0.3);
    transition: transform 0.3s ease;
}
.cn-expertise-card:hover .cn-expertise-icon {
    transform: scale(1.1);
}

.cn-expertise-body { flex: 1; }

.cn-expertise-title {
    font-size: 1rem;
    font-weight: 500;
    color: var(--navbar-bg);
    margin: 0 0 0.3rem;
}

.cn-expertise-desc {
    font-size: 0.85rem;
    color: var(--text-secondary);
    line-height: 1.55;
    margin: 0;
}

/* =============================================================================
   CONNECT HUB — Connection path cards and feature cards (/connect)
============================================================================= */

.connect-card {
    background: white;
    border-radius: var(--radius-small);
    padding: 2.5rem 2rem;
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
    border: 1px solid var(--border-color);
    position: relative;
}
.connect-card:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-5px);
    border-color: var(--primary-green);
}

.connect-card-highlight {
    border: 2px solid var(--primary-green);
    background: linear-gradient(to bottom, white 0%, var(--lighter-green) 100%);
}
.connect-card-highlight:hover {
    border-color: var(--primary-green-dark);
}

.connect-card-badge {
    position: absolute;
    top: -12px;
    right: 20px;
    background: var(--primary-green);
    color: white;
    padding: 0.4rem 1rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 2px 8px rgba(123, 185, 62, 0.4);
}

.connect-card-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    background: var(--primary-green);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: white;
    box-shadow: 0 4px 12px rgba(123, 185, 62, 0.3);
    transition: all 0.3s ease;
}
.connect-card:hover .connect-card-icon {
    transform: scale(1.1);
    box-shadow: 0 6px 16px rgba(123, 185, 62, 0.4);
}

.connect-card-benefits {
    background: var(--neutral-50);
    border-radius: var(--radius-small);
    padding: 1.25rem;
    border: 1px solid var(--primary-green);
}

.connect-benefits-list {
    list-style: none;
    padding: 0;
    margin: 0;
}
.connect-benefits-list li {
    color: var(--text-secondary);
    font-size: 0.875rem;
    line-height: 1.8;
    display: flex;
    align-items: flex-start;
    margin-bottom: 0.5rem;
}
.connect-benefits-list li:last-child { margin-bottom: 0; }
.connect-benefits-list li i {
    color: var(--primary-green);
    font-size: 0.7rem;
    margin-top: 0.35rem;
    flex-shrink: 0;
}

.feature-card {
    padding: 2rem 1.5rem;
    transition: all 0.3s ease;
}
.feature-card:hover { transform: translateY(-3px); }

.feature-icon-wrapper {
    width: 70px;
    height: 70px;
    margin: 0 auto 1.25rem;
    background: var(--light-green);
    border: 1px solid rgba(123,185,62,0.25);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
    color: var(--primary-green);
    transition: all 0.3s ease;
}
.feature-card:hover .feature-icon-wrapper {
    background: var(--primary-green);
    border-color: var(--primary-green);
    color: white;
    transform: scale(1.1);
}

@media screen and (max-width: 768px) {
    .connect-card { padding: 2rem 1.5rem; margin-bottom: 2rem; }
    .connect-card-icon { width: 70px; height: 70px; font-size: 1.75rem; }
    .feature-icon-wrapper { width: 60px; height: 60px; font-size: 1.5rem; }
}
@media screen and (max-width: 480px) {
    .connect-card { padding: 1.5rem 1rem; }
    .connect-benefits-list li { font-size: 0.8rem; }
}

/* =============================================================================
   CAREERS — Job listing cards (/careers)
============================================================================= */

.job-card {
    transition: all 0.3s ease;
    border-left: 3px solid transparent;
}
.job-card:hover {
    border-left-color: var(--primary-green);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
}

.job-header {
    padding: 0.5rem 0;
    transition: background-color 0.2s ease;
    border-radius: var(--radius-small);
}

.job-toggle-btn {
    transition: transform 0.3s ease;
}

.job-details {
    animation: slideDown 0.3s ease-out;
}

@keyframes slideDown {
    from { opacity: 0; max-height: 0; }
    to   { opacity: 1; max-height: 2000px; }
}

.job-details .content {
    padding-top: 1rem;
}

/* =============================================================================
   PARTNERSHIP — Partner cards, benefit cards, carousel (/partnership)
============================================================================= */

/* --- Partner Cards (detailed view) --- */
.partner-card-corporate {
    background: white;
    border-radius: var(--radius-small);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
    border: 1px solid var(--border-color);
}
.partner-card-corporate:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-2px);
    border-color: var(--neutral-300);
}

.partner-card-logo-section {
    background: var(--navbar-bg);
    padding: 1.5rem;
    border-bottom: 1px solid var(--border-color);
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 140px;
    height: 140px;
}

.partner-logo {
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: 100%;
    object-fit: contain;
    filter: grayscale(20%);
    opacity: 0.95;
    transition: all 0.3s ease;
}
.partner-card-corporate:hover .partner-logo {
    filter: grayscale(0%);
    opacity: 1;
}

.partner-card-body {
    padding: 1.5rem;
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.partner-header-info {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    padding-bottom: 0.75rem;
    border-bottom: 1px solid var(--neutral-200);
}

.partner-company-name {
    font-size: 1.1rem;
    font-weight: 500;
    color: var(--navbar-bg);
    margin: 0;
    line-height: 1.3;
}

.partner-category {
    font-size: 0.75rem;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--neutral-500);
    display: inline-block;
}

.partner-description-text {
    color: var(--text-secondary);
    line-height: 1.6;
    flex: 1;
    font-size: 0.875rem;
}

/* --- Benefit Cards --- */
.benefit-card {
    padding: 2rem 1rem;
}

.benefit-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    background: linear-gradient(135deg, var(--primary-green) 0%, var(--primary-green-dark) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: white;
    box-shadow: 0 4px 12px rgba(123, 185, 62, 0.3);
}

/* --- Carousel --- */
.carousel-container {
    position: relative;
    max-width: 100%;
    margin: 0 auto;
    padding: 0 60px;
}

.carousel-track {
    display: flex;
    gap: 1.5rem;
    overflow-x: auto;
    scroll-behavior: smooth;
    scrollbar-width: none;
    -ms-overflow-style: none;
    padding: 1rem 0;
}
.carousel-track::-webkit-scrollbar { display: none; }

.carousel-item {
    flex: 0 0 auto;
    width: 300px;
    scroll-snap-align: start;
}

.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: white;
    border: 2px solid var(--primary-green);
    border-radius: 50%;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}
.carousel-btn:hover:not(:disabled) {
    background: var(--primary-green);
    color: white;
    transform: translateY(-50%) scale(1.1);
}
.carousel-btn:active:not(:disabled) { transform: translateY(-50%) scale(0.95); }
.carousel-btn:disabled {
    opacity: 0.3;
    cursor: not-allowed;
    border-color: var(--neutral-300);
}
.carousel-btn-prev { left: 0; }
.carousel-btn-next { right: 0; }
.carousel-btn i {
    font-size: 1.2rem;
    color: var(--primary-green);
    transition: color 0.3s ease;
}
.carousel-btn:hover:not(:disabled) i { color: white; }

.carousel-item .card { height: 100%; transition: all 0.3s ease; }
.carousel-item .card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

.carousel-item .card-content { padding: 1.5rem; }
.carousel-item .card-content .title {
    color: var(--navbar-bg);
    margin-bottom: 0.5rem;
}
.carousel-item .card-content .partner-category {
    display: inline-block;
    font-size: 0.7rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--primary-green);
    margin-bottom: 0.75rem;
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50%       { opacity: 0.5; }
}
.carousel-container::after {
    content: '';
    position: absolute;
    bottom: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 3px;
    background: var(--primary-green);
    border-radius: 2px;
    animation: pulse 2s infinite;
}

@media screen and (max-width: 768px) {
    .carousel-item { width: 250px; }
    .carousel-container { padding: 0 50px; }
}
@media screen and (max-width: 480px) {
    .carousel-item { width: 200px; }
    .carousel-container { padding: 0 40px; }
}

/* =============================================================================
   MOBILE: Center text in split (text + image) column layouts
============================================================================= */
@media screen and (max-width: 768px) {
    .section .columns.is-vcentered > .column {
        text-align: center;
    }
    .section .columns.is-vcentered > .column .buttons {
        justify-content: center !important;
    }
}

/* =============================================================================
   CONTACT US HERO — Direct contact links + dark quick-access panel
============================================================================= */

/* Large clickable contact links on the left */
.cu-hero-contacts {
    display: flex;
    flex-direction: column;
    gap: 0.85rem;
}

.cu-hero-contact {
    display: flex;
    align-items: center;
    gap: 1.1rem;
    text-decoration: none;
    color: inherit;
    transition: transform 0.2s ease;
}
.cu-hero-contact:hover { transform: translateX(4px); }

.cu-hero-contact-icon {
    flex-shrink: 0;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--light-green);
    border: 1px solid rgba(123,185,62,0.25);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-green);
    font-size: 1rem;
    transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}
.cu-hero-contact:hover .cu-hero-contact-icon {
    background: var(--primary-green);
    border-color: var(--primary-green);
    color: white;
}

.cu-hero-contact-body {
    display: flex;
    flex-direction: column;
}
.cu-hero-contact-label {
    font-size: 0.72rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--primary-green);
}
.cu-hero-contact-value {
    font-size: 1rem;
    font-weight: 500;
    color: var(--navbar-bg);
}

/* Trust stats panel on the right */
.cu-hero-trust {
    display: flex;
    flex-direction: column;
    gap: 0;
    border: 1px solid var(--border-color);
    border-radius: var(--radius-small);
    background: white;
    box-shadow: var(--shadow-sm);
    overflow: hidden;
}

.cu-hero-trust-stat {
    display: flex;
    flex-direction: column;
    padding: 1.75rem 2rem;
}

.cu-hero-trust-value {
    font-size: 3rem;
    font-weight: 500;
    color: var(--navbar-bg);
    line-height: 1;
    margin-bottom: 0.4rem;
}
.cu-hero-trust-sup {
    font-size: 1.5rem;
    font-weight: 500;
    color: var(--primary-green);
    vertical-align: super;
}

.cu-hero-trust-label {
    font-size: 0.8rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--primary-green);
    margin-bottom: 0.35rem;
}

.cu-hero-trust-desc {
    font-size: 0.83rem;
    color: var(--text-secondary);
    line-height: 1.55;
}

.cu-hero-trust-divider {
    height: 1px;
    background: var(--border-color);
    margin: 0;
}

/* =============================================================================
   CONTACT US PAGE — Inquiry rows + commitment strip
============================================================================= */

/* Direct contact links below intro text */
.cu-direct-contacts {
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
}

.cu-direct-contact {
    display: inline-flex;
    align-items: center;
    gap: 0.65rem;
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--navbar-bg);
    text-decoration: none;
    transition: color 0.2s ease;
}

.cu-direct-contact i {
    color: var(--primary-green);
    font-size: 0.85rem;
    width: 16px;
}

.cu-direct-contact:hover {
    color: var(--primary-green);
}

/* Inquiry type rows */
.cu-inquiry-rows {
    display: flex;
    flex-direction: column;
}

.cu-inquiry-row {
    display: flex;
    align-items: center;
    gap: 1.25rem;
    padding: 1.5rem 0;
    border-bottom: 1px solid var(--border-color);
}

.cu-inquiry-row:first-child {
    border-top: 1px solid var(--border-color);
}

.cu-inquiry-icon {
    flex-shrink: 0;
    width: 46px;
    height: 46px;
    background: var(--light-green);
    border: 1px solid rgba(123,185,62,0.25);
    border-radius: var(--radius-small);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-green);
    font-size: 1.1rem;
}

.cu-inquiry-body {
    flex: 1;
}

.cu-inquiry-body strong {
    display: block;
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--navbar-bg);
    margin-bottom: 0.25rem;
}

.cu-inquiry-body p {
    font-size: 0.82rem;
    color: var(--text-secondary);
    line-height: 1.6;
    margin: 0;
}

.cu-inquiry-link {
    flex-shrink: 0;
    width: 36px;
    height: 36px;
    background: var(--light-green);
    border: 1px solid rgba(123,185,62,0.25);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-green);
    font-size: 0.8rem;
    transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.cu-inquiry-link:hover {
    background: var(--primary-green);
    border-color: var(--primary-green);
    color: #ffffff;
}

/* Commitment strip */
.cu-commitment-strip {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem 0;
    gap: 0;
}

.cu-commitment-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex: 1;
    padding: 0 2rem;
}

.cu-commitment-item > i {
    font-size: 1.4rem;
    color: var(--primary-green);
    flex-shrink: 0;
}

.cu-commitment-item strong {
    display: block;
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--navbar-bg);
    margin-bottom: 0.2rem;
}

.cu-commitment-item span {
    display: block;
    font-size: 0.78rem;
    color: var(--text-secondary);
    line-height: 1.4;
}

.cu-commitment-divider {
    width: 1px;
    height: 48px;
    background: var(--border-color);
    flex-shrink: 0;
}

/* Responsive */
@media screen and (max-width: 1023px) {
    .cu-commitment-strip {
        flex-wrap: wrap;
        gap: 1.5rem;
        padding: 2rem 1.5rem;
    }

    .cu-commitment-item {
        flex: 0 0 calc(50% - 1.5rem);
        padding: 0;
    }

    .cu-commitment-divider {
        display: none;
    }
}

@media screen and (max-width: 768px) {
    .cu-commitment-item {
        flex: 0 0 100%;
    }
    .cu-direct-contacts { align-items: center; }
}

/* ─── tag.is-light override (about-about-us, partnership pages) ─── */
.box .tags .tag.is-light,
.box .tag.is-light {
    background: rgba(123,185,62,0.1) !important;
    color: var(--primary-green) !important;
    border: 1px solid rgba(123,185,62,0.28) !important;
    border-radius: 100px !important;
}

/* =============================================================================
   PARTNERSHIP — Partners Showcase (dark section, horizontal cards)
============================================================================= */

.ps-section {
    background: var(--navbar-bg);
    padding: 5rem 0;
    position: relative;
    overflow: hidden;
}
.ps-section::before {
    content: '';
    position: absolute;
    top: -20%;
    right: -5%;
    width: 560px;
    height: 560px;
    background: radial-gradient(circle, rgba(123,185,62,0.08) 0%, transparent 65%);
    pointer-events: none;
}
.ps-section::after {
    content: '';
    position: absolute;
    bottom: -20%;
    left: -5%;
    width: 420px;
    height: 420px;
    background: radial-gradient(circle, rgba(123,185,62,0.05) 0%, transparent 65%);
    pointer-events: none;
}

.ps-header {
    margin-bottom: 3.5rem;
    position: relative;
}
.ps-header h2 {
    font-size: clamp(1.6rem, 2.4vw, 2.25rem);
    font-weight: 400;
    color: #ffffff;
    margin: 0.75rem 0 1rem;
    letter-spacing: -0.01em;
}
.ps-header h2 span { color: var(--primary-green); }
.ps-header p {
    font-size: 0.95rem;
    color: rgba(255,255,255,0.45);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.7;
}

.ps-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1px;
    border: 1px solid rgba(255,255,255,0.07);
    border-radius: var(--radius-small);
    overflow: hidden;
}

.ps-card {
    display: flex;
    flex-direction: row;
    background: rgba(255,255,255,0.03);
    transition: background 0.3s ease;
    border-right: 1px solid rgba(255,255,255,0.07);
    border-bottom: 1px solid rgba(255,255,255,0.07);
}
.ps-card:hover {
    background: rgba(123,185,62,0.05);
}

.ps-card-logo {
    flex-shrink: 0;
    width: 190px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem 1.5rem;
    background: rgba(0,0,0,0.2);
    border-right: 1px solid rgba(255,255,255,0.06);
}
.ps-card-logo img {
    max-width: 130px;
    max-height: 70px;
    width: auto;
    height: auto;
    object-fit: contain;
    opacity: 0.85;
    transition: opacity 0.3s ease;
}
.ps-card:hover .ps-card-logo img {
    opacity: 1;
}

.ps-card-body {
    flex: 1;
    padding: 1.5rem 1.75rem;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    min-width: 0;
}

.ps-card-head {
    display: flex;
    flex-direction: column;
    gap: 0.55rem;
    padding-bottom: 0.75rem;
    border-bottom: 1px solid rgba(255,255,255,0.07);
}

.ps-card-name {
    font-size: 0.9rem;
    font-weight: 500;
    color: #ffffff;
    line-height: 1.35;
    margin: 0;
}

.ps-card-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.35rem;
}

.ps-tag {
    display: inline-block;
    font-size: 0.66rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.07em;
    padding: 0.18rem 0.6rem;
    border-radius: 100px;
    border: 1px solid rgba(123,185,62,0.45);
    color: var(--primary-green);
    background: rgba(123,185,62,0.08);
    line-height: 1.6;
}
.ps-tag--neutral {
    border-color: rgba(255,255,255,0.18);
    color: rgba(255,255,255,0.45);
    background: transparent;
}

.ps-card-desc {
    font-size: 0.81rem;
    color: rgba(255,255,255,0.45);
    line-height: 1.7;
    margin: 0;
    flex: 1;
}

.ps-card-link {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    font-size: 0.75rem;
    font-weight: 500;
    color: var(--primary-green);
    text-decoration: none;
    letter-spacing: 0.03em;
    transition: gap 0.2s ease, opacity 0.2s ease;
    padding-top: 0.25rem;
}
.ps-card-link:hover {
    gap: 0.75rem;
    opacity: 0.8;
}
.ps-card-link i { font-size: 0.68rem; }

/* Responsive */
@media screen and (max-width: 1023px) {
    .ps-grid { grid-template-columns: 1fr; }
    .ps-card { border-right: none; }
}

@media screen and (max-width: 600px) {
    .ps-section { padding: 3.5rem 0; }
    .ps-header { margin-bottom: 2.5rem; }
    .ps-card { flex-direction: column; }
    .ps-card-logo {
        width: 100%;
        height: 100px;
        border-right: none;
        border-bottom: 1px solid rgba(255,255,255,0.06);
        padding: 1.5rem;
    }
    .ps-card-body { padding: 1.25rem 1.5rem; }
}
