/* ============================================================
   LANDING FX-H HYBRID — Hero Section
   ============================================================ */

.lfh-hero-section {
    background-color: var(--color-3);
    /* Brand green */
    padding: 60px 0;
    text-align: center;
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
}

.lfh-hero-content {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 20px;
}

.lfh-hero-title {
    font-size: clamp(32px, 5vw, 42px);
    font-weight: 800;
    color: #1a1a1a;
    /* Dark text as in image */
    margin: 0 0 25px 0;
    line-height: 1.2;
}

.lfh-hero-desc {
    font-size: clamp(16px, 2.2vw, 18px);
    font-weight: 400;
    color: #ffffff;
    line-height: 1.6;
    margin: 0;
    opacity: 0.95;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .lfh-hero-section {
        padding: 70px 0;
    }
}


/* ============================================================
   LANDING FX-H HYBRID — Product Gallery & Details Section
   ============================================================ */

.lfh-product-section {
    padding: 30px 0 0;
}

.lfh-product-container {
    background-color: #ffffff;
    border-radius: 12px;
    border: 1px solid #e2e8f0;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.02);
    padding: 20px;
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 50px;
    align-items: flex-start;
}

.lfh-gallery-col {
    display: flex;
    flex-direction: column;
}

.lfh-main-img-wrap {
    background-color: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 380px;
}

.lfh-main-img-wrap img {
    max-width: 100%;
    height: auto;
    object-fit: contain;
    transition: opacity 0.2s ease;
}

.lfh-thumbs-row {
    display: flex;
    gap: 15px;
    margin-top: 20px;
    flex-wrap: wrap;
}

.lfh-thumb-item {
    width: calc(25% - 11.25px);
    aspect-ratio: 1 / 1;
    border: 1.5px solid #e2e8f0;
    border-radius: 8px;
    padding: 6px;
    cursor: pointer;
    background-color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
}

.lfh-thumb-item img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.lfh-thumb-item:hover {
    border-color: #cbd5e1;
    transform: translateY(-1px);
}

.lfh-thumb-item.active {
    border-color: var(--color-3);
    /* Brand green active border */
    border-width: 2px;
    box-shadow: 0 2px 8px rgba(27, 157, 74, 0.15);
}

.lfh-info-col {
    display: flex;
    flex-direction: column;
}

.lfh-info-title {
    font-size: clamp(22px, 3vw, 30px);
    font-weight: 700;
    color: #0f172a;
    margin: 0 0 20px 0;
    line-height: 1.3;
}

.lfh-info-desc {
    font-size: 14.5px;
    color: #4a5568;
    line-height: 1.7;
    margin: 0 0 30px 0;
}

.lfh-info-desc p {
    margin-bottom: 20px;
    font-size: 16px;
}

.lfh-info-desc ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
}

.lfh-info-desc ul li {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    padding: 16px 0;
    border-bottom: 1px solid #edf2f7;
    font-size: 16px;
    color: #334155;
    line-height: 1.5;
}

.lfh-info-desc ul li:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.lfh-info-desc ul li:first-child {
    padding-top: 0;
}

.lfh-info-desc ul li::before {
    content: "";
    display: block;
    flex-shrink: 0;
    width: 24px;
    height: 24px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none'%3E%3Ccircle cx='12' cy='12' r='10' fill='%231b9d4a'/%3E%3Cpath d='M8.5 12.5L11 15L16 9' stroke='white' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-size: contain;
    margin-top: -1px;
}

/* Responsive adjust */
@media (max-width: 991px) {
    .lfh-product-container {
        grid-template-columns: 1fr;
        gap: 40px;
        padding: 35px;
    }

    .lfh-gallery-col {
        max-width: 500px;
        margin: 0 auto;
        width: 100%;
    }
}

@media (max-width: 768px) {
    .lfh-product-container {
        padding: 24px 20px;
    }

    .lfh-main-img-wrap {
        min-height: 280px;
        padding: 20px;
    }

    .lfh-thumbs-row {
        gap: 10px;
    }

    .lfh-thumb-item {
        width: calc(25% - 7.5px);
        border-radius: 6px;
    }

    .lfh-feature-item {
        gap: 12px;
        padding: 14px 0;
    }

    .lfh-feature-text {
        font-size: 13.5px;
    }
}


/* ============================================================
   LANDING FX-H HYBRID — Product Features Grid Section
   ============================================================ */

.lfh-features-section {
    padding: 30px 0 0;
}

.lfh-features-section .inner {
    background-color: #ffffff;
    border-radius: 12px;
    border: 1px solid #e2e8f0;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.02);
    padding: 40px 20px;
}

.lfh-features-title {
    font-size: clamp(24px, 3.5vw, 32px);
    font-weight: 700;
    color: var(--color-3);
    /* Brand green */
    text-align: center;
    margin: 0 0 30px 0;
}

.lfh-features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.lfh-feature-card {
    background-color: #f8f9fa;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    padding: 40px 30px;
    text-align: center;
    transition: all 0.3s ease;
}

.lfh-feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.04);
    border-color: var(--color-3);
}

