/* ============================================================
   LANDING FX10FT1044LP — CSS STYLING
   Font: Inter (via system stack)
   ============================================================ */

/* --- Hero Section --- */
.fx10-hero-section {
    background: var(--color-3);
    padding: 60px 20px 60px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    position: relative;
    overflow: hidden;
}

/* Subtle decorative radial glow behind content */
.fx10-hero-section::before {
    content: '';
    position: absolute;
    top: -60px;
    left: 50%;
    transform: translateX(-50%);
    width: 700px;
    height: 380px;
    background: radial-gradient(ellipse at center, rgba(255, 255, 255, 0.10) 0%, transparent 70%);
    pointer-events: none;
}

.fx10-hero-inner {
    position: relative;
    z-index: 1;
    width: 100%;
    margin: 0 auto;
}

.fx10-hero-title {
    font-size: clamp(28px, 5.5vw, 44px);
    font-weight: 700;
    letter-spacing: 0.5px;
    margin: 0 0 18px 0;
    line-height: 1.15;
    text-transform: uppercase;
}

.fx10-hero-subtitle {
    font-size: clamp(14px, 2vw, 18px);
    font-weight: 400;
    color: rgba(255, 255, 255, 0.92);
    line-height: 1.65;
    margin: 0 0 36px 0;
    max-width: 680px;
    margin-left: auto;
    margin-right: auto;
}

/* --- Spec Badges Row --- */
.fx10-badges-row {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    justify-content: center;
    align-items: center;
    margin-top: 4px;
}

.fx10-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background-color: rgba(255, 255, 255, 0.17);
    border: 1px solid rgba(255, 255, 255, 0.35);
    border-radius: 8px;
    padding: 10px 20px;
    color: #ffffff;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.2px;
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    white-space: nowrap;
    transition: background-color 0.2s ease, transform 0.2s ease;
}

.fx10-badge:hover {
    background-color: rgba(255, 255, 255, 0.26);
    transform: translateY(-2px);
}

.fx10-badge-icon {
    font-size: 16px;
    line-height: 1;
    flex-shrink: 0;
}

.fx10-badge-icon img {
    width: 20px;
    height: 20px;
}

/* ============================================================
   RESPONSIVE
   ============================================================ */

@media (max-width: 768px) {
    .fx10-hero-section {
        padding: 55px 16px 50px;
    }

    .fx10-hero-title {
        font-size: clamp(24px, 7vw, 38px);
    }

    .fx10-hero-subtitle {
        font-size: 14.5px;
    }

    .fx10-badges-row {
        gap: 10px;
    }

    .fx10-badge {
        font-size: 13px;
        padding: 9px 16px;
    }
}

@media (max-width: 480px) {
    .fx10-hero-section {
        padding: 45px 12px 40px;
    }

    .fx10-badges-row {
        flex-direction: column;
        align-items: stretch;
        max-width: 320px;
        margin-left: auto;
        margin-right: auto;
    }

    .fx10-badge {
        justify-content: center;
    }
}

/* ============================================================
   PRODUCT OVERVIEW SECTION
   ============================================================ */

.fx10-overview-section {
    padding: 60px 0 0;
}

.fx10-overview-heading {
    text-align: center;
    font-size: clamp(24px, 3.5vw, 32px);
    font-weight: 800;
    color: var(--color-3);
    margin: 0 0 36px 0;
    letter-spacing: 0.2px;
}

/* White card container */
.fx10-overview-card {
    background-color: #ffffff;
    border-radius: 16px;
    box-shadow: 0 4px 24px rgba(15, 23, 42, 0.07);
    border: 1px solid #e8ecf0;
    display: grid;
    grid-template-columns: 1fr 1.05fr;
    gap: 0;
    overflow: hidden;
}

/* ---- Left: Gallery ---- */
.fx10-ov-gallery {
    padding: 40px 36px 36px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.fx10-ov-main-wrap {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    border-radius: 10px;
    background-color: #f8fafc;
}

.fx10-ov-main-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: opacity 0.3s ease;
}

/* Thumbnails row */
.fx10-ov-thumbs {
    display: flex;
    gap: 12px;
    flex-wrap: nowrap;
}

.fx10-ov-thumb {
    flex: 0 0 calc(33.33% - 8px);
    aspect-ratio: 4 / 3;
    border-radius: 8px;
    overflow: hidden;
    border: 2px solid #e2e8f0;
    cursor: pointer;
    transition: border-color 0.2s ease, transform 0.2s ease;
}

