﻿/* ============================================
   GLOBAL STYLES
   ============================================ */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;600;700;800&display=swap');

/* ============================================
   CSS Reset cho Landing Page TRIMOS
   ============================================ */
.trimos-lp-wrapper {
    font-family: 'Inter', sans-serif;
    color: #1A1A1A;
    background-color: #FFFFFF;
    min-height: 100vh;
    line-height: 1.5;
    -webkit-font-smoothing: antialiased;
}

.trimos-lp-wrapper * {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

.trimos-lp-container {
    width: 100%;
    max-width: 1248px;
    margin: 0 auto;
    padding: 0 24px;
}

/* ============================================
   HEADER STYLES
   ============================================ */
.trimos-header {
    background-color: #0B2C5F;
    color: #FFFFFF;
    padding: 16px 0;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.trimos-header .trimos-lp-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100%;
}

/* Left: Logos */
.trimos-header__logos {
    display: flex;
    align-items: center;
    gap: 24px;
    text-decoration: none;
}

.trimos-header__logos img {
    height: 64px;
    max-width: 220px;
    object-fit: contain;
    display: block;
}

.trimos-header__logo-divider {
    width: 1px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.3);
}

/* Right: Nav & Actions */
.trimos-header__right {
    display: flex;
    align-items: center;
    gap: 32px;
}

.trimos-header__nav {
    display: flex;
    align-items: center;
    gap: 24px;
    list-style: none !important;
    margin-bottom: 0px !important;
}

.trimos-header__nav li {
    margin: 0;
}

.trimos-header__nav a {
    color: #FFFFFF;
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    transition: color 0.3s ease;
}

.trimos-header__nav a:hover {
    color: #FF9900;
}

.trimos-header__actions {
    display: flex;
    align-items: center;
    gap: 16px;
}

/* ============================================
   LANGUAGE SELECTOR (Dropdown)
   ============================================ */
.trimos-lang-selector {
    position: relative;
    display: flex;
    align-items: center;
    gap: 8px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 6px;
    padding: 8px 12px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 600;
    transition: border-color 0.3s ease;
    user-select: none;
    width: fit-content;
}

.trimos-lang-selector:hover {
    border-color: #FFFFFF;
}

.trimos-lang-selector span {
    color: #FFFFFF;
}

.trimos-lang-selector__arrow {
    transition: transform 0.3s ease;
}

.trimos-lang-selector.is-open .trimos-lang-selector__arrow {
    transform: rotate(180deg);
}

.trimos-lang-icon {
    width: 22px;
    height: 16px;
    /* standard flag ratio approx */
    display: inline-flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
    border-radius: 2px;
    overflow: hidden;
}

.trimos-lang-icon img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Dropdown Panel */
.trimos-lang-dropdown {
    position: absolute;
    top: calc(100% + 8px);
    right: 0;
    background-color: #FFFFFF;
    border-radius: 8px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
    min-width: 160px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-8px);
    transition: all 0.25s ease;
    z-index: 200;
    overflow: hidden;
}

.trimos-lang-selector.is-open .trimos-lang-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.trimos-lang-dropdown a {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 16px;
    color: #1A1A1A;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: background-color 0.2s ease;
}

.trimos-lang-dropdown a:hover {
    background-color: #F1F5F9;
    text-decoration: none !important;
}

.trimos-lang-dropdown a.is-active {
    background-color: #0B2C5F;
    color: #FFFFFF !important;
    text-decoration: none !important;
}

.trimos-lang-dropdown a.is-active {
    background-color: #0B2C5F;
    color: #FFFFFF;
    font-weight: 700;
}

/* ============================================
   CTA BUTTON
   ============================================ */
.trimos-btn-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background-color: #FF9900;
    color: #FFFFFF !important;
    height: 48px;
    padding: 0 24px;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

.trimos-btn-primary:hover {
    background-color: #c00510;
    transform: translateY(-2px);
}

/* Base Button */
.trimos-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 32px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 700;
    text-decoration: none !important;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
    text-align: center;
}

.trimos-btn--orange {
    background-color: #FF9900;
    color: #FFFFFF !important;
}

.trimos-btn--orange:hover {
    background-color: #E68A00;
    transform: translateY(-2px);
}

/* ============================================
   HERO SECTION
   ============================================ */
.trimos-hero {
    position: relative;
    background-position: 60% 48%;
    background-size: cover;
    background-repeat: no-repeat;
    padding: 80px 0 160px 0;
    overflow: hidden;
    min-height: 720px;
}

.trimos-hero__wrap {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}

/* Hero Content (Left) */
.trimos-hero__content {
    flex: 1;
    max-width: 650px;
}

.trimos-hero__subtitle {
    color: #FF9900;
    font-size: 20px;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 8px;
    margin-top: 0;
}

.trimos-hero__title {
    color: #FF9900;
    font-size: 56px;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 16px;
    margin-top: 0;
    text-transform: uppercase;
}

.trimos-hero__desc {
    color: #0B2C5F;
    font-size: 24px;
    font-weight: 600;
    line-height: 1.4;
    margin-bottom: 32px;
    margin-top: 0;
}

.trimos-hero__desc span.orange {
    color: #FF9900;
}

/* Features List */
.trimos-hero__features {
    display: flex;
    gap: 16px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.trimos-hero__feature-item {
    display: flex;
    align-items: center;
    gap: 12px;
    background: #FFFFFF;
    border: 1px solid #E2E8F0;
    border-radius: 8px;
    padding: 12px 16px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.02);
    font-size: 14px;
    font-weight: 600;
    color: #1A1A1A;
    line-height: 1.3;
}

.trimos-hero__feature-icon {
    color: #0B2C5F;
    display: flex;
    align-items: center;
    justify-content: center;
}



/* ============================================
   HERO INFOBAR (White Card Design)
   ============================================ */
.trimos-infobar-wrapper {
    position: relative;
    margin-top: -60px;
    /* Overlap hero */
    z-index: 10;
}

.trimos-infobar {
    background-color: #FFFFFF;
    border-radius: 24px;
    box-shadow: 0 15px 50px rgba(11, 44, 95, 0.12);
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-areas:
        "label-time label-venue label-venue label-lang"
        "item-time item-hanoi item-hcm item-lang";
    padding: 32px 12px 48px;
    border: 1px solid #F1F5F9;
}

.trimos-infobar__item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 0 20px;
    position: relative;
}

.trimos-infobar__item:not(:last-child)::after {
    content: "";
    position: absolute;
    right: 0;
    top: 10%;
    height: 80%;
    width: 1px;
    background-color: #F1F5F9;
}

.trimos-infobar__group-label {
    font-size: 13px;
    font-weight: 700;
    color: #64748B;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 24px;
    padding-bottom: 12px;
    border-bottom: 1px solid #F1F5F9;
    width: 100%;
    text-align: center;
}

.trimos-infobar__group-label--time {
    grid-area: label-time;
}

.trimos-infobar__group-label--venue {
    grid-area: label-venue;
    border-bottom: 2px solid #0B2C5F;
    color: #0B2C5F;
}

.trimos-infobar__group-label--lang {
    grid-area: label-lang;
}

.trimos-infobar__item--time {
    grid-area: item-time;
}

.trimos-infobar__item--hanoi {
    grid-area: item-hanoi;
}

.trimos-infobar__item--hcm {
    grid-area: item-hcm;
}

.trimos-infobar__item--lang {
    grid-area: item-lang;
}




/* Icons */
.trimos-infobar__icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    position: relative;
    flex-shrink: 0;
    transition: transform 0.3s ease;
}

.trimos-infobar__icon svg {
    width: 36px;
    height: 36px;
}

.trimos-infobar__icon--time {
    color: #0B2C5F;
    background-color: rgba(11, 44, 95, 0.06);
}

.trimos-infobar__icon--venue-hn {
    color: #FF9900;
    background-color: rgba(255, 153, 0, 0.08);
}

.trimos-infobar__icon--venue-hcm {
    color: #475569;
    background-color: rgba(71, 85, 105, 0.08);
}

.trimos-infobar__icon--lang {
    color: #0B2C5F;
    background-color: rgba(11, 44, 95, 0.06);
}

.trimos-infobar__icon-sub {
    position: absolute;
    bottom: 2px;
    right: 2px;
    width: 28px;
    height: 28px;
    background-color: #FFFFFF;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    color: #0B2C5F;
}

