
/* Benefit/Value Section - Industrial Blade UI */
.benefit {
  padding: 120px 0px;
  background: rgba(243, 244, 246, 0.5); /* f3f4f6/50 */
  position: relative;
  overflow: hidden;
}

 

.benefit-bg-grid {
    position: absolute;
    inset: 0;
    opacity: 0.28;
    pointer-events: none;
    background-image:
        linear-gradient(to right, rgba(15, 118, 110, 0.08) 1px, transparent 1px),
        linear-gradient(to bottom, rgba(15, 118, 110, 0.08) 1px, transparent 1px);
    background-size: 36px 36px;
    mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.55), transparent 88%);
}

.benefit-container {
    max-width: 1280px;
    margin: 0 auto;
    position: relative;
    z-index: 10;
        padding: 0 24px;
}

.benefit-top-header {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 30px;
    gap: 32px;
}

@media (min-width: 768px) {
    .benefit-top-header {
        flex-direction: row;
        align-items: flex-end;
    }
}

.section-badge-wrapper {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 24px;
}

.section-indicator {
    width: 48px;
    height: 4px;
    background-color: var(--color-primary, #0f766e);
}

.section-label {
    color: var(--color-primary, #0f766e);
    font-weight: 900;
    font-size: 14px;
    
    letter-spacing: 0.4em;
}

.benefit-main-title {
    font-size: clamp(32px, 5vw, 48px);
    font-weight: 900;
    color: var(--color-text-dark);
    letter-spacing: -0.02em;
    
    line-height: 1.3;
    margin-bottom: 24px;
}

.highlight-text { color: var(--color-primary, #0f766e); }
.header-right { text-align: right; }
.header-decoration-grid { display: flex; gap: 4px; margin-bottom: 8px; justify-content: flex-end; }
.grid-line { width: 4px; height: 12px; background-color: #e5e7eb; }
.system-version { font-size: 10px; font-weight: 800; color: #9ca3af;  letter-spacing: 0.2em; margin: 0; }
.desktop-only { display: none; }
@media (min-width: 1024px) { .desktop-only { display: block; } }

.values-list {
    display: flex;
    flex-direction: column;
    gap: 36px;
    position: relative;
    perspective: 1200px;
}

.value-card {
    display: flex;
    flex-direction: column;
    border: 1px solid rgba(17, 24, 39, 0.12);
    border-radius: 24px;
    background: linear-gradient(135deg, #ffffff 0%, #f6faf9 100%);
    transition: transform 0.45s ease, box-shadow 0.45s ease, border-color 0.45s ease;
    position: relative;
    overflow: hidden;
    isolation: isolate;
    box-shadow: 0 18px 45px rgba(15, 23, 42, 0.08);
}

.value-card:hover {
    border-color: rgba(15, 118, 110, 0.35);
    box-shadow: 0 26px 58px rgba(15, 118, 110, 0.2);
    transform: translateY(-8px) rotateX(1.2deg);
}

.card-glow {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 82% 14%, rgba(15, 118, 110, 0.22), transparent 36%);
    z-index: -2;
    pointer-events: none;
}

.card-noise {
    position: absolute;
    inset: 0;
    background: repeating-linear-gradient(
        45deg,
        rgba(255, 255, 255, 0.12) 0 8px,
        rgba(15, 23, 42, 0.02) 8px 16px
    );
    mix-blend-mode: soft-light;
    opacity: 0.35;
    pointer-events: none;
}

@media (min-width: 1024px) {
    .value-card {
        width: 88%;
    }
    
    .value-card.row-reverse {
        margin-left: auto;
    }
}

@media (min-width: 768px) {
    .value-card { flex-direction: row; }
    .value-card.row-reverse { flex-direction: row-reverse; }
}

.card-sidebar {
    width: 100%;
    padding: 18px 22px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
    border-bottom: 1px solid rgba(17, 24, 39, 0.14);
    position: relative;
    overflow: hidden;
}

@media (min-width: 768px) {
    .card-sidebar {
        width: 128px;
        flex-direction: column;
        border-bottom: none;
        padding: 30px 0 22px;
        gap: 18px;
        position: relative;
        display: flex;
        align-items: center;
        justify-content: space-between;
    }
    .value-card:not(.row-reverse) .card-sidebar { border-right: 1px solid rgba(17, 24, 39, 0.12); }
    .value-card.row-reverse .card-sidebar { border-left: 1px solid rgba(17, 24, 39, 0.12); }
}

.theme-teal {
    background: linear-gradient(160deg, #0f766e 0%, #0b5f5a 100%);
    color: #ffffff;
}

.theme-dark {
    background: linear-gradient(160deg, #111827 0%, #1f2937 100%);
    color: #ffffff;
}

.theme-light {
    background: linear-gradient(160deg, #f2f6f9 0%, #dde8ef 100%);
    color: #0f172a;
}



.sidebar-divider {
    width: 44px;
    height: 1px;
    background-color: currentColor;
    opacity: 0.35;
}

.sidebar-chip {
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.08em;
    
    z-index: 2;
    text-align: center;
    line-height: 1.35;
    padding: 0 6px;
}

.sidebar-pulse {
    width: 12px;
    height: 12px;
    border-radius: 999px;
    background-color: currentColor;
    opacity: 0.88;
    box-shadow: 0 0 0 0 currentColor;
    animation: benefitPulse 2.2s infinite;
}

@keyframes benefitPulse {
    0% {
        box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.45);
    }
    70% {
        box-shadow: 0 0 0 14px rgba(255, 255, 255, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(255, 255, 255, 0);
    }
}

.sidebar-label {
    font-size: 11px;
    font-weight: 950;
    
    letter-spacing: 0.2em; /* Reduced for better fit */
    opacity: 1;
    white-space: nowrap;
    position: relative;
    z-index: 3;
}

@media (min-width: 768px) {
    .sidebar-label {
        writing-mode: vertical-rl;
        transform: rotate(180deg);
        position: absolute;
        bottom: 15px; /* Adjust distance from bottom */
        left: 50%;
        transform: translateX(-50%) rotate(180deg);
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
}

.card-body {
    flex: 1;
    padding: 28px;
    position: relative;
    overflow: hidden;
}

@media (min-width: 768px) {
    .card-body {
        padding: 34px;
    }
}

.body-icon-bg {
    position: absolute;
    top: -6px;
    right: -4px;
    padding: 10px;
    opacity: 0.08;
    pointer-events: none;
    transition: transform 0.45s ease;
}

.value-card:hover .body-icon-bg {
    transform: translate(-8px, 6px) rotate(6deg);
}

.lucide-icon.large { width: 122px; height: 122px; }

.card-header-inner {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 18px;
}

.icon-box {
    width: 50px;
    height: 50px;
    border: 1px solid rgba(17, 24, 39, 0.24);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-primary, #0f766e);
    transition: 0.35s ease;
    background-color: rgba(255, 255, 255, 0.8);
}

.value-card:hover .icon-box {
    background-color: #0f766e;
    color: #ffffff;
    border-color: #0f766e;
}

.title-stack {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.value-kicker {
    margin: 0;
    font-size: 14px;
    letter-spacing: 0.1em;
    color: #0f766e;
    font-weight: 600;
}

.value-title {
    font-size: clamp(20px, 2.4vw, 28px);
    font-weight: 700;
    color: #111827;
    margin: 0;
    line-height: 1.1;
}

.value-text {
    font-size: clamp(14px, 1.8vw, 14px);
    line-height: 1.65;
    color: #334155;
    font-weight: 500;
    max-width: 800px;
    margin: 0;
}

.value-meta {
    margin-top: 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}

.meta-chip {
    border: 1px solid rgba(15, 118, 110, 0.25);
    background-color: rgba(15, 118, 110, 0.1);
    color: #0b5f5a;
    font-size: 11px;
    
    letter-spacing: 0.11em;
    font-weight: 800;
    border-radius: 999px;
    padding: 8px 14px;
}

.meta-avatar {
    width: 56px;
    height: 56px;
    border-radius: 16px;
    border: 1px solid rgba(17, 24, 39, 0.12);
    background: linear-gradient(135deg, #ffffff 0%, #ecf5f3 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.meta-avatar img {
    width: 80%;
    height: 80%;
    object-fit: contain;
}

.value-card:hover .meta-avatar {
    transform: translateY(-2px) rotate(4deg);
    box-shadow: 0 12px 20px rgba(15, 118, 110, 0.2);
}

@media (max-width: 767px) {
    .benefit {
        padding: 88px 18px;
    }

    .benefit::before {
        background-size: 74vw auto;
        background-position: right -95px top 8%;
        opacity: 0.07;
    }

    .value-card:hover {
        transform: translateY(-4px);
    }

    .value-meta {
        flex-direction: column;
        align-items: flex-start;
    }
}
.card-footer { padding-top: 32px; border-top: 1px solid #f3f4f6; display: flex; justify-content: space-between; align-items: center; }
.footer-verified { display: flex; align-items: center; gap: 8px; color: #9ca3af; }
.footer-verified span { font-size: 10px; font-weight: 800;  }
.lucide-icon.small { width: 16px; height: 16px; color: var(--color-primary, #0f766e); }
.mini-mascot { width: 48px; height: 48px; opacity: 0.4; transition: 0.3s; }
.value-card:hover .mini-mascot { opacity: 1; }
.mini-mascot img { width: 100%; height: 100%; object-fit: contain; }

.benefit-cta-box { margin-top: 128px; padding: 48px; background-color: #111827; color: #ffffff; display: flex; flex-direction: column; align-items: center; justify-content: space-between; gap: 48px; position: relative; overflow: hidden; }
@media (min-width: 768px) { .benefit-cta-box { flex-direction: row; } }
.cta-accent-bg { position: absolute; top: 0; right: 0; width: 256px; height: 256px; background-color: rgba(15, 118, 110, 0.1); transform: rotate(-45deg) translate(25%, -25%); pointer-events: none; }
.cta-content { position: relative; z-index: 1; }
.cta-heading { font-size: 28px; font-weight: 900;   margin-bottom: 16px; }
.cta-subtext { color: rgba(255, 255, 255, 0.6); font-weight: 500; }
.cta-button { position: relative; z-index: 1; background-color: var(--color-primary, #0f766e); color: #ffffff; padding: 20px 48px; font-weight: 900;  text-decoration: none; display: flex; align-items: center; gap: 16px; transition: 0.3s; }
.cta-button:hover { background-color: #0d5a54; }
.cta-button svg { width: 20px; height: 20px; transition: 0.3s; }
.cta-button:hover svg { transform: translateX(8px); }
.lucide-icon { width: 24px; height: 24px; }