.lfh-card-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
}

.lfh-card-icon img {
    width: 70px;
    height: 70px;
}

.lfh-card-title {
    font-size: 18px;
    font-weight: 700;
    color: #1a1a1a;
    margin: 0 0 15px 0;
    line-height: 1.4;
}

.lfh-card-text {
    font-size: 14px;
    color: #64748b;
    line-height: 1.6;
    margin: 0;
}

/* Responsive adjust */
@media (max-width: 991px) {
    .lfh-features-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }
}

@media (max-width: 576px) {
    .lfh-features-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .lfh-feature-card {
        padding: 30px 20px;
    }
}


/* ============================================================
   LANDING FX-H HYBRID — Technical Specifications Table
   ============================================================ */

.lfh-specs-section {
    padding: 30px 0 0;
}

.lfh-specs-card {
    background-color: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    padding: 50px 20px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.02);
}

.lfh-specs-title {
    font-size: clamp(24px, 3.5vw, 32px);
    font-weight: 700;
    color: var(--color-3);
    /* Brand green */
    text-align: center;
    margin: 0 0 45px 0;
}

.lfh-specs-subtitle,
.lfh-specs-card h2:not(.lfh-specs-title),
.lfh-specs-card h3 {
    font-size: 20px;
    font-weight: 700;
    color: #1a1a1a;
    margin: 35px 0 20px 0;
    text-align: left;
    border: none !important;
    padding: 0 !important;
}

.lfh-table-wrapper {
    width: 100%;
    overflow-x: auto;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    background-color: #ffffff;
    margin-bottom: 20px;
    -webkit-overflow-scrolling: touch;
}

.lfh-table,
.lfh-specs-card table {
    width: 100%;
    font-size: 14.5px;
    margin-bottom: 30px;
    border: 1px solid #e2e8f0 !important;
    border-radius: 8px;
    overflow: hidden;
    background-color: #ffffff;
}

.lfh-table th,
.lfh-specs-card table th {
    background-color: #f8fafc;
    color: #1a1a1a;
    font-weight: 700;
    padding: 16px 24px;
    border-bottom: 2px solid #e2e8f0 !important;
    border-right: 1px solid #e2e8f0 !important;
    border-top: none !important;
    border-left: none !important;
    text-align: left;
}

.lfh-table th:last-child,
.lfh-specs-card table th:last-child {
    border-right: none !important;
}

.lfh-table th:first-child,
.lfh-specs-card table th:first-child,
.lfh-table td:first-child,
.lfh-specs-card table td:first-child {
    width: 40%;
}

.lfh-table td,
.lfh-specs-card table td {
    padding: 16px 24px;
    border-bottom: 1px solid #e2e8f0 !important;
    border-right: 1px solid #e2e8f0 !important;
    border-top: none !important;
    border-left: none !important;
    color: #334155;
    font-weight: 500;
    text-align: left;
}

.lfh-table td:last-child,
.lfh-specs-card table td:last-child {
    border-right: none !important;
}

.lfh-table tr:last-child td,
.lfh-specs-card table tr:last-child td {
    border-bottom: none !important;
}

.lfh-table tr,
.lfh-specs-card table tr {
    transition: background-color 0.2s ease;
}

.lfh-table tr:hover,
.lfh-specs-card table tr:hover {
    background-color: #f8fafc;
}

/* Responsive adjustment for table */
@media (max-width: 768px) {


    .lfh-specs-card {
        padding: 30px 20px;
    }

    .lfh-specs-subtitle,
    .lfh-specs-card h2:not(.lfh-specs-title),
    .lfh-specs-card h3 {
        font-size: 17px;
        margin: 25px 0 15px 0;
    }

    .lfh-specs-card table {
        display: block;
        width: 100% !important;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }

    .lfh-specs-card table tbody {
        display: table;
        width: 100%;
    }

    .lfh-specs-card table tr {
        display: table-row;
    }

    .lfh-table th,
    .lfh-table td,
    .lfh-specs-card table th,
    .lfh-specs-card table td {
        padding: 12px 16px;
        font-size: 13.5px;
    }
}


/* ============================================================
   LANDING FX-H HYBRID — System Configuration Section
   ============================================================ */

.lfh-system-section {
    padding: 30px 0 0;
}

.lfh-system-card {
    background-color: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    padding: 50px 20px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.02);
}

.lfh-system-title {
    font-size: clamp(24px, 3.5vw, 32px);
    font-weight: 700;
    color: var(--color-3);
    /* Brand green */
    text-align: center;
    margin: 0 0 35px 0;
}

.lfh-system-inner-box {
    background-color: #f8fafc;
    border-radius: 12px;
    padding: 40px 30px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.lfh-system-subtitle {
    font-size: 22px;
    font-weight: 700;
    color: var(--color-3);
    /* Brand green */
    margin: 0 0 35px 0;
    text-align: center;
}

.lfh-flow-row {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    width: 100%;
    margin-bottom: 20px;
}

.lfh-flow-box {
    background-color: #ffffff;
    border: 1.5px solid var(--color-3);
    /* Green border */
    border-radius: 8px;
    padding: 14px 24px;
    font-size: 16px;
    font-weight: 700;
    color: #1a1a1a;
    text-align: center;
    white-space: nowrap;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.01);
}