/* Text */
.trimos-infobar__text {
    width: 100%;
}

.trimos-infobar__label {
    font-size: 13px;
    font-weight: 700;
    color: #64748B;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 16px;
    display: block;
}

.trimos-infobar__main {
    font-size: 24px;
    font-weight: 800;
    color: #0B2C5F;
    margin: 0 0 12px;
    line-height: 1.2;
}

.trimos-infobar__sub-info {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    color: #FF9900;
    font-size: 16px;
    margin-bottom: 8px;
}

.trimos-infobar__desc {
    font-size: 13px;
    line-height: 1.5;
    color: #64748B;
    margin: 0;
}

.trimos-infobar__date {
    font-size: 13px;
    font-weight: 600;
    line-height: 1.5;
    color: #FF9900;
    margin: 0;
}



/* ============================================
   PRODUCTS SECTION (THIẾT BỊ TRÌNH DIỄN)
   ============================================ */
.products-section {
    padding: 100px 0;
    background-color: #F8FAFC;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    margin-top: 48px;
}

.product-card {
    background: #FFFFFF;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid #E2E8F0;
    display: flex;
    flex-direction: column;
}

.product-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(11, 44, 95, 0.1);
}

.product-image-container {
    position: relative;
    padding: 40px;
    background: #F1F5F9;
    background: linear-gradient(135deg, #F1F5F9 0%, #E2E8F0 100%);
    display: flex;
    justify-content: center;
    align-items: center;
    height: 300px;
}

.product-image {
    max-height: 100%;
    width: auto;
    object-fit: contain;
    transition: transform 0.5s ease;
}

.product-card:hover .product-image {
    transform: scale(1.05);
}

.product-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background-color: #0B2C5F;
    color: #FFFFFF;
    padding: 6px 12px;
    border-radius: 4px;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.product-card[data-id="v4plus"] .product-badge {
    background-color: #FF9900;
}

.product-content {
    padding: 32px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.product-name {
    font-size: 24px;
    font-weight: 800;
    color: #0B2C5F;
    margin-bottom: 12px;
}

.product-description {
    font-size: 16px;
    color: #475569;
    line-height: 1.6;
    margin-bottom: 24px;
}

.product-features {
    list-style: none !important;
    padding: 0 !important;
    margin: 0 0 32px 0 !important;
}

.product-features li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 14px;
    color: #1E293B;
    font-weight: 600;
    margin-bottom: 12px;
}

.product-features li i.icon-check {
    color: #10B981;
    margin-top: 3px;
    display: inline-block;
    width: 6px;
    height: 10px;
    border-bottom: 2px solid currentColor;
    border-right: 2px solid currentColor;
    transform: rotate(45deg);
}

.btn-outline {
    border: 2px solid #0B2C5F;
    color: #0B2C5F;
    background: transparent;
    padding: 12px 24px;
    border-radius: 8px;
    font-weight: 700;
    text-align: center;
    text-transform: uppercase;
    transition: all 0.3s ease;
    text-decoration: none;
    font-size: 14px;
}

.btn-outline:hover {
    background-color: #0B2C5F;
    color: #FFFFFF;
}

.btn-full-width {
    width: 100%;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-title {
    font-size: 32px;
    font-weight: 800;
    color: #0B2C5F;
    margin-bottom: 16px;
    text-transform: uppercase;
}

.section-underline {
    width: 80px;
    height: 4px;
    background-color: #FF9900;
    margin: 0 auto 24px;
    border-radius: 2px;
}

.section-subtitle {
    font-size: 18px;
    color: #64748B;
    max-width: 700px;
    margin: 0 auto;
}

/* Responsive cho Products */

/* ============================================
   WHY JOIN SECTION (6-Card Grid)
   ============================================ */
.trimos-why {
    padding: 80px 0;
    background-color: #F8FAFC;
    margin-top: 32px;
}

.trimos-section-title {
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 32px;
    margin-bottom: 60px;
}

.trimos-section-title h2 {
    color: #0B2C5F;
    font-size: 32px;
    font-weight: 800;
    text-transform: uppercase;
    margin: 0;
}

.trimos-section-title::before,
.trimos-section-title::after {
    content: "";
    height: 2px;
    flex: 0 1 80px;
}

.trimos-section-title::before {
    background: linear-gradient(to right, transparent, #FF9900);
}

.trimos-section-title::after {
    background: linear-gradient(to left, transparent, #FF9900);
}

.trimos-why__grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 16px;
}

.trimos-benefit-card {
    background: #FFFFFF;
    border-radius: 20px;
    padding: 24px 24px;
    text-align: center;
    box-shadow: 0 10px 40px rgba(11, 44, 95, 0.05);
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: all 0.3s ease;
    border: 1px solid #F1F5F9;
    height: 100%;
}

.trimos-benefit-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(11, 44, 95, 0.12);
    border-color: #E2E8F0;
}

.trimos-benefit-card__icon {
    margin-bottom: 24px;
    color: #0B2C5F;
    display: flex;
    align-items: center;
    justify-content: center;
}

.trimos-benefit-card--red .trimos-benefit-card__icon {
    color: #FF9900;
}

.trimos-benefit-card__text {
    font-size: 14px;
    line-height: 1.6;
    font-weight: 700;
    color: #0B2C5F;
    margin: 0;
}

.trimos-benefit-card:hover .trimos-benefit-card__text {
    color: #1E293B;
}

.trimos-benefit-item p {
    font-size: 13px;
    line-height: 1.4;
    font-weight: 600;
    color: #4A5568;
    margin: 0;
}

/* ============================================
   PRODUCTS SECTION (THIẾT BỊ TRÌNH DIỄN)
   ============================================ */
.trimos-products {
    padding: 80px 0;
    background-color: #FFFFFF;
}

.trimos-lp-wrapper h1,
.trimos-lp-wrapper h2,
.trimos-lp-wrapper h3,
.trimos-lp-wrapper h4,
.trimos-lp-wrapper p,
.trimos-lp-wrapper span,
.trimos-lp-wrapper a,
.trimos-lp-wrapper li {
    font-family: 'Inter', sans-serif !important;
}

.trimos-products__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    background: #FFFFFF;
    border: 1px solid #E2E8F0;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
    overflow: hidden;
    margin-bottom: 24px;
}

.trimos-products__grid--2col {
    grid-template-columns: repeat(2, 1fr);
    margin-top: 32px;
}

/* Large cards specs (HC5, Labnano) now use standard vertical list */
.trimos-product-card--large .trimos-product-card__specs {
    flex-grow: 1;
}

.trimos-product-card--large .trimos-product-card__specs li {
    width: 100%;
}


.trimos-product-card {
    padding: 12px 12px 12px 8px;
    display: flex;
    flex-direction: row;
    gap: 16px;
    border-right: 1px solid #E2E8F0;
}

.trimos-product-card:last-child {
    border-right: none;
}

.trimos-product-card__image {
    width: 32%;
    flex-shrink: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    /* Center the image vertically! */
}

.trimos-product-card__image img {
    height: auto;
    max-height: 380px;
    width: 100%;
    object-fit: contain;
    object-position: center;
    /* Center object rather than top */
}

.trimos-product-card__content {
    display: flex;
    flex-direction: column;
    flex: 1;
}

.trimos-product-card__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    /* Push Label to the right! */
    margin-bottom: 16px;
    margin-top: 4px;
}

.trimos-product-card__header h3 {
    margin: 0;
    font-size: 28px;
    font-weight: 800;
    color: #0B2C5F;
    font-family: 'Inter', sans-serif !important;
    white-space: nowrap;
}

.trimos-product-card--highlight .trimos-product-card__header h3 {
    color: #FF9900;
}

.trimos-product-label {
    background-color: #E6F0FE;
    color: #0B2C5F;
    font-size: 11px;
    font-weight: 800;
    padding: 6px 14px;
    border-radius: 20px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-family: 'Inter', sans-serif !important;
    text-align: center;
}

.trimos-product-label--orange {
    background-color: #FFF7ED;
    color: #FF9900;
}

.trimos-product-card__desc {
    font-size: 14px;
    color: #4A5568;
    line-height: 1.6;
    margin-bottom: 8px;
    font-weight: 500;
}