.fx10-ov-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.fx10-ov-thumb:hover {
    border-color: var(--color-3);
    transform: scale(1.03);
}

.fx10-ov-thumb.active {
    border-color: var(--color-3);
    box-shadow: 0 0 0 3px rgba(27, 157, 74, 0.18);
}

/* ---- Right: Info ---- */
.fx10-ov-info {
    padding: 44px 40px 40px;
    display: flex;
    flex-direction: column;
    /* justify-content: center; */
}

.fx10-ov-title {
    font-size: clamp(20px, 2.5vw, 28px);
    color: var(--color-3);
    margin: 0 0 16px 0;
    line-height: 1.2;
}

.fx10-ov-desc {
    font-size: 14.5px;
    line-height: 1.72;
    color: #475569;
    margin: 0 0 28px 0;
}

.fx10-ov-desc strong {
    color: #0f172a;
    font-weight: 600;
}

/* 2×2 stat grid */
.fx10-ov-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
}

.fx10-ov-stat {
    background: linear-gradient(135deg, #22c55e 0%, var(--color-3) 100%);
    border-radius: 10px;
    padding: 18px 20px 16px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.fx10-ov-stat:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(27, 157, 74, 0.3);
}

.fx10-ov-stat-value {
    display: block;
    font-size: clamp(26px, 3vw, 34px);
    font-weight: 900;
    color: #ffffff;
    line-height: 1.1;
    margin-bottom: 6px;
}

.fx10-ov-stat-label {
    display: block;
    font-size: 13px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.88);
    letter-spacing: 0.2px;
}

/* ============================================================
   RESPONSIVE — OVERVIEW SECTION
   ============================================================ */

@media (max-width: 900px) {
    .fx10-overview-card {
        grid-template-columns: 1fr;
    }

    .fx10-ov-gallery {
        border-right: none;
        border-bottom: 1px solid #f0f4f8;
        padding: 30px 28px 28px;
    }

    .fx10-ov-info {
        padding: 30px 28px 36px;
    }
}

@media (max-width: 600px) {
    .fx10-overview-section {
        padding: 40px 0 0px;
    }

    .fx10-ov-gallery {
        padding: 24px 16px 20px;
    }

    .fx10-ov-thumbs {
        gap: 8px;
    }

    .fx10-ov-info {
        padding: 24px 16px 30px;
    }

    .fx10-ov-stats {
        gap: 10px;
    }

    .fx10-ov-stat {
        padding: 14px 12px 12px;
    }
}

/* ============================================================
   KEY FEATURES SECTION
   ============================================================ */

.fx10-features-section {
    padding: 65px 0 0;
}

.fx10-features-heading {
    text-align: center;
    font-size: clamp(24px, 3.5vw, 32px);
    font-weight: 800;
    color: var(--color-3);
    margin: 0 0 35px 0;
    letter-spacing: 0.2px;
}

/* 3-column grid */
.fx10-features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
}

/* Individual feature card */
.fx10-feat-card {
    background-color: #ffffff;
    border-radius: 14px;
    border: 1px solid #e8ecf0;
    box-shadow: 0 2px 12px rgba(15, 23, 42, 0.05);
    padding: 36px 28px 32px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.fx10-feat-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 30px rgba(15, 23, 42, 0.10);
}

/* Icon wrapper */
.fx10-feat-icon {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    flex-shrink: 0;
}

.fx10-feat-icon svg {
    display: block;
}

/* Card title */
.fx10-feat-title {
    font-size: 18px;
    font-weight: 700;
    color: var(--color-3);
    margin: 0 0 12px 0;
    line-height: 1.35;
}

/* Card description */
.fx10-feat-desc {
    font-size: 14px;
    line-height: 1.68;
    color: #64748b;
    margin: 0;
}

/* ============================================================
   RESPONSIVE — KEY FEATURES
   ============================================================ */

@media (max-width: 900px) {
    .fx10-features-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 18px;
    }
}

@media (max-width: 580px) {
    .fx10-features-section {
        padding: 45px 0 0px;
    }

    .fx10-features-grid {
        grid-template-columns: 1fr;
        gap: 14px;
    }

    .fx10-feat-card {
        padding: 28px 22px 26px;
    }

    .fx10-feat-icon {
        width: 60px;
        height: 60px;
    }

}