.lfh-flow-arrow {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    font-weight: 700;
    color: var(--color-3);
    /* Green arrows */
}

.lfh-arrow-vertical {
    display: none;
}

.lfh-system-note {
    font-size: 14.5px;
    color: #64748b;
    line-height: 1.6;
    text-align: center;
    max-width: 800px;
    margin: 20px 0 0 0;
}

/* Responsive adjustment */
@media (max-width: 991px) {
    .lfh-flow-row {
        gap: 10px;
    }

    .lfh-flow-box {
        padding: 12px 18px;
        font-size: 13.5px;
    }
}

@media (max-width: 768px) {


    .lfh-system-card {
        padding: 30px 20px;
    }

    .lfh-system-inner-box {
        padding: 30px 15px;
    }

    .lfh-system-subtitle {
        font-size: 18px;
        margin-bottom: 25px;
    }

    .lfh-flow-row {
        flex-direction: column;
        gap: 8px;
    }

    .lfh-flow-box {
        width: 100%;
        max-width: 280px;
    }

    .lfh-arrow-horizontal {
        display: none;
    }

    .lfh-arrow-vertical {
        display: inline-block;
        margin: 5px 0;
    }

    .lfh-system-note {
        font-size: 13px;
        margin-top: 25px;
    }
}


/* ============================================================
   LANDING FX-H HYBRID — Applications Grid Section
   ============================================================ */

.lfh-app-section {
    padding: 30px 0 0;
}

.lfh-app-card {
    background-color: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    padding: 50px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.02);
}

.lfh-app-title {
    font-size: clamp(24px, 3.5vw, 32px);
    font-weight: 700;
    color: var(--color-3);
    /* Brand green */
    text-align: center;
    margin: 0 0 50px 0;
}

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

.lfh-app-item {
    background-color: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    padding: 35px 20px;
    text-align: center;
    transition: all 0.3s ease;
}

.lfh-app-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.04);
    border-color: var(--color-3);
}

.lfh-app-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.lfh-app-icon img {
    width: 60px;
    height: 60px;
}

.lfh-item-title {
    font-size: 16px;
    font-weight: 700;
    color: #1a1a1a;
    margin: 0;
}

/* Responsive adjustment */
@media (max-width: 991px) {
    .lfh-app-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
}

@media (max-width: 768px) {


    .lfh-app-card {
        padding: 30px 20px;
    }
}

@media (max-width: 576px) {
    .lfh-app-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .lfh-app-item {
        padding: 25px 15px;
    }
}


/* ============================================================
   LANDING FX-H HYBRID — Certifications & Standards Section
   ============================================================ */

.lfh-cert-section {
    padding: 30px 0 30px;
}

.lfh-cert-card {
    background-color: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    padding: 50px 20px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.02);
    display: flex;
    flex-direction: column;
    align-items: center;
}

.lfh-cert-title {
    font-size: clamp(24px, 3.5vw, 32px);
    font-weight: 700;
    color: var(--color-3);
    /* Brand green */
    text-align: center;
    margin: 0 0 20px 0;
}

.lfh-cert-desc {
    font-size: 15px;
    color: #64748b;
    line-height: 1.6;
    text-align: center;
    max-width: 800px;
    margin: 0 0 35px 0;
}

.lfh-badges-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
    max-width: 900px;
}

.lfh-badges-container ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
    width: 100%;
}

.lfh-cert-badge,
.lfh-badges-container ul li {
    background-color: var(--color-3);
    /* Brand green */
    color: #ffffff;
    font-size: 14px;
    font-weight: 700;
    padding: 10px 24px;
    border-radius: 30px;
    text-align: center;
    box-shadow: 0 2px 8px rgba(27, 157, 74, 0.1);
    transition: all 0.2s ease;
}

.lfh-cert-badge:hover,
.lfh-badges-container ul li:hover {
    transform: translateY(-2px);
    background-color: #15803d;
    box-shadow: 0 4px 12px rgba(27, 157, 74, 0.2);
}

.lfh-cert-cta-wrap {
    margin-top: 40px;
    text-align: center;
}

.lfh-quote-btn {
    display: inline-block;
    background-color: var(--color-3);
    /* Brand green */
    color: #ffffff !important;
    font-size: 16px;
    font-weight: 700;
    padding: 14px 45px;
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(27, 157, 74, 0.2);
}

.lfh-quote-btn:hover {
    background-color: #15803d;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(27, 157, 74, 0.3);
}

/* Responsive adjustment */
@media (max-width: 768px) {


    .lfh-cert-card {
        padding: 30px 20px;
    }

    .lfh-cert-badge,
    .lfh-badges-container ul li {
        font-size: 12.5px;
        padding: 8px 18px;
    }

    .lfh-quote-btn {
        font-size: 15px;
        padding: 12px 35px;
    }
}