.trimos-product-card__specs {
    list-style: none;
    padding: 0;
    margin: 0 0 24px 0;
    flex-grow: 1;
}

.trimos-product-card__specs li {
    position: relative;
    padding-left: 28px;
    margin-bottom: 12px;
    font-size: 13.5px;
    color: #1E293B;
    font-weight: 600;
    line-height: 1.9;
}

.trimos-product-card__specs li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 2px;
    width: 18px;
    height: 18px;
    background-color: #0B2C5F;
    border-radius: 50%;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'%3E%3C/polyline%3E%3C/svg%3E");
    background-size: 10px;
    background-position: center;
    background-repeat: no-repeat;
}

.trimos-product-card__cta {
    margin-top: 8px;
    display: inline-block;
    color: #0B2C5F;
    font-weight: 700;
    font-size: 14px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.trimos-product-card--highlight .trimos-product-card__cta {
    color: #FF9900;
}

.trimos-product-card__cta:hover {
    opacity: 0.8;
}

/* Trust Badges */
.trimos-trust-badges {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    background: #F8FAFC;
    border: 1px solid #E2E8F0;
    border-radius: 12px;
}

.trimos-trust-badge {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 24px 32px;
    border-right: 1px solid #E2E8F0;
}

.trimos-trust-badge:last-child {
    border-right: none;
}

.trimos-trust-badge__text strong {
    display: block;
    font-size: 14px;
    font-weight: 800;
    color: #0B2C5F;
    margin-bottom: 4px;
    text-transform: uppercase;
}

.trimos-trust-badge__text span {
    font-size: 14px;
    color: #64748B;
    line-height: 1.4;
    font-weight: 600;
}



/* ============================================
   AGENDA SECTION (NỘI DUNG HỘI THẢO)
   ============================================ */

.trimos-agenda__grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.trimos-agenda-card {
    background: #FFFFFF;
    border: 1px solid #E2E8F0;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
}

.trimos-agenda-card__header {
    padding: 20px 24px;
    text-align: center;
}

.trimos-agenda-card__header--blue {
    background-color: #0B2C5F;
}

.trimos-agenda-card__header--red {
    background-color: #FF9900;
}

.trimos-agenda-card__header h3 {
    margin: 0;
    color: #FFFFFF;
    font-size: 16px;
    font-weight: 800;
    text-transform: uppercase;
    font-family: 'Inter', sans-serif !important;
}

.trimos-agenda-card__body {
    padding: 24px 32px;
}

.trimos-agenda-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.trimos-agenda-list__item {
    display: flex;
    align-items: center;
    padding: 14px 0;
    border-bottom: 1px solid #F1F5F9;
    gap: 24px;
}

.trimos-agenda-list__item:first-child {
    padding-top: 0;
}

.trimos-agenda-list__item:last-child {
    padding-bottom: 0;
    border-bottom: none;
}

.trimos-agenda-list__time {
    font-size: 14px;
    font-weight: 800;
    color: #0B2C5F;
    white-space: nowrap;
    width: 110px;
    flex-shrink: 0;
}

.trimos-agenda-list__content {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
    flex: 1;
}

.trimos-agenda-list__text {
    font-size: 14px;
    color: #1E293B;
    font-weight: 600;
    line-height: 1.5;
}

.trimos-agenda-tag {
    font-size: 10px;
    font-weight: 800;
    padding: 4px 10px;
    border-radius: 20px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    white-space: nowrap;
}

.trimos-agenda-tag--blue {
    background-color: #E6F0FE;
    color: #0B2C5F;
}

.trimos-agenda-tag--red {
    background-color: #FEF2F2;
    color: #FF9900;
}

/* ============================================
   SPEAKERS SECTION (DIỄN GIẢ & BAN TỔ CHỨC)
   ============================================ */
.trimos-speakers {
    padding: 60px 0;
    /* background-color: #f9fafb; */
}

.trimos-speakers-subtitle {
    text-align: center;
    color: #64748B;
    font-size: 16px;
    margin-top: -20px;
    margin-bottom: 48px;
    font-weight: 500;
}

.trimos-speakers__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    max-width: 1200px;
    margin: 0 auto;
}

.trimos-speaker-card {
    background: #FFFFFF;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
    border: 1px solid #E2E8F0;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}

.trimos-speaker-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
    border-color: #CBD5E1;
}