/* ============================================================
   TECHNICAL SPECIFICATIONS SECTION
   ============================================================ */

.fx10-specs-section {
    padding: 65px 0 0px;
}

.fx10-specs-heading {
    text-align: center;
    font-size: clamp(24px, 3.5vw, 32px);
    font-weight: 800;
    color: var(--color-3);
    margin: 0 0 32px 0;
    letter-spacing: 0.2px;
}

/* Individual spec table block */
.fx10-spec-table {
    background-color: #ffffff;
    border-radius: 14px;
    border: 1px solid #e2e8f0;
    box-shadow: 0 2px 12px rgba(15, 23, 42, 0.05);
    overflow: hidden;
    margin-bottom: 28px;
}

.fx10-spec-table:last-child {
    margin-bottom: 0;
}

/* Green table header bar */
.fx10-spec-table-header {
    background: linear-gradient(90deg, var(--color-3) 0%, #22c55e 100%);
    padding: 16px 28px;
}

.fx10-spec-table-header span {
    color: #ffffff;
    font-size: 16px;
    font-weight: 700;
    letter-spacing: 0.2px;
}

/* Table body */
.fx10-spec-table-body {
    padding: 4px 0;
}

/* Individual row */
.fx10-spec-row {
    display: flex;
    align-items: center;
    padding: 15px 28px;
    border-bottom: 1px solid #f1f5f9;
    transition: background-color 0.15s ease;
}

.fx10-spec-row:last-child {
    border-bottom: none;
}

.fx10-spec-row:nth-child(even) {
    background-color: #f8fafc;
}

.fx10-spec-row:hover {
    background-color: #f0faf4;
}

.fx10-spec-key {
    flex: 0 0 45%;
    font-size: 14px;
    font-weight: 700;
    color: #1e293b;
    line-height: 1.4;
    padding-right: 20px;
}

.fx10-spec-val {
    flex: 1;
    font-size: 14px;
    font-weight: 400;
    color: #64748b;
    line-height: 1.4;
}

/* Table elements support inside specs cards */
.fx10-spec-table-body table,
.fx10-spec-table-body>div table {
    width: 100% !important;
    border-collapse: collapse;
    border: none !important;
    margin: 0;
}

.fx10-spec-table-body tr,
.fx10-spec-table-body>div tr {
    border-bottom: 1px solid #f1f5f9;
    transition: background-color 0.15s ease;
}

.fx10-spec-table-body tr:last-child,
.fx10-spec-table-body>div tr:last-child {
    border-bottom: none;
}

.fx10-spec-table-body tr:nth-child(even),
.fx10-spec-table-body>div tr:nth-child(even) {
    background-color: #f8fafc;
}

.fx10-spec-table-body tr:hover,
.fx10-spec-table-body>div tr:hover {
    background-color: #f0faf4;
}

.fx10-spec-table-body th,
.fx10-spec-table-body>div th {
    width: 45%;
    font-size: 14px;
    font-weight: 700;
    color: #1e293b;
    line-height: 1.4;
    padding: 15px 28px;
    text-align: left;
    border: none !important;
}

.fx10-spec-table-body td,
.fx10-spec-table-body>div td {
    font-size: 14px;
    font-weight: 400;
    color: #64748b;
    line-height: 1.4;
    padding: 15px 28px;
    text-align: left;
    border: none !important;
}

/* If the specs container has nested cards inside it, style them individually and reset the main parent */
.fx10-spec-table:has(.fx10-spec-table-body > div) {
    background: transparent !important;
    border: none !important;
    box-shadow: none !important;
    overflow: visible !important;
}

.fx10-spec-table:has(.fx10-spec-table-body > div) .fx10-spec-table-body {
    padding: 0 !important;
}

.fx10-spec-table-body>div {
    background-color: #ffffff;
    border-radius: 14px;
    border: 1px solid #e2e8f0;
    box-shadow: 0 2px 12px rgba(15, 23, 42, 0.05);
    overflow: hidden;
    margin-bottom: 28px;
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box;
}

.fx10-spec-table-body>div:last-child {
    margin-bottom: 0;
}

/* Header styling for nested tables */
.fx10-spec-table-body>div h2 {
    background: linear-gradient(90deg, var(--color-3) 0%, #22c55e 100%);
    color: #ffffff;
    font-size: 16px;
    font-weight: 700;
    letter-spacing: 0.2px;
    padding: 16px 28px;
    margin: 0;
}

/* ============================================================
   RESPONSIVE — SPECS SECTION
   ============================================================ */

@media (max-width: 640px) {
    .fx10-specs-section {
        padding: 45px 0px 0px;
    }

    .fx10-spec-table-header {
        padding: 14px 18px;
    }

    .fx10-spec-row {
        flex-direction: column;
        align-items: flex-start;
        padding: 13px 18px;
        gap: 4px;
    }

    .fx10-spec-key {
        flex: none;
        font-size: 13px;
        padding-right: 0;
    }

    .fx10-spec-val {
        font-size: 13px;
        color: #475569;
    }

    /* Table responsive support */
    .fx10-spec-table-body tr,
    .fx10-spec-table-body>div tr {
        display: block;
    }

    .fx10-spec-table-body th,
    .fx10-spec-table-body td,
    .fx10-spec-table-body>div th,
    .fx10-spec-table-body>div td {
        display: block;
        width: 100% !important;
        box-sizing: border-box;
    }

    .fx10-spec-table-body th,
    .fx10-spec-table-body>div th {
        padding: 13px 18px 4px !important;
        font-size: 13px;
    }

    .fx10-spec-table-body td,
    .fx10-spec-table-body>div td {
        padding: 0 18px 13px !important;
        font-size: 13px;
        color: #475569;
    }

    .fx10-spec-table-body>div h2 {
        padding: 14px 18px !important;
        font-size: 15px;
    }
}

/* ============================================================
   APPLICATIONS SECTION
   ============================================================ */

.fx10-apps-section {
    padding: 65px 0 0;
}

.fx10-apps-heading {
    text-align: center;
    font-size: clamp(24px, 3.5vw, 32px);
    font-weight: 800;
    color: var(--color-3);
    margin: 0 0 30px 0;
    letter-spacing: 0.2px;
}

/* 3-column grid */
.fx10-apps-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

/* Individual application card */
.fx10-app-card {
    background-color: #ffffff;
    border-radius: 14px;
    border: 1px solid #e8ecf0;
    box-shadow: 0 2px 12px rgba(15, 23, 42, 0.05);
    padding: 28px 24px 26px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.fx10-app-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 30px rgba(15, 23, 42, 0.10);
}

/* Top row: icon + title side by side */
.fx10-app-card-top {
    display: flex;
    align-items: center;
    gap: 14px;
}

.fx10-app-icon {
    flex-shrink: 0;
    width: 52px;
    height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #f8fafc;
    border-radius: 10px;
}

.fx10-app-icon svg {
    display: block;
}

.fx10-app-title {
    font-size: 19px;
    font-weight: 800;
    color: var(--color-3);
    margin: 0;
    line-height: 1.35;
}

.fx10-app-desc {
    font-size: 14px;
    line-height: 1.68;
    color: #64748b;
    margin: 0;
}

/* ============================================================
   RESPONSIVE — APPLICATIONS SECTION
   ============================================================ */

@media (max-width: 900px) {
    .fx10-apps-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }
}

@media (max-width: 580px) {
    .fx10-apps-section {
        padding: 45px 0px 0px;
    }

    .fx10-apps-grid {
        grid-template-columns: 1fr;
        gap: 14px;
    }

    .fx10-app-card {
        padding: 22px 18px 20px;
    }

    .fx10-app-title {
        /* font-size: 15px; */
    }
}

/* ============================================================
   CERTIFICATIONS & STANDARDS SECTION
   ============================================================ */

.fx10-certs-section {
    padding: 60px 0;
}


.fx10-certs-heading {
    text-align: center;
    font-size: clamp(24px, 3.5vw, 32px);
    font-weight: 800;
    color: var(--color-3);
    margin: 0 0 32px 0;
    letter-spacing: 0.2px;
}

/* White container card */
.fx10-certs-card {
    background-color: #ffffff;
    border-radius: 16px;
    border: 1px solid #e2e8f0;
    box-shadow: 0 4px 20px rgba(15, 23, 42, 0.06);
    padding: 36px 40px 32px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

/* Dynamic list support (heading + ul) inside certs card */
.fx10-certs-card h2 {
    font-size: 17px;
    font-weight: 800;
    color: #0f172a;
    margin: 0;
    line-height: 1.3;
}

.fx10-certs-card h2:not(:first-of-type) {
    margin-top: 14px;
}

.fx10-certs-card ul {
    list-style: none;
    padding: 0;
    margin: 0 0 12px 0;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.fx10-certs-card ul:last-child {
    margin-bottom: 0;
}

.fx10-certs-card li {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background-color: var(--color-3);
    color: #ffffff;
    font-size: 13px;
    font-weight: 700;
    padding: 7px 18px;
    border-radius: 999px;
    letter-spacing: 0.3px;
    white-space: nowrap;
    transition: background-color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
    box-shadow: 0 2px 8px rgba(27, 157, 74, 0.2);
    cursor: default;
}

.fx10-certs-card li:hover {
    background-color: #157a38;
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(27, 157, 74, 0.3);
}

/* Individual group block */
.fx10-cert-group {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.fx10-cert-group-title {
    font-size: 17px;
    font-weight: 800;
    color: #0f172a;
    margin: 0;
    line-height: 1.3;
}

/* Badge row */
.fx10-cert-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

/* Individual green pill badge */
.fx10-cert-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background-color: var(--color-3);
    color: #ffffff;
    font-size: 13px;
    font-weight: 700;
    padding: 7px 18px;
    border-radius: 999px;
    letter-spacing: 0.3px;
    white-space: nowrap;
    transition: background-color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
    box-shadow: 0 2px 8px rgba(27, 157, 74, 0.2);
}

.fx10-cert-badge:hover {
    background-color: #157a38;
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(27, 157, 74, 0.3);
}

/* ============================================================
   RESPONSIVE — CERTIFICATIONS SECTION
   ============================================================ */

@media (max-width: 640px) {
    .fx10-certs-section {
        padding: 45px 0;
    }

    .fx10-certs-card {
        padding: 24px 18px 22px;
        gap: 12px;
    }

    .fx10-cert-group-title {
        font-size: 15px;
    }

    .fx10-cert-badge {
        font-size: 12px;
        padding: 6px 14px;
    }

    .fx10-certs-card h2 {
        /* font-size: 15px; */
    }

    .fx10-certs-card h2:not(:first-of-type) {
        margin-top: 10px;
    }

    .fx10-certs-card li {
        font-size: 12px;
        padding: 6px 14px;
    }
}

/* ============================================================
   CALL TO ACTION SECTION
   ============================================================ */

.fx10-cta-section {
    padding: 0 0 60px;
}

/* Green rounded card */
.fx10-cta-card {
    background: linear-gradient(135deg, #22c55e 0%, var(--color-3) 50%, #157a38 100%);
    border-radius: 20px;
    padding: 40px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 18px;
    box-shadow: 0 8px 32px rgba(27, 157, 74, 0.25);
}

.fx10-cta-title {
    font-size: clamp(22px, 3.5vw, 34px);
    font-weight: 900;
    color: #ffffff;
    margin: 0;
    line-height: 1.2;
    letter-spacing: -0.01em;
}

.fx10-cta-desc {
    font-size: clamp(14px, 1.8vw, 16px);
    font-weight: 400;
    color: rgba(255, 255, 255, 0.92);
    margin: 0;
    line-height: 1.65;
    max-width: 680px;
}

/* White pill button */
.fx10-cta-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background-color: #ffffff;
    color: var(--color-3);
    font-size: 15px;
    font-weight: 800;
    padding: 14px 40px;
    border-radius: 999px;
    text-decoration: none;
    margin-top: 8px;
    letter-spacing: 0.2px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
    transition: background-color 0.2s ease, color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}

.fx10-cta-btn:hover {
    background-color: #f0fdf4;
    color: #157a38;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.16);
}

/* ============================================================
   RESPONSIVE — CTA SECTION
   ============================================================ */

@media (max-width: 768px) {
    .fx10-cta-section {
        padding: 0 0px 35px;
    }

    .fx10-cta-card {
        padding: 44px 30px;
        border-radius: 16px;
    }
}

@media (max-width: 480px) {
    .fx10-cta-card {
        padding: 36px 20px;
        border-radius: 14px;
        gap: 14px;
    }

    .fx10-cta-btn {
        padding: 13px 32px;
        font-size: 14px;
        width: 100%;
        max-width: 280px;
    }
}