.trimos-speaker-card__top {
    padding: 16px 24px;
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.trimos-speaker-card__avatar {
    width: 100px;
    height: 100px;
    flex-shrink: 0;
    border-radius: 50%;
    overflow: hidden;
    border: 4px solid #F1F5F9;
    background: #F8FAFC;
}

.trimos-speaker-card__avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.trimos-speaker-card__info {
    flex: 1;
}

.trimos-speaker-card__role {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 4px 12px;
    border-radius: 100px;
    font-size: 10px;
    font-weight: 800;
    text-transform: uppercase;
    margin-bottom: 12px;
}

.trimos-speaker-card__role--red {
    background: #FEF2F2;
    color: #FF9900;
}

.trimos-speaker-card__role--blue {
    background: #EFF6FF;
    color: #0B2C5F;
}

.trimos-speaker-card__info h3 {
    font-size: 18px;
    font-weight: 800;
    color: #0B2C5F;
    margin: 0 0 4px;
    line-height: 1.2;
}

.trimos-speaker-card__pos {
    font-size: 14px;
    color: #64748B;
    font-weight: 600;
    margin: 0 0 16px;
}

.trimos-speaker-card__company {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.trimos-speaker-card__company-divider {
    height: 1px;
    background: linear-gradient(to right, #E2E8F0, transparent);
    width: 100%;
}

.trimos-company-trimos,
.trimos-company-emc,
.trimos-company-tecotec {
    display: flex;
    /* align-items: center; */
    gap: 10px;
}

.trimos-company-trimos strong {
    color: #FF9900;
    font-size: 16px;
    font-weight: 800;
}

.trimos-company-emc strong {
    color: #0B2C5F;
    font-size: 18px;
    font-weight: 900;
}

.trimos-company-tecotec strong {
    color: #F97316;
    font-size: 16px;
    font-weight: 800;
}

.trimos-company-trimos div,
.trimos-company-emc,
.trimos-company-tecotec {
    display: flex;
    flex-direction: column;
    line-height: 1.1;
    gap: 8px;
}

.trimos-company-trimos span,
.trimos-company-emc span,
.trimos-company-tecotec span {
    font-size: 10px;
    color: #64748B;
    font-weight: 700;
    text-transform: uppercase;
}

.trimos-speaker-card__bottom {
    background: #F8FAFC;
    padding: 24px 32px;
    flex: 1;
    border-top: 1px solid #F1F5F9;
}

.trimos-speaker-card__details {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.trimos-speaker-card__details li {
    display: flex;
    gap: 12px;
    font-size: 13px;
    color: #475569;
    line-height: 1.5;
    font-weight: 500;
}

.trimos-speaker-card__detail-icon {
    flex-shrink: 0;
    width: 32px;
    height: 32px;
    background: #FFFFFF;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #0B2C5F;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.03);
}

.trimos-speakers-note-wrapper {
    margin-top: 48px;
    display: flex;
    justify-content: center;
}

.trimos-speakers-note {
    background: #FFFFFF;
    padding: 16px 24px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    gap: 16px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.03);
    border: 1px solid #E2E8F0;
    max-width: 600px;
}

.trimos-speakers-note__icon {
    width: 44px;
    height: 44px;
    background: #EFF6FF;
    color: #0B2C5F;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.trimos-speakers-note__text strong {
    display: block;
    color: #0B2C5F;
    font-size: 15px;
    margin-bottom: 2px;
}

.trimos-speakers-note__text p {
    margin: 0;
    color: #64748B;
    font-size: 13px;
    font-weight: 500;
}

/* ==========================================
   ORGANIZERS SECTION (ĐƠN VỊ TỔ CHỨC)
   ========================================== */
.trimos-organizers {
    padding: 60px 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
}

.trimos-organizers::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
}

.trimos-organizers .trimos-lp-container {
    position: relative;
    z-index: 2;
}

.trimos-organizers__header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 60px;
}

.trimos-organizers__badge {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    color: #FF9900;
    font-weight: 700;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 12px;
}

.trimos-organizers__badge::before,
.trimos-organizers__badge::after {
    content: '';
    width: 24px;
    height: 2px;
    background-color: #FF9900;
}

.trimos-organizers__header h2 {
    font-size: 42px;
    color: #0B2C5F;
    margin-bottom: 15px;
    font-weight: 800;
}

.trimos-organizers__header p {
    color: #666;
    font-size: 18px;
    line-height: 1.6;
}

.trimos-organizers__grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.trimos-organizers__card {
    background: #FFFFFF;
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 10px 40px rgba(11, 44, 95, 0.08);
    display: flex;
    flex-direction: column;
}

.trimos-organizers__card-top {
    display: flex;
    align-items: center;
    gap: 25px;
    margin-bottom: 30px;
    padding-bottom: 25px;
    border-bottom: 1px solid #F1F1F1;
}

.trimos-organizers__logo {
    width: 120px;
    height: 140px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
}

.trimos-organizers__logo-divider {
    width: 1px;
    height: 30px;
    background-color: #DDD;
    flex-shrink: 0;
}

.trimos-organizers__logo img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.trimos-organizers__info h3 {
    font-size: 24px;
    color: #0B2C5F;
    margin-bottom: 8px;
}

.trimos-organizers__info .divider {
    width: 40px;
    height: 3px;
    background-color: #FF9900;
    margin-bottom: 15px;
}

.trimos-organizers__info p {
    color: #555;
    font-size: 15px;
    line-height: 1.5;
}

.trimos-organizers__features {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    grid-template-columns: 1fr;
    gap: 15px;
}

.trimos-organizers__features li {
    display: flex;
    align-items: center;
    gap: 15px;
    color: #333;
    font-size: 15px;
}

.trimos-organizers__icon-box {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background-color: #F0F4F8;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

/* ============================================
   REGISTRATION SECTION (ĐĂNG KÝ)
   ============================================ */
.trimos-registration {
    padding: 80px 0;
    /* background-color: #F8FAFC; */
}

.trimos-registration__banner {
    background-color: #0B2C5F;
    border-radius: 8px;
    padding: 12px 24px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 48px;
    gap: 24px;
}

.trimos-registration__banner-left {
    display: flex;
    align-items: center;
    gap: 12px;
    color: #FFFFFF;
    font-size: 18px;
    font-weight: 700;
}

.trimos-registration__banner-btn {
    background-color: #FF9900;
    color: #FFFFFF;
    text-transform: uppercase;
    font-weight: 800;
    font-size: 14px;
    padding: 10px 24px;
    border-radius: 4px;
    white-space: nowrap;
    text-decoration: none;
    transition: background-color 0.3s;
}

.trimos-registration__banner-btn:hover {
    background-color: #b9050d;
    color: #FFFFFF;
}

.trimos-registration__form-wrapper {
    background-color: #F8FAFC;
    border: 1px solid #E2E8F0;
    border-radius: 12px;
    padding: 32px;
    margin-top: 32px;
}

.trimos-registration__wpforms-placeholder {
    background: #FFFFFF;
    border: 1px dashed #CBD5E1;
    border-radius: 8px;
    margin-bottom: 24px;
    padding: 0 28px;
}

.trimos-registration__secure-note {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    color: #4A5568;
    font-size: 13px;
    font-weight: 600;
    border-top: 1px solid #E2E8F0;
    padding-top: 16px;
}

/* ============================================
   AGENDA SECTION (NỘI DUNG HỘI THẢO)
   ============================================ */
.trimos-agenda {
    padding: 80px 0;
    background-color: #F8FAFC;
}

.trimos-section-subtitle {
    text-align: center;
    color: #64748B;
    font-size: 18px;
    margin: -32px auto 48px;
    max-width: 800px;
}

.trimos-agenda__main-box {
    background-color: #FFFFFF;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(11, 44, 95, 0.05);
    border: 1px solid #E2E8F0;
    overflow: hidden;
    margin-bottom: 40px;
}

.trimos-agenda-header {
    display: grid;
    grid-template-columns: 140px 60px 1fr;
    padding: 24px 40px;
    background-color: #FFFFFF;
    border-bottom: 1px solid #F1F5F9;
    font-weight: 700;
    font-size: 14px;
    color: #0B2C5F;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Adjust column mapping for the body grid */
.trimos-agenda-header .trimos-agenda-col--time {
    grid-column: 1 / 2;
}

.trimos-agenda-header .trimos-agenda-col--content {
    grid-column: 3 / 4;
}

.trimos-agenda-body {
    padding: 0;
}

.trimos-agenda-row {
    display: grid;
    grid-template-columns: 140px 60px 1fr;
    padding: 20px 40px;
    border-bottom: 1px solid #F1F5F9;
    align-items: center;
    transition: background-color 0.3s ease;
}

.trimos-agenda-row:last-child {
    border-bottom: none;
}

.trimos-agenda-row:hover {
    background-color: #F8FAFC;
}

/* Column 1: Time */
.trimos-agenda-col--time {
    font-size: 15px;
    font-weight: 700;
    color: #0B2C5F;
}

/* Timeline Decoration */
.trimos-agenda-timeline {
    position: relative;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.trimos-agenda-dot {
    width: 12px;
    height: 12px;
    background-color: #0B2C5F;
    border-radius: 50%;
    z-index: 2;
}

.trimos-agenda-line {
    position: absolute;
    top: 0;
    bottom: 0;
    width: 2px;
    background-color: #E2E8F0;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1;
}

.trimos-agenda-row:first-child .trimos-agenda-line {
    top: 50%;
}

.trimos-agenda-row:last-child .trimos-agenda-line {
    bottom: 50%;
}

/* Column 2: Content */
.trimos-agenda-item-wrap {
    display: flex;
    align-items: center;
    gap: 20px;
}

.trimos-agenda-icon {
    width: 44px;
    height: 44px;
    background-color: #F1F5F9;
    color: #0B2C5F;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.trimos-agenda-text-group {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
}

.trimos-agenda-content-text {
    font-size: 16px;
    font-weight: 600;
    color: #1E293B;
}

.trimos-agenda-tag {
    background-color: rgba(227, 6, 19, 0.1);
    color: #FF9900;
    font-size: 10px;
    font-weight: 800;
    padding: 4px 8px;
    border-radius: 4px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Column 3: Speaker */
.trimos-agenda-col--speaker {
    text-align: right;
    font-size: 14px;
    font-weight: 600;
    color: #4A5568;
}





/* ============================================
   RESPONSIVE — Tablet (max-width: 991px)
   ============================================ */

/* ============================================
   RESPONSIVE — Mobile (max-width: 767px)
   ============================================ */

/* ============================================
   RESPONSIVE — Small Mobile (max-width: 480px)
   ============================================ */

/* ============================================
   FOOTER
   ============================================ */
.trimos-footer {
    background-color: #0B2C5F;
    padding: 48px 0;
    color: #FFFFFF;
}

.trimos-footer__content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 40px;
}

.trimos-footer__col {
    flex: 1;
    min-width: 230px;
}

.trimos-footer__col--lang {
    flex: 0 0 auto;
    min-width: 120px;
}

.trimos-footer__title {
    font-size: 14px;
    font-weight: 800;
    color: #FFFFFF;
    margin: 0 0 20px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.trimos-footer__contact-items {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.trimos-footer__contact-item {
    display: flex;
    align-items: center;
    gap: 12px;
    color: #FFFFFF;
    font-size: 14px;
    text-decoration: none;
    transition: opacity 0.2s;
    font-weight: 500;
}

.trimos-footer__contact-item:hover {
    opacity: 0.8;
    color: #FF9900;
    text-decoration: none;
    text-underline-offset: 4px;
}

.trimos-footer__social-links {
    display: flex;
    gap: 12px;
}

.trimos-footer__social-link {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #FFFFFF;
    text-decoration: none;
    transition: transform 0.2s, opacity 0.2s;
}

.trimos-footer__social-link:hover {
    transform: translateY(-3px);
    opacity: 0.9;
}

.trimos-footer__social-link--fb {
    background-color: #1877F2;
}

.trimos-footer__social-link--ln {
    background-color: #0077B5;
}

.trimos-footer__social-link--yt {
    background-color: #FF0000;
}

.trimos-footer__social-link--zalo {
    background-color: #0068FF;
}

.trimos-footer__social-link--zalo svg {
    width: 20px;
    height: 20px;
}

.trimos-footer__policy-links {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 14px;
    font-weight: 500;
}

.trimos-footer__policy-links a {
    color: #FFFFFF;
    text-decoration: none;
}

.trimos-footer__policy-links a:hover {
    text-decoration: underline;
}

.trimos-footer__separator {
    opacity: 0.4;
}

.trimos-footer__col--copyright {
    font-size: 14px;
    line-height: 1.6;
}

.trimos-footer__col--copyright p {
    margin: 0;
    opacity: 0.9;
}

/* Lang selector override for footer */
.trimos-lang-selector--footer {
    background-color: #FFFFFF;
    border: none;
    padding: 8px 16px;
    border-radius: 6px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 10px;
    height: 40px;
    box-sizing: border-box;
    transition: background-color 0.3s ease;
    width: fit-content;
    margin-left: auto;
}

.trimos-lang-selector--footer:hover {
    background-color: #F8FAFC;
}

.trimos-lang-selector--footer span {
    color: #0B2C5F !important;
    font-weight: 700;
}

.trimos-lang-selector--footer .trimos-lang-dropdown {
    top: auto;
    bottom: calc(100% + 8px);
    background-color: #FFFFFF;
    box-shadow: 0 -10px 25px rgba(0, 0, 0, 0.1);
}

.trimos-lang-selector--footer .trimos-lang-dropdown a {
    color: #1E293B;
}

.trimos-lang-selector--footer .trimos-lang-dropdown a.is-active {
    background-color: #0B2C5F;
    color: #FFFFFF !important;
}

.trimos-lang-selector--footer .trimos-lang-icon {
    font-size: 18px;
    line-height: normal;
}

/* ============================================
   RESPONSIVE — Tablet (max-width: 991px)
   ============================================ */

/* ============================================
   RESPONSIVE — Mobile (max-width: 767px)
   ============================================ */



/* ============================================
   HAMBURGER BUTTON (hidden on desktop)
   ============================================ */
.trimos-hamburger {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
    width: 40px;
    height: 40px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 4px;
    border-radius: 6px;
    transition: background 0.2s;
}

.trimos-hamburger:hover {
    background: rgba(255, 255, 255, 0.1);
}

.trimos-hamburger span {
    display: block;
    width: 22px;
    height: 2px;
    background: #fff;
    border-radius: 2px;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.trimos-hamburger.is-open span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.trimos-hamburger.is-open span:nth-child(2) {
    opacity: 0;
}

.trimos-hamburger.is-open span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

/* ============================================
   MOBILE NAV OVERLAY
   ============================================ */
.trimos-mobile-nav {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: #0B2C5F;
    z-index: 200;
    padding: 96px 32px 40px;
    flex-direction: column;
    overflow-y: auto;
    transform: translateY(-100%);
    transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.trimos-mobile-nav.is-open {
    transform: translateY(0);
}

.trimos-mobile-nav nav {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    text-align: center;
}

.trimos-mobile-nav ul {
    list-style: none !important;
    padding: 0 !important;
    margin: 0 0 32px !important;
    display: flex;
    flex-direction: column;
    gap: 4px;
    width: 100%;
}

.trimos-mobile-nav__link {
    display: block;
    color: #fff;
    font-size: 18px;
    font-weight: 700;
    text-transform: uppercase;
    padding: 14px 0;
    text-decoration: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    letter-spacing: 0.5px;
    transition: color 0.2s;
}

.trimos-mobile-nav__link:hover {
    color: #FF9900;
}

.trimos-mobile-nav__cta {
    padding: 0 40px;
    font-size: 16px;
    height: 52px;
}

.trimos-mobile-nav__close {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 44px;
    height: 44px;
    background: rgba(255, 255, 255, 0.12);
    border: 1.5px solid rgba(255, 255, 255, 0.25);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    cursor: pointer;
    transition: background 0.2s;
    flex-shrink: 0;
}

.trimos-mobile-nav__close:hover {
    background: rgba(255, 255, 255, 0.22);
}


/* ============================================
   RESPONSIVE — Tablet Wide (max-width: 1200px)
   ============================================ */
@media (max-width: 1200px) {
    .trimos-lp-container {
        padding: 0 20px;
    }

    .trimos-why__grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 16px;
    }
}

/* ============================================
   RESPONSIVE — Tablet Nav Compact (max-width: 1100px)
   Prevent nav items wrapping before hamburger kicks in
   ============================================ */
@media (max-width: 1100px) {
    .trimos-header__right {
        gap: 16px;
    }

    .trimos-header__nav {
        gap: 12px;
    }

    .trimos-header__nav a {
        font-size: 12px;
    }

    .trimos-header__logos {
        gap: 12px;
    }

    .trimos-header__logos img {
        height: 48px;
    }

    .trimos-btn-primary {
        height: 40px;
        padding: 0 14px;
        font-size: 13px;
    }
}


/* ============================================
   RESPONSIVE — Tablet (max-width: 991px)
   ============================================ */
@media (max-width: 991px) {

    /* --- Header --- */
    .trimos-header__nav {
        display: none;
    }

    .trimos-hamburger {
        display: flex;
    }

    .trimos-mobile-nav {
        display: flex;
    }

    .trimos-header__logos img {
        height: 40px;
    }

    .trimos-header__right {
        gap: 12px;
    }

    /* Hide header CTA on tablet — it's in the hero */
    .trimos-header__actions .trimos-btn-primary {
        display: none;
    }

    .trimos-header__actions .trimos-lang-selector {
        display: flex;
    }

    /* --- Hero --- */
    .trimos-hero {
        padding: 60px 0 120px;
        min-height: auto;
        background-position: 89% 48%;
    }

    .trimos-hero__wrap {
        flex-direction: column;
        text-align: center;
    }

    .trimos-hero__content {
        max-width: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .trimos-hero__features {
        justify-content: center;
    }

    .trimos-hero__image {
        justify-content: center;
        margin-top: 24px;
    }

    .trimos-hero__title {
        font-size: 44px;
    }

    /* --- Infobar --- */
    .trimos-infobar {
        grid-template-columns: repeat(2, 1fr);
        grid-template-areas:
            "label-time  label-venue"
            "item-time   item-hanoi"
            "label-lang  item-hcm"
            "item-lang   item-hcm";
        gap: 0;
        padding: 40px 20px;
    }

    .trimos-infobar__group-label {
        font-size: 11px;
        margin-bottom: 20px;
    }

    .trimos-infobar__item {
        padding: 20px 15px;
        border: none !important;
    }

    .trimos-infobar__item:not(:last-child)::after {
        display: none;
    }

    .trimos-infobar__icon {
        width: 70px;
        height: 70px;
        margin-bottom: 20px;
    }

    .trimos-infobar__icon svg {
        width: 30px;
        height: 30px;
    }

    .trimos-infobar__main {
        font-size: 18px;
    }

    /* --- Why Join --- */
    .trimos-why__grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 14px;
    }

    .trimos-benefit-card {
        padding: 24px 12px;
    }

    /* --- Section titles --- */
    .trimos-section-title h2 {
        font-size: 24px;
    }

    .trimos-section-title::before,
    .trimos-section-title::after {
        flex: 0 1 40px;
    }

    /* --- Products --- */
    .trimos-products__grid,
    .trimos-products__grid--2col {
        grid-template-columns: 1fr;
    }

    .trimos-product-card {
        border-right: none;
        border-bottom: 1px solid #E2E8F0;
    }

    .trimos-product-card:last-child {
        border-bottom: none;
    }

    .trimos-trust-badges {
        grid-template-columns: 1fr;
    }

    .trimos-trust-badge {
        border-right: none;
        border-bottom: 1px solid #E2E8F0;
    }

    .trimos-trust-badge:last-child {
        border-bottom: none;
    }

    /* --- Agenda --- */
    .trimos-agenda-header {
        grid-template-columns: 110px 40px 1fr;
        padding: 16px 20px;
    }

    .trimos-agenda-row {
        grid-template-columns: 110px 40px 1fr;
        padding: 16px 20px;
    }

    .trimos-agenda-icon {
        width: 36px;
        height: 36px;
    }

    .trimos-agenda-icon svg {
        width: 18px;
        height: 18px;
    }

    .trimos-agenda-content-text {
        font-size: 14px;
    }

    /* --- Speakers --- */
    .trimos-speakers__grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }

    .trimos-speaker-card__top {
        padding: 24px;
    }

    .trimos-speaker-card__avatar {
        width: 80px;
        height: 80px;
    }

    .trimos-speaker-card__info h3 {
        font-size: 16px;
    }

    /* --- Organizers --- */
    .trimos-organizers__header h2 {
        font-size: 30px;
    }

    /* --- Footer --- */
    .trimos-footer__content {
        grid-template-columns: repeat(2, 1fr);
        display: grid;
    }
}


/* ============================================
   RESPONSIVE — Mobile (max-width: 767px)
   ============================================ */
@media (max-width: 767px) {

    .trimos-why,
    .trimos-products,
    .trimos-agenda,
    .trimos-speakers,
    .trimos-registration,
    .trimos-organizers {
        padding: 36px 0px !important;
    }

    /* --- Header --- */
    .trimos-lang-selector {
        display: none;
    }

    .trimos-header__logo-divider {
        display: none;
    }

    .trimos-header__logos img {
        height: 42px;
    }

    /* keep both logos, smaller */
    .trimos-header__actions .trimos-btn-primary {
        display: none;
    }


    /* --- Hero --- */
    .trimos-hero {
        padding: 48px 0 100px;
        background-position: center top;
    }

    .trimos-hero__title {
        font-size: 38px;
    }

    .trimos-hero__desc {
        font-size: 18px;
    }

    .trimos-hero__features {
        flex-direction: column;
        align-items: center;
        gap: 12px;
    }

    .trimos-hero__feature-item {
        width: 100%;
        max-width: 320px;
    }

    /* --- Infobar — single column stack --- */
    .trimos-infobar {
        display: flex;
        flex-direction: column;
        gap: 0;
        padding: 20px;
    }

    .trimos-infobar__group-label--time {
        order: 1;
    }

    .trimos-infobar__item--time {
        order: 2;
    }

    .trimos-infobar__group-label--venue {
        order: 3;
        border-top: 1px solid #F1F5F9;
    }

    .trimos-infobar__item--hanoi {
        order: 4;
    }

    .trimos-infobar__item--hcm {
        order: 5;
    }

    .trimos-infobar__group-label--lang {
        order: 6;
        border-top: 1px solid #F1F5F9;
    }

    .trimos-infobar__item--lang {
        order: 7;
    }

    .trimos-infobar__group-label {
        display: block;
        text-align: left;
        border-bottom: 1px solid #F1F5F9;
        margin-bottom: 0;
        padding: 20px 0 10px;
        font-size: 11px;
        color: #718096;
        font-weight: 700;
        letter-spacing: 1px;
    }

    .trimos-infobar__group-label--time {
        border-top: none;
        padding-top: 0;
    }

    .trimos-infobar__item {
        padding: 20px 0;
        flex-direction: row;
        text-align: left;
        gap: 15px;
        align-items: center;
        border-bottom: none !important;
    }

    .trimos-infobar__icon {
        width: 48px;
        height: 48px;
        margin-bottom: 0;
        flex-shrink: 0;
        background: #F8FAFC;
    }

    .trimos-infobar__icon svg {
        width: 22px;
        height: 22px;
    }

    .trimos-infobar__text {
        text-align: left;
    }

    .trimos-infobar__main {
        font-size: 17px;
        margin-bottom: 4px;
    }

    .trimos-infobar__desc {
        font-size: 13px;
        line-height: 1.5;
    }

    /* --- Why Join --- */
    .trimos-why__grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }

    .trimos-benefit-card {
        padding: 20px 12px;
    }

    /* --- Products --- */
    .trimos-product-card {
        flex-direction: column;
        padding: 20px 16px;
        gap: 16px;
        background: #FFFFFF;
        border-radius: 12px;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
        border: 1px solid #F1F5F9;
        margin-bottom: 20px;
        width: 100%;
        box-sizing: border-box;
        overflow: hidden;
        /* Prevent any internal content from poking out */
    }

    .trimos-product-card__image {
        width: 100% !important;
        height: auto !important;
        min-height: auto !important;
        padding: 0;
        margin-bottom: 12px;
        display: block;
    }

    .trimos-product-card__image img {
        width: 100% !important;
        height: 320px !important;
        max-height: none !important;
        object-fit: contain;
        display: block;
    }

    .trimos-product-card__content {
        width: 100%;
        padding: 0;
    }

    .trimos-product-card__header {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
        margin-bottom: 12px;
    }

    .trimos-product-card__header h3 {
        font-size: 22px;
        white-space: normal;
        /* Allow wrap on mobile */
        line-height: 1.2;
    }

    .trimos-product-label {
        align-self: flex-start;
    }

    .trimos-product-card--large .trimos-product-card__specs {
        flex-direction: column;
        gap: 8px;
    }

    /* --- Agenda --- */
    .trimos-agenda-header {
        display: none;
    }

    .trimos-agenda-row {
        grid-template-columns: 1fr;
        padding: 20px 16px;
        gap: 10px;
    }

    .trimos-agenda-timeline {
        display: none;
    }

    .trimos-agenda-col--time {
        font-size: 13px;
        opacity: 0.8;
    }

    .trimos-agenda-item-wrap {
        align-items: center;
    }

    .trimos-agenda-text-group {
        flex-direction: column;
        align-items: flex-start;
        gap: 6px;
    }

    .trimos-registration__banner-left svg {
        display: none;
    }

    .trimos-agenda-content-text {
        font-size: 15px;
        line-height: 1.4;
    }

    .trimos-agenda-row:hover {
        background-color: transparent;
    }

    /* --- Speakers --- */
    .trimos-speakers {
        padding: 36px 0 !important;
    }

    .trimos-speakers-subtitle {
        font-size: 14px;
        margin-bottom: 32px;
    }

    .trimos-speakers__grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .trimos-speaker-card__top {
        padding: 24px;
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .trimos-speaker-card__avatar {
        width: 136px;
        height: auto;
        margin-bottom: 8px;
    }

    .trimos-speaker-card__bottom {
        padding: 20px 24px;
    }

    .trimos-speaker-card__details li {
        font-size: 12px;
    }

    .trimos-speakers-note {
        flex-direction: column;
        text-align: center;
        padding: 24px;
        gap: 12px;
    }

    .trimos-company-trimos,
    .trimos-company-emc,
    .trimos-company-tecotec {
        justify-content: center;
    }

    /* --- Registration --- */
    .trimos-registration__banner {
        flex-direction: column;
        text-align: center;
        gap: 16px;
        padding: 24px 16px;
    }

    .trimos-registration__banner-left {
        justify-content: center;
        font-size: 16px;
        line-height: 1.4;
    }

    .trimos-registration__form-wrapper {
        padding: 24px 16px;
    }

    /* --- Organizers --- */
    .trimos-organizers__grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .trimos-organizers__card {
        padding: 30px 20px;
    }

    .trimos-organizers__card-top {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 20px;
        padding-bottom: 20px;
        margin-bottom: 20px;
    }

    .trimos-organizers__logo {
        width: 100%;
        height: 100px;
        margin-bottom: 0;
    }

    .trimos-organizers__info h3 {
        font-size: 20px;
    }

    .trimos-organizers__info .divider {
        margin: 0 auto 15px;
    }

    .trimos-organizers__features li {
        font-size: 14px;
        gap: 12px;
    }

    .trimos-organizers__icon-box {
        width: 32px;
        height: 32px;
    }

    /* --- Footer --- */
    .trimos-footer {
        padding: 40px 0;
    }

    .trimos-footer__grid {
        grid-template-columns: 1fr;
        gap: 32px;
        text-align: left;
    }

    .trimos-footer__contact-item,
    .trimos-footer__policy-links,
    .trimos-footer__social-links {
        justify-content: flex-start;
    }

    .trimos-lang-selector--footer {
        margin: 0 auto;
    }

    .trimos-infobar__sub-info {
        justify-content: start;
    }
}


/* ============================================
   RESPONSIVE — Small Mobile (max-width: 480px)
   ============================================ */
@media (max-width: 480px) {

    .trimos-lp-container {
        padding: 0 16px;
    }

    .trimos-hero {
        padding: 40px 0 88px;
        background-position: 89% 48%;
    }

    .trimos-hero__title {
        font-size: 30px;
    }

    .trimos-hero__desc {
        font-size: 16px;
    }

    .trimos-infobar {
        padding: 24px 16px 32px;
    }

    .trimos-infobar__icon {
        width: 48px;
        height: 48px;
    }

    .trimos-infobar__icon svg {
        width: 20px;
        height: 20px;
    }

    .trimos-infobar__main {
        font-size: 16px;
    }

    .trimos-infobar__desc {
        font-size: 12px;
    }

    .trimos-why__grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .trimos-benefit-card {
        padding: 20px 16px;
    }

    .trimos-section-title h2 {
        font-size: 20px;
    }

    .trimos-speakers__grid {
        gap: 16px;
    }

    .trimos-agenda-col--speaker {
        padding-left: 0;
    }

    /* iOS safe area for contact bubble */
    .trimos-contact-bubble {
        bottom: max(24px, env(safe-area-inset-bottom, 24px));
        right: 16px;
    }
}


/* ============================================
   RESPONSIVE — Landscape Mobile
   ============================================ */
@media (max-width: 767px) and (orientation: landscape) {
    .trimos-hero {
        padding: 32px 0 80px;
        min-height: auto;
    }

    .trimos-hero__title {
        font-size: 32px;
    }

    .trimos-mobile-nav {
        padding-top: 80px;
    }

    .trimos-infobar {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        flex-direction: unset;
    }

    .trimos-infobar__item {
        flex-direction: column;
        text-align: center;
        padding: 16px 12px;
    }

    .trimos-infobar__item:not(:last-child) {
        border-bottom: none;
    }

    .trimos-infobar__icon {
        margin-bottom: 12px;
    }

    .trimos-infobar__text {
        text-align: center;
    }
}



/* ============================================
   CONTACT BUBBLE (STICKY)
   ============================================ */
.trimos-contact-bubble {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 9999;
    display: flex;
    flex-direction: column;
    gap: 12px;
    pointer-events: none;
}

.trimos-contact-item {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 12px;
    text-decoration: none;
    transition: all 0.3s ease;
    pointer-events: auto;
}

.trimos-contact-label {
    background-color: #0B2C5F;
    color: #FFFFFF;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
    opacity: 0;
    transform: translateX(20px);
    visibility: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    white-space: nowrap;
}

.trimos-contact-icon {
    width: 56px;
    height: 56px;
    background-color: #FFFFFF;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 1px solid #F1F5F9;
    padding: 12px;
}

.trimos-contact-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

/* Hover Effects */
.trimos-contact-item:hover .trimos-contact-label {
    opacity: 1;
    transform: translateX(0);
    visibility: visible;
}

.trimos-contact-item:hover .trimos-contact-icon {
    transform: scale(1.1) rotate(5deg);
    background-color: #F8FAFC;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

/* Specific styles for types */
.trimos-contact-item--hotline .trimos-contact-icon {
    border-color: #FF9900;
    background-color: #FFF7ED;
}

.trimos-contact-item--hotline .trimos-contact-label {
    background-color: #FF9900;
}

.trimos-contact-item--zalo .trimos-contact-icon {
    border-color: #0068ff;
}

.trimos-contact-item--messenger .trimos-contact-icon {
    border-color: #0068ff;
}

.trimos-contact-item--email .trimos-contact-icon {
    border-color: #0B2C5F;
}

/* Scroll to Top Specific */
.trimos-contact-item--scroll {
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    cursor: pointer;
    border: none;
    background: transparent;
    padding: 0;
    pointer-events: none;
}

.trimos-contact-item--scroll.is-visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    pointer-events: auto;
}

.trimos-contact-item--scroll .trimos-contact-icon {
    background-color: #0B2C5F;
    color: #FFFFFF;
    border-color: #0B2C5F;
}

.trimos-contact-item--scroll:hover .trimos-contact-icon {
    background-color: #FF9900;
    border-color: #FF9900;
    color: #FFFFFF;
}

/* Animation for the first item (Hotline) */
@keyframes trimos-pulse-orange {
    0% {
        box-shadow: 0 0 0 0 rgba(255, 153, 0, 0.5);
    }

    70% {
        box-shadow: 0 0 0 15px rgba(255, 153, 0, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(255, 153, 0, 0);
    }
}

.trimos-contact-item--hotline .trimos-contact-icon {
    animation: trimos-pulse-orange 2s infinite;
}

/* Responsive */
@media (max-width: 767px) {
    .trimos-contact-bubble {
        bottom: 24px;
        right: 16px;
        gap: 10px;
    }

    .trimos-contact-icon {
        width: 50px;
        height: 50px;
        padding: 11px;
    }

    .trimos-contact-label {
        display: none;
        /* Keep it clean on mobile */
    }
}

/* ==========================================================================
   FOOTER (4-COLUMN DARK THEME)
   ========================================================================== */
.trimos-footer {
    background-color: #0B2C5F;
    /* Darker navy to match Design 1 */
    color: #FFFFFF;
    padding: 80px 0 0 0;
}

.trimos-footer__grid {
    display: grid;
    grid-template-columns: 1.8fr 1fr 1fr 1fr;
    gap: 60px;
    /* Increased gap */
    margin-bottom: 80px;
    /* Increased bottom margin */
    align-items: start;
}

/* Col 1: Brand & Rep */
.trimos-footer__logo-ecom {
    height: 84px;
    width: auto;
    margin-bottom: 14px;
    filter: brightness(0) invert(1);
    display: block;
}

.trimos-footer__brand-desc {
    font-size: 13px;
    color: #A0AEC0;
    line-height: 1.7;
    max-width: 260px;
    margin-bottom: 24px;
}

.trimos-footer__divider {
    width: 100%;
    max-width: 260px;
    border: none;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    margin-bottom: 20px;
}

.trimos-footer__rep-title {
    font-size: 13px;
    /* As requested */
    font-weight: 700;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    color: #FFFFFF;
    /* Brighter */
    margin-bottom: 15px;
}

.trimos-footer__logo-trimos {
    height: 79px;
    width: auto;
    filter: brightness(0) invert(1);
    opacity: 1;
    /* More visible */
    margin-bottom: 10px;
    display: block;
}

.trimos-footer__rep-desc {
    font-size: 13px;
    /* As requested */
    color: #A0AEC0;
    /* Lighter gray */
    line-height: 1.6;
    margin: 0;
}

/* Col Titles */
.trimos-footer__title {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: #A0AEC0;
    margin-bottom: 18px;
}

/* Col 2: Navigation */
.trimos-footer__links {
    list-style: none !important;
    padding: 0 !important;
    margin: 0;
}

.trimos-footer__links li {
    margin-bottom: 14px !important;
}

.trimos-footer__links a {
    display: block;
    font-size: 15px;
    /* Slightly larger for readability */
    color: #CBD5E0;
    text-decoration: none;
    transition: all 0.2s;
}

.trimos-footer__links a:hover {
    color: #FFFFFF;
    transform: translateX(5px);
}

.trimos-footer__cta-link {
    color: #FF9900 !important;
    /* Orange from design */
    font-weight: 700;
    margin-top: 5px;
}

/* Col 3: Contact */
.trimos-footer__company {
    font-size: 12px;
    font-weight: 600;
    color: #E2E8F0;
    margin-bottom: 4px;
    line-height: 1.5;
}

.trimos-footer__address {
    font-size: 12px;
    color: #718096;
    line-height: 1.6;
    margin-bottom: 14px;
}

.trimos-footer__contact-item {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 12px;
    font-size: 14px;
    color: #E2E8F0;
    text-decoration: none;
    transition: color 0.2s;
}

.trimos-footer__contact-item:hover {
    color: #FFFFFF;
}

.trimos-footer__contact-item svg {
    flex-shrink: 0;
    opacity: 0.6;
}

/* Col 4: Social */
.trimos-footer__social-links {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.trimos-footer__social-link {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    /* Slightly more rounded */
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    text-decoration: none;
    color: #FFFFFF;
}

.trimos-footer__social-link:hover {
    background: #FFFFFF;
    color: #051224;
    transform: translateY(-5px) scale(1.05);
    border-color: #FFFFFF;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.trimos-footer__social-link svg {
    width: 20px;
    height: 20px;
    transition: transform 0.3s ease;
    fill: currentColor;
    /* Ensure SVG uses the link's color */
}

.trimos-footer__social-link:hover svg {
    transform: scale(1.1);
}

/* Specific brand colors on hover (Optional, but looks premium) */
.trimos-footer__social-link[title="Facebook"]:hover {
    background-color: #1877F2;
    color: #FFF;
    border-color: #1877F2;
}

.trimos-footer__social-link[title="LinkedIn"]:hover {
    background-color: #0A66C2;
    color: #FFF;
    border-color: #0A66C2;
}

.trimos-footer__social-link[title="YouTube"]:hover {
    background-color: #FF0000;
    color: #FFF;
    border-color: #FF0000;
}

.trimos-footer__social-link[title="Zalo"]:hover {
    background-color: #0068FF;
    color: #FFF;
    border-color: #0068FF;
}

.trimos-footer__social-link:hover svg,
.trimos-footer__social-link:hover img {
    transform: scale(1.1);
}

/* Bottom Bar */
.trimos-footer__bottom-line {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.trimos-footer__bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 0;
}

.trimos-footer__copyright {
    font-size: 12.5px;
    color: #718096;
}

.trimos-footer__copyright span {
    color: #A0AEC0;
}

.trimos-footer__lang-switcher {
    display: flex;
    gap: 10px;
    align-items: center;
}

.trimos-footer__lang-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: #A0AEC0;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 6px;
    padding: 6px 14px;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.trimos-footer__lang-item img {
    width: 16px;
    height: 12px;
    object-fit: cover;
    border-radius: 2px;
    filter: grayscale(1);
    opacity: 0.6;
}

.trimos-footer__lang-item.is-active,
.trimos-footer__lang-item:hover {
    background: rgba(255, 255, 255, 0.12);
    color: #FFFFFF;
    border-color: rgba(255, 255, 255, 0.25);
}

.trimos-footer__lang-item.is-active img,
.trimos-footer__lang-item:hover img {
    filter: none;
    opacity: 1;
}

/* Responsive */
@media (max-width: 1024px) {

    /* --- Footer --- */
    .trimos-footer__grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 30px;
        margin-bottom: 40px;
    }

    /* --- Speakers Tablet --- */
    .trimos-speakers__grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .trimos-speaker-card {
        flex-direction: row;
        align-items: stretch;
    }

    .trimos-speaker-card__top {
        width: 42%;
        border-bottom: none;
        padding: 20px;
        align-items: center;
    }

    .trimos-speaker-card__bottom {
        width: 58%;
        border-top: none;
        border-left: 1px solid #F1F5F9;
        display: flex;
        align-items: center;
        padding: 32px;
    }

    .trimos-speaker-card__details {
        width: 100%;
    }
}

@media (max-width: 767px) {
    .trimos-footer {
        padding: 50px 0 0 0;
    }

    .trimos-footer__grid {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: left;
        margin-bottom: 40px;
    }

    .trimos-footer__contact-item,
    .trimos-footer__social-links {
        justify-content: flex-start;
    }

    .trimos-footer__bottom {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }

    .trimos-footer__lang-switcher {
        justify-content: center;
        flex-wrap: wrap;
    }

    /* Speakers mobile reset */
    .trimos-speaker-card {
        flex-direction: column;
    }

    .trimos-speaker-card__top,
    .trimos-speaker-card__bottom {
        width: 100%;
        border-left: none;
        padding: 24px;
    }

    .trimos-speaker-card__top {
        border-bottom: 1px solid #F1F5F9;
        text-align: center;
        flex-direction: column;
        align-items: center;
    }
}

/* FAQ SECTION */
.trimos-faq {
    padding: 80px 0;
    background-color: #f8f9fa;
}

.trimos-faq__accordion {
    max-width: 850px;
    margin: 0 auto;
}

.trimos-faq__item {
    background: #fff;
    border-radius: 12px;
    margin-bottom: 16px;
    border: 1px solid #e5e7eb;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.trimos-faq__item.active {
    border-color: rgba(255, 153, 0, 0.3);
    box-shadow: 0 10px 30px rgba(11, 44, 95, 0.08);
}

.trimos-faq__question {
    padding: 18px 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    user-select: none;
}

.trimos-faq__question h3 {
    margin: 0;
    font-size: 1.15rem;
    color: #0B2C5F;
    font-weight: 600;
    padding-right: 20px;
}

.trimos-faq__icon {
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    color: #FF9900;
    flex-shrink: 0;
}

.trimos-faq__item.active .trimos-faq__icon {
    transform: rotate(180deg);
}

.trimos-faq__answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.trimos-faq__item.active .trimos-faq__answer {
    max-height: 1000px;
}

.trimos-faq__answer-inner {
    padding: 0 30px 24px 30px;
}

.trimos-faq__answer p {
    margin: 0;
    color: #4b5563;
    line-height: 1.7;
    font-size: 1.05rem;
}

.trimos-faq__cta {
    text-align: center;
    margin-top: 50px;
}

.trimos-faq__cta .trimos-btn {
    min-width: 320px;
    padding: 22px 50px;
    font-size: 1.25rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    background: linear-gradient(135deg, #FFB800 0%, #FF8A00 100%);
    color: #FFFFFF !important;
    box-shadow: 0 12px 30px rgba(255, 153, 0, 0.4);
    border-radius: 50px;
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.trimos-faq__cta .trimos-btn:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 15px 40px rgba(255, 153, 0, 0.5);
}

/* Shimmer effect */
.trimos-faq__cta .trimos-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 50%;
    height: 100%;
    background: linear-gradient(to right,
            rgba(255, 255, 255, 0) 0%,
            rgba(255, 255, 255, 0.3) 50%,
            rgba(255, 255, 255, 0) 100%);
    transform: skewX(-25deg);
    animation: trimos-shimmer 3s infinite;
}

@keyframes trimos-shimmer {
    0% {
        left: -150%;
    }

    30% {
        left: 150%;
    }

    100% {
        left: 150%;
    }
}

/* Pulse effect */
.trimos-faq__cta .trimos-btn::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50px;
    transform: translate(-50%, -50%) scale(1);
    opacity: 0;
    animation: trimos-pulse-ring 2s infinite;
}

@keyframes trimos-pulse-ring {
    0% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 0.5;
    }

    100% {
        transform: translate(-50%, -50%) scale(1.5);
        opacity: 0;
    }
}

@media (max-width: 768px) {
    .trimos-faq {
        padding: 60px 0;
    }

    .trimos-faq__question {
        padding: 18px 20px;
    }

    .trimos-faq__question h3 {
        font-size: 1.05rem;
    }

    .trimos-faq__answer-inner {
        padding: 0 20px 20px 20px;
    }

    .trimos-faq__answer p {
        font-size: 0.95rem;
    }

    .trimos-faq__cta .trimos-btn {
        width: 100%;
    }
}

/* ============================================
   VIDEO MODAL
   ============================================ */
.trimos-video-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.trimos-video-modal.is-open {
    opacity: 1;
    visibility: visible;
}

.trimos-video-modal__overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(240, 242, 245, 0.85);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}

.trimos-video-modal__container {
    position: relative;
    width: 90%;
    max-width: 1000px;
    background: #000;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 25px 50px -12px rgba(11, 44, 95, 0.25);
    transform: scale(0.9);
    transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.trimos-video-modal.is-open .trimos-video-modal__container {
    transform: scale(1);
}

.trimos-video-modal__close {
    position: absolute;
    top: 16px;
    right: 16px;
    width: 40px;
    height: 40px;
    background: rgba(11, 44, 95, 0.1);
    border: none;
    border-radius: 50%;
    color: #0B2C5F;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    transition: all 0.3s ease;
}

.trimos-video-modal__close:hover {
    background: #FF9900;
    color: #FFFFFF;
    transform: rotate(90deg);
}

.trimos-video-modal__video-wrapper {
    position: relative;
    padding-top: 56.25%;
    /* 16:9 Aspect Ratio */
    background: #000;
}

.trimos-video-modal__video-wrapper video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    outline: none;
}

/* Tablet & Mobile responsive */
@media (max-width: 991px) {
    .trimos-video-modal__container {
        width: 95%;
    }
}

@media (max-width: 767px) {
    .trimos-video-modal__close {
        top: 10px;
        right: 10px;
        width: 32px;
        height: 32px;
    }

    .trimos-video-modal__container {
        border-radius: 8px;
    }
}