.page-id-17575 #header {
    display: none;
}

.page-id-17575 #footer {
    display: none;
}

/* ─── HERO SECTION ─── */
.ldp_hero_section {
    position: relative;
    min-height: 100vh;
    padding: 7rem 0 5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

/* Background layers */
.ldp_hero_section .hero__bg {
    position: absolute;
    inset: 0;
    z-index: 0;
    background-image: url("/wp-content/uploads/2026/08/luxury_hero_banner.jpg");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    transform: scale(1.05);
    transition: all 1s ease;
}

.ldp_hero_section .hero__overlay-lr {
    position: absolute;
    inset: 0;
    z-index: 0;
    background: linear-gradient(to right, #050a30, rgba(5, 10, 48, 0.85), rgba(5, 10, 48, 0.65));
}

.ldp_hero_section .hero__overlay-tb {
    position: absolute;
    inset: 0;
    z-index: 0;
    background: linear-gradient(to bottom, rgba(5, 10, 48, 0.8), transparent, #050a30);
}

.ldp_hero_section .hero__overlay-radial {
    position: absolute;
    inset: 0;
    z-index: 0;
    background: radial-gradient(ellipse at top right, rgba(221, 51, 51, 0.25), transparent, transparent);
    pointer-events: none;
}

/* Inner container */
.ldp_hero_section .hero__inner {
    position: relative;
    z-index: 10;
    margin: 0 auto;
    width: 100%;
}

.ldp_hero_section .hero__grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    align-items: center;
}

@media (min-width: 1024px) {
    .ldp_hero_section .hero__grid {
        grid-template-columns: 7fr 4fr;
    }
}

/* ─── LEFT COLUMN ─── */
.ldp_hero_section .hero__left {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    text-align: center;
}

@media (min-width: 1024px) {
    .ldp_hero_section .hero__left {
        text-align: left;
    }
}

/* Badge */
.ldp_hero_section .badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.375rem 1rem;
    border-radius: 9999px;
    background: rgba(221, 51, 51, 0.2);
    border: 1px solid rgba(221, 51, 51, 0.5);
    color: #fca5a5;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    backdrop-filter: blur(12px);
    box-shadow: 0 4px 16px rgba(221, 51, 51, 0.1);
    align-self: center;
    width: fit-content;
}

@media (min-width: 1024px) {
    .ldp_hero_section .badge {
        align-self: flex-start;
    }
}

.ldp_hero_section .badge__icon {
    width: 14px;
    height: 14px;
    color: #dd3333;
    animation: spin 3s linear infinite;
    flex-shrink: 0;
}

/* Heading */
.ldp_hero_section .hero__heading {
    font-weight: 600;
    color: #f1f5f9;
    line-height: 1.15;
    font-size: clamp(1.875rem, 5vw, 48px);
    margin: 0;
}

.ldp_hero_section .hero__heading-gradient {
    background: linear-gradient(to right, #ff5555, #fcd34d, #fff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Subtitle */
.ldp_hero_section .hero__subtitle {
    font-style: italic;
    font-size: clamp(1rem, 2.5vw, 1.125rem);
    color: rgba(252, 211, 77, 0.95);
    letter-spacing: 0.05em;
    margin: 0;
    font-family: 'Philosopher';
}

/* Description */
.ldp_hero_section .hero__desc {
    color: #cbd5e1;
    font-size: clamp(0.9rem, 1.5vw, 0.96rem);
    line-height: 1.75;
    font-weight: 300;
    max-width: 42rem;
    margin: 0 auto;
}

@media (min-width: 1024px) {
    .ldp_hero_section .hero__desc {
        margin: 0;
    }
}

/* Buttons */
.ldp_hero_section .btn-group {
    padding-top: 0.5rem;
    display: ruby;

}

@media (min-width: 640px) {
    .ldp_hero_section .btn-group {
        flex-direction: row;
    }
}

@media (min-width: 1024px) {
    .ldp_hero_section .btn-group {
        justify-content: flex-start;
    }
}

.ldp_hero_section .btn-primary {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    padding: 1rem 2rem;
    background: #dd3333;
    color: #fff;
    font-weight: 600;
    font-size: 0.875rem;
    letter-spacing: 0.08em;
    border: none;
    border-radius: 0.75rem;
    box-shadow: 0 8px 24px rgba(221, 51, 51, 0.4);
    cursor: pointer;
    transition:
        filter 0.2s,
        transform 0.1s;
    margin-right: 15px;
}

.ldp_hero_section .btn-primary:hover {
    filter: brightness(1.1);
}

.ldp_hero_section .btn-primary:active {
    transform: scale(0.95);
}

.ldp_hero_section .btn-primary svg {
    transition: transform 0.2s;
}

.ldp_hero_section .btn-primary:hover .btn-arrow {
    transform: translateX(4px);
}

.ldp_hero_section .btn-primary:hover .btn-sparkle {
    transform: rotate(12deg);
}

.ldp_hero_section .btn-secondary {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    background: rgba(13, 21, 77, 0.9);
    color: #e2e8f0;
    border: 1px solid rgba(221, 51, 51, 0.5);
    border-radius: 0.75rem;
    font-weight: 500;
    font-size: 0.875rem;
    letter-spacing: 0.05em;
    cursor: pointer;
    backdrop-filter: blur(12px);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
    transition: background 0.2s;
    margin: 0;
}

.btn-secondary:hover {
    background: #141f6e;
}

@media (min-width: 640px) {

    .ldp_hero_section .btn-primary,
    .ldp_hero_section .btn-secondary {
        width: auto;
    }
}

/* Stats row */
.ldp_hero_section .hero__stats {
    padding-top: 1.5rem;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0rem;
    border-top: 1px solid rgba(30, 41, 59, 0.8);
    font-size: 14px;
    color: #cbd5e1;
}

.ldp_hero_section .stat {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    text-align: left;
}

@media (min-width: 640px) {
    .ldp_hero_section .stat {
        flex-direction: row;
        align-items: center;
        gap: 0.5rem;
    }
}

.ldp_hero_section .stat__rating {
    display: flex;
    align-items: center;
    gap: 0.25rem;
    color: #fde68a;
    font-weight: 600;
    font-size: 0.875rem;
}

.ldp_hero_section .stat__label {
    color: #94a3b8;
}

.ldp_hero_section .stat__icon-row {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

/* ─── RIGHT COLUMN – Card ─── */
.ldp_hero_section .hero__right {
    position: relative;
}

.ldp_hero_section .card {
    position: relative;
    margin: 0 auto;
    background: linear-gradient(to bottom, #0d154d, #050a30);
    padding: 1.25rem;
    border-radius: 1.5rem;
    border: 1px solid rgba(221, 51, 51, 0.5);
    box-shadow: 0 25px 60px rgba(221, 51, 51, 0.2);
}

/* Tab bar */
.ldp_hero_section .tabs {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 0.25rem;
    padding: 0.25rem;
    background: rgba(5, 10, 48, 0.9);
    border-radius: 1rem;
    border: 1px solid #1e293b;
    margin-bottom: 0.75rem;
    font-size: 11px;
}

@media (min-width: 640px) {
    .ldp_hero_section .tabs {
        font-size: 0.75rem;
    }
}

.ldp_hero_section .tab {
    padding: 6px;
    border-radius: 0.75rem;
    border: none;
    background: transparent;
    color: #94a3b8;
    font-weight: 500;
    cursor: pointer;
    text-align: center;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    transition:
        color 0.2s,
        background 0.2s;
    margin: 0;
}

.ldp_hero_section .tab:hover {
    color: #e2e8f0;
}

.ldp_hero_section .tab--active {
    background: #dd3333;
    color: #fff;
    font-weight: 600;
    box-shadow: 0 2px 8px rgba(221, 51, 51, 0.3);
}

/* Product image */
.ldp_hero_section .card__img-wrap {
    position: relative;
    aspect-ratio: 1 / 1;
    border-radius: 1rem;
    overflow: hidden;
    background: #050a30;
    border: 1px solid rgba(221, 51, 51, 0.4);
    box-shadow: inset 0 2px 12px rgba(0, 0, 0, 0.4);
}

.ldp_hero_section .card__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 0.7s ease;
}

.ldp_hero_section .card__img-wrap:hover .ldp_hero_section .card__img {
    transform: scale(1.05);
}

.ldp_hero_section .card__img-overlay-tb {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(5, 10, 48, 0.85) 0%, rgba(5, 10, 48, 0.2) 50%, transparent 100%);
}

.ldp_hero_section .card__img-overlay-radial {
    position: absolute;
    inset: 0;
    pointer-events: none;
    background: radial-gradient(circle at center, rgba(221, 51, 51, 0.25), transparent, transparent);
    animation: pulse 2.5s ease-in-out infinite;
}

/* Preview label */
.ldp_hero_section .card__preview {
    position: absolute;
    bottom: 2.5rem;
    left: 0;
    right: 0;
    padding: 0 1.5rem;
    text-align: center;
}

.ldp_hero_section .card__preview-inner {
    display: inline-block;
    padding: 0.625rem 1.25rem;
    border-radius: 0.75rem;
    background: rgba(5, 10, 48, 0.9);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(221, 51, 51, 0.5);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.5);
}

.ldp_hero_section .card__preview-label {
    display: block;
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: #ff6666;
    font-weight: 600;
    margin-bottom: 2px;
}

.ldp_hero_section .card__preview-name {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.25rem;
    font-size: clamp(1.25rem, 3vw, 1.5rem);
    color: #fcd34d;
    letter-spacing: 0.05em;
    font-weight: 600;
}

.ldp_hero_section .card__cursor {
    display: inline-block;
    width: 6px;
    height: 1.25rem;
    background: #dd3333;
    animation: pulse 1.2s ease-in-out infinite;
}

/* Live badge */
.ldp_hero_section .card__live-badge {
    position: absolute;
    top: 0.75rem;
    left: 0.75rem;
    display: flex;
    align-items: center;
    gap: 0.375rem;
    padding: 0.25rem 0.75rem;
    background: rgba(5, 10, 48, 0.85);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(221, 51, 51, 0.5);
    border-radius: 9999px;
    font-size: 10px;
    font-weight: 600;
    color: #fca5a5;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.ldp_hero_section .card__live-icon {
    width: 12px;
    height: 12px;
    color: #dd3333;
    animation: spin 2s linear infinite;
}

/* Name chips */
.ldp_hero_section .card__chips-section {
    margin-top: 1rem;
    padding-top: 0.75rem;
    border-top: 0px solid #1e293b;
}

.ldp_hero_section .card__chips-label {
    font-size: 11px;
    color: #94a3b8;
    text-align: center;
    font-weight: 500;
    margin-bottom: 0.5rem;
}

.ldp_hero_section .card__chips {
    display: flex;
    gap: 10px;
    justify-content: center;
}

.ldp_hero_section .chip {
    padding: 0.25rem 0.625rem;
    border-radius: 0.5rem;
    font-size: 9px;
    border: 1px solid;
    background: rgba(5, 10, 48, 0.8);
    border-color: #1e293b;
    color: #cbd5e1;
    cursor: pointer;
    transition:
        border-color 0.2s,
        color 0.2s;
    margin: 0;
}

.ldp_hero_section .chip:hover {
    border-color: #475569;
}

.ldp_hero_section .chip--active {
    background: rgba(221, 51, 51, 0.2);
    border-color: #dd3333;
    color: #fecaca;
    font-weight: 600;
}

/* ─── ANIMATIONS ─── */
@keyframes spin {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

@keyframes pulse {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0.5;
    }
}

@media (prefers-reduced-motion: reduce) {

    .ldp_hero_section .badge__icon,
    .ldp_hero_section .card__live-icon {
        animation: none;
    }

    .ldp_hero_section .card__img {
        transition: none;
    }
}

/* ─── TAB PROGRESS BAR ─── */
.ldp_hero_section .tab-progress {
    height: 2px;
    background: rgba(221, 51, 51, 0.15);
    border-radius: 2px;
    margin-bottom: 0.5rem;
    overflow: hidden;
}

.ldp_hero_section .tab-progress__bar {
    height: 100%;
    width: 0%;
    background: linear-gradient(to right, #dd3333, #ff6666);
    border-radius: 2px;
    transition: width 0.05s linear;
}

/* Image fade transition */
.ldp_hero_section .card__img {
    transition:
        opacity 0.4s ease,
        transform 0.7s ease;
}

.ldp_hero_section .card__img.is-fading {
    opacity: 0;
    transform: scale(1.03);
}

/* Preview name typewriter fade */
#previewName {
    transition: opacity 0.3s ease;
}

#previewName.is-hidden {
    opacity: 0;
}

/**/
#why-us,
#why-us * {
    box-sizing: border-box;
}

#why-us {
    position: relative;
    overflow: hidden;
    padding: 80px 0;
    border-top: 0px solid #1e293b;
    background: #050a30;
    color: #ffffff;
}

#why-us::before {
    position: absolute;
    top: 25%;
    left: 50%;
    width: 800px;
    height: 400px;
    border-radius: 50%;
    background: radial-gradient(ellipse at center, rgba(221, 51, 51, 0.1) 0%, rgba(221, 51, 51, 0) 70%);
    content: "";
    filter: blur(64px);
    pointer-events: none;
    transform: translateX(-50%);
}

#why-us::after {
    position: absolute;
    right: 0;
    bottom: -40px;
    width: 384px;
    height: 384px;
    border-radius: 50%;
    background: rgba(13, 21, 77, 0.5);
    content: "";
    filter: blur(64px);
    pointer-events: none;
}

#why-us .why-us__container {
    position: relative;
    z-index: 1;
}

#why-us .why-us__heading {
    max-width: 768px;
    margin: 0 auto 30px;
    text-align: center;
}

#why-us .why-us__eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 16px;
    padding: 6px 16px;
    border: 1px solid rgba(221, 51, 51, 0.4);
    border-radius: 999px;
    background: rgba(221, 51, 51, 0.15);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    color: #fca5a5;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.1em;
    line-height: 1.5;
    text-transform: uppercase;
    backdrop-filter: blur(12px);
}

#why-us .why-us__eyebrow-icon {
    width: 16px;
    height: 16px;
    color: #dd3333;
    animation: why-us-spin 6s linear infinite;
}

#why-us .why-us__title,
#why-us .why-us__card-title,
#why-us .why-us__standard-title,
#why-us .why-us__stat-value {
    font-family: 'Philosopher';

}

#why-us .why-us__title {
    margin: 16px 0 16px;
    color: #f1f5f9;
    font-size: 40px;
    font-weight: 600;
    line-height: 1.15;
}

#why-us .why-us__title-highlight {
    background: linear-gradient(90deg, #ff5555 0%, #fcd34d 50%, #ffffff 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

#why-us .why-us__intro {
    margin: 0;
    color: #cbd5e1;
    font-size: 16px;
    font-weight: 300;
    line-height: 1.65;
}

#why-us .why-us__stats {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    margin-bottom: 64px;
    padding: 24px;
    border: 1px solid rgba(221, 51, 51, 0.3);
    border-radius: 16px;
    background: linear-gradient(90deg, rgba(13, 21, 77, 0.9) 0%, #050a30 50%, rgba(13, 21, 77, 0.9) 100%);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.35);
    backdrop-filter: blur(12px);
}

#why-us .why-us__stat {
    padding: 12px;
    border-right: 1px solid rgba(30, 41, 59, 0.8);
    text-align: center;
}

#why-us .why-us__stat:last-child {
    border-right: 0;
}

#why-us .why-us__stat-value {
    display: block;
    margin-bottom: 4px;
    color: #fcd34d;
    font-size: 30px;
    font-weight: 600;
    letter-spacing: -0.025em;
}

#why-us .why-us__stat-label {
    margin: 0 0 4px;
    color: #e2e8f0;
    font-size: 16px;
    font-weight: 500;
    letter-spacing: 0.025em;
    line-height: 1.4;
    text-transform: capitalize;
}

#why-us .why-us__stat-note {
    margin: 0;
    color: #94a3b8;
    font-size: 11px;
    font-weight: 300;
    line-height: 1.5;
}

#why-us .why-us__tabs {
    display: flex;
    justify-content: center;
    margin-bottom: 48px;
}

#why-us .why-us__tab-list {
    display: inline-flex;
    gap: 8px;
    padding: 6px;
    border: 1px solid #1e293b;
    border-radius: 16px;
    background: rgb(13 21 77 / 5%);
}

#why-us .why-us__tab {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 24px;
    border: 0;
    border-radius: 12px;
    background: transparent;
    color: #cbd5e1;
    cursor: pointer;
    font: inherit;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.05em;
    line-height: 1.4;
    text-transform: uppercase;
    transition: color 0.25s ease, background-color 0.25s ease, box-shadow 0.25s ease;
    margin: 0;
}

#why-us .why-us__tab:hover,
#why-us .why-us__tab:focus-visible {
    color: #ffffff;
}

#why-us .why-us__tab:focus-visible,
#why-us .why-us__cta:focus-visible {
    outline: 2px solid #fcd34d;
    outline-offset: 3px;
}

#why-us .why-us__tab.is-active {
    background: #dd3333;
    box-shadow: 0 10px 20px rgba(221, 51, 51, 0.3);
    color: #ffffff;
}

#why-us .why-us__tab-icon {
    width: 16px;
    height: 16px;
}

#why-us .why-us__tab-icon.is-green {
    color: #34d399;
}

#why-us .why-us__panel[hidden] {
    display: none;
}

#why-us .why-us__grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 32px;
}

#why-us .why-us__card {
    position: relative;
    display: flex;
    visibility: visible;
    opacity: 1;
    min-width: 0;
    flex-direction: column;
    justify-content: space-between;
    overflow: hidden;
    padding: 32px;
    border: 1px solid #1e293b;
    border-radius: 16px;
    background: rgb(13 21 77 / 5%);
    cursor: pointer;
    transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

#why-us .why-us__card:hover {
    border-color: rgba(221, 51, 51, 0.5);
    transform: translateY(-4px);
}

#why-us .why-us__card.is-featured {
    border-color: #dd3333;
    background: linear-gradient(180deg, rgb(13 21 77 / 5%) 0%, #050a30 100%);
    box-shadow: 0 25px 50px rgba(221, 51, 51, 0.2);
}

#why-us .why-us__card-top {
    display: flex;
    visibility: visible;
    opacity: 1;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 24px;
}

#why-us .why-us__card-icon {
    display: flex;
    width: 48px;
    height: 48px;
    flex: 0 0 48px;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(221, 51, 51, 0.4);
    border-radius: 16px;
    background: rgba(221, 51, 51, 0.15);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    color: #dd3333;
    transition: color 0.3s ease, background-color 0.3s ease;
}

#why-us .why-us__card:hover .why-us__card-icon {
    background: #dd3333;
    color: #ffffff;
}

#why-us .why-us__card-icon svg {
    width: 24px;
    height: 24px;
}

#why-us .why-us__card-badge {
    padding: 10px 12px;
    border: 1px solid #1e293b;
    border-radius: 999px;
    background: #050a30;
    color: rgba(252, 211, 77, 0.9);
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 0.05em;
    line-height: 1.4;
    text-align: center;
    text-transform: uppercase;
}

#why-us .why-us__card-title {
    display: block;
    visibility: visible;
    opacity: 1;
    margin: 0 0 12px;
    color: #f1f5f9;
    font-size: 20px;
    font-weight: 600;
    line-height: 1.3;
    transition: color 0.3s ease;
}

#why-us .why-us__card:hover .why-us__card-title {
    color: #fca5a5;
}

#why-us .why-us__card-subtitle {
    display: block;
    visibility: visible;
    opacity: 1;
    margin: 0 0 12px;
    color: rgba(248, 113, 113, 0.9);
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.05em;
    line-height: 1.5;
    text-transform: capitalize;
}

#why-us .why-us__card-description {
    display: block;
    visibility: visible;
    opacity: 1;
    margin: 0;
    color: #e2e8f0;
    font-size: 14px;
    font-weight: 500;
    line-height: 1.65;
}

#why-us .why-us__features {
    display: block;
    visibility: visible;
    opacity: 1;
    margin: 16px 0 0;
    padding: 16px 0 0;
    border-top: 1px solid rgba(30, 41, 59, 0.8);
    list-style: none;
}

#why-us .why-us__feature {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    margin-bottom: 10px;
    color: #e2e8f0;
    font-size: 14px;
    line-height: 1.5;
}

#why-us .why-us__feature:last-child {
    margin-bottom: 0;
}

#why-us .why-us__feature-icon {
    display: flex;
    width: 16px;
    height: 16px;
    flex: 0 0 16px;
    align-items: center;
    justify-content: center;
    margin-top: 2px;
    border-radius: 50%;
    background: rgba(221, 51, 51, 0.2);
    color: #dd3333;
}

#why-us .why-us__feature-icon svg {
    width: 10px;
    height: 10px;
    stroke-width: 3;
}

#why-us .why-us__standard {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    margin-top: 48px;
    padding: 24px 32px;
    border: 1px solid rgba(221, 51, 51, 0.4);
    border-radius: 16px;
    background: linear-gradient(90deg, #0d154d 0%, #050a30 50%, #0d154d 100%);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.35);
}

#why-us .why-us__cta {
    display: inline-flex;
    flex: 0 0 auto;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    border-radius: 12px;
    background: #dd3333;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.25);
    color: #ffffff;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.05em;
    line-height: 1.5;
    text-decoration: none;
    text-transform: uppercase;
    transition: background-color 0.25s ease, transform 0.15s ease;
}

#why-us .why-us__cta:hover {
    background: #b82222;
}

#why-us .why-us__cta:active {
    transform: scale(0.95);
}

#why-us .why-us__cta svg {
    width: 16px;
    height: 16px;
}

#why-us .why-us__comparison {
    overflow: hidden;
    border: 1px solid rgba(221, 51, 51, 0.3);
    border-radius: 16px;
    background: rgba(13, 21, 77, 0.9);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.35);
    backdrop-filter: blur(12px);
}

#why-us .why-us__comparison-header {
    padding: 24px;
    border-bottom: 1px solid #1e293b;
    background: #050a30;
    text-align: center;
}

#why-us .why-us__comparison-title {
    margin: 0 0 4px;
    color: #fde68a;
    font-size: 20px;
    font-weight: 600;
}

#why-us .why-us__comparison-intro {
    margin: 0;
    color: #94a3b8;
    font-size: 15px;
    font-weight: 500;
    line-height: 1.6;
}

#why-us .why-us__table-wrap {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}

#why-us .why-us__table {
    width: 100%;
    min-width: 760px;
    border-collapse: collapse;
    color: #e2e8f0;
    font-size: 12px;
    line-height: 1.55;
    text-align: left;
    margin: 0;
}

#why-us .why-us__table th,
#why-us .why-us__table td {
    padding: 20px;
    vertical-align: top;
    font-size: 14px;
}

#why-us .why-us__table thead tr {
    border-bottom: 1px solid #1e293b;
    background: rgba(13, 21, 77, 0.6);
}

#why-us .why-us__table th {
    color: #cbd5e1;
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

#why-us .why-us__table th:first-child {
    width: 25%;
}

#why-us .why-us__table th:nth-child(2),
#why-us .why-us__table th:nth-child(3) {
    width: 37.5%;
}

#why-us .why-us__table th:nth-child(2) {
    border-right: 1px solid rgba(221, 51, 51, 0.2);
    border-left: 1px solid rgba(221, 51, 51, 0.2);
    background: rgba(221, 51, 51, 0.1);
    color: #fca5a5;
}

#why-us .why-us__table th:nth-child(3) {
    color: #94a3b8;
}

#why-us .why-us__table tbody tr {
    border-bottom: 1px solid #1e293b;
    transition: background-color 0.25s ease;
}

#why-us .why-us__table tbody tr:last-child {
    border-bottom: 0;
}

#why-us .why-us__table tbody tr:hover {
    background: rgba(15, 23, 42, 0.5);
}

#why-us .why-us__table td:first-child {
    color: rgba(253, 230, 138, 0.9);
    font-size: 16px;
    font-weight: 600;
}

#why-us .why-us__table td:nth-child(2) {
    border-right: 1px solid rgba(221, 51, 51, 0.2);
    border-left: 1px solid rgba(221, 51, 51, 0.2);
    background: rgba(221, 51, 51, 0.05);
    color: #fff;
    font-weight: 500;
    font-size: 14px;
}

#why-us .why-us__table td:nth-child(3) {
    color: #fff;
    font-weight: 500;
    font-size: 14px;
}

#why-us .why-us__table-heading,
#why-us .why-us__table-value {
    display: flex;
    align-items: flex-start;
    gap: 8px;
}

#why-us .why-us__table-heading {
    align-items: center;
}

#why-us .why-us__table-icon {
    width: 16px;
    height: 16px;
    flex: 0 0 16px;
    margin-top: 2px;
}

#why-us .why-us__table-heading .why-us__table-icon {
    margin-top: 0;
    color: #dd3333;
}

#why-us .why-us__table-icon.is-positive {
    color: #34d399;
}

#why-us .why-us__table-icon.is-negative {
    color: rgba(244, 63, 94, 0.8);
}

#why-us .why-us__comparison-footer {
    padding: 24px;
    border-top: 1px solid #1e293b;
    background: #050a30;
    text-align: center;
}

#why-us .why-us__comparison-note {
    margin: 0 0 16px;
    color: #cbd5e1;
    font-size: 16px;
    font-weight: 500;
    line-height: 1.6;
}

#why-us .why-us__comparison-cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 32px;
    border-radius: 12px;
    background: linear-gradient(90deg, #dd3333 0%, #b82222 100%);
    box-shadow: 0 10px 25px rgba(221, 51, 51, 0.3);
    color: #ffffff;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.05em;
    line-height: 1.5;
    text-decoration: none;
    text-transform: uppercase;
    transition: filter 0.25s ease, transform 0.15s ease;
}

#why-us .why-us__comparison-cta:hover {
    filter: brightness(1.1);
}

#why-us .why-us__comparison-cta:active {
    transform: scale(0.95);
}

#why-us .why-us__comparison-cta:focus-visible {
    outline: 2px solid #fcd34d;
    outline-offset: 3px;
}

#why-us .why-us__comparison-cta svg {
    width: 16px;
    height: 16px;
}

#why-us svg {
    display: block;
    fill: none;
    stroke: currentColor;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-width: 2;
}

@keyframes why-us-spin {
    to {
        transform: rotate(360deg);
    }
}

@media (max-width: 1023px) {
    #why-us .why-us__grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 767px) {
    #why-us {
        padding: 72px 0;
    }

    #why-us .why-us__heading,
    #why-us .why-us__stats {
        margin-bottom: 48px;
    }

    #why-us .why-us__title {
        font-size: 36px;
    }

    #why-us .why-us__intro {
        font-size: 16px;
    }

    #why-us .why-us__stats {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        padding: 16px;
    }

    #why-us .why-us__stat:nth-child(2) {
        border-right: 0;
    }

    #why-us .why-us__stat:nth-child(-n+2) {
        border-bottom: 1px solid rgba(30, 41, 59, 0.8);
    }

    #why-us .why-us__tab-list {
        width: 100%;
    }

    #why-us .why-us__tab {
        flex: 1 1 50%;
        justify-content: center;
        padding: 10px 12px;
    }

    #why-us .why-us__grid {
        grid-template-columns: 1fr;
    }

    #why-us .why-us__standard {
        flex-direction: column;
        padding: 24px;
        text-align: center;
    }

    #why-us .why-us__comparison-header,
    #why-us .why-us__comparison-footer {
        padding: 20px;
    }

    #why-us .why-us__table th,
    #why-us .why-us__table td {
        padding: 16px;
    }
}

@media (max-width: 479px) {
    #why-us .why-us__eyebrow {
        font-size: 10px;
    }

    #why-us .why-us__title {
        font-size: 30px;
    }

    #why-us .why-us__stat-value {
        font-size: 24px;
    }

    #why-us .why-us__stat-note {
        display: none;
    }

    #why-us .why-us__tab {
        font-size: 10px;
    }

    #why-us .why-us__card {
        padding: 24px;
    }

    #why-us .why-us__card-top {
        align-items: flex-start;
    }

    #why-us .why-us__comparison-cta {
        width: 100%;
        justify-content: center;
        padding: 13px 18px;
    }
}

@media (prefers-reduced-motion: reduce) {
    #why-us .why-us__eyebrow-icon {
        animation: none;
    }

    #why-us .why-us__card,
    #why-us .why-us__card-icon,
    #why-us .why-us__card-title,
    #why-us .why-us__tab,
    #why-us .why-us__cta {
        transition: none;
    }
}

/* css page Ladipage */
.svg-library {
    position: absolute;
    width: 0;
    height: 0;
    overflow: hidden;
}

.page-id-17575 .categories-section {
    background: #050a30;
    padding: 0;
    border-bottom: unset;
}

.category-filters .filter-button {
    margin: 0;
}

.container {
    width: min(100% - 32px, 1280px);
    margin: 0 auto;
}

.section-heading {
    max-width: 768px;
    margin: 0 auto 40px;
    text-align: center;
}

.eyebrow {
    display: inline-block;
    padding: 5px 12px;
    border: 1px solid rgba(221, 51, 51, 0.3);
    border-radius: 999px;
    background: rgba(221, 51, 51, 0.15);
    color: #fca5a5;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.14em;
    line-height: 1.4;
    text-transform: uppercase;
}

.section-heading h1 {
    margin: 16px 0 12px;
    color: #f1f5f9;
    font-size: clamp(30px, 4vw, 40px);
    line-height: 1.15;
}

.section-heading p {
    margin: 0;
    color: #94a3b8;
    font-size: 16px;
    font-weight: 300;
    line-height: 1.65;
}

.filter-panel {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 14px;
    padding: 10px;
    border: 1px solid #1e293b;
    border-radius: 16px;
    background: rgb(13 21 77 / 5%);
}

.category-filters {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.filter-button {
    padding: 3px 14px;
    border: 0px solid #1e293b;
    border-radius: 12px;
    background: #050a30;
    color: #cbd5e1;
    cursor: pointer;
    font-size: 14px;
    font-weight: 600;
    transition: color 180ms ease, border-color 180ms ease, background 180ms ease, transform 180ms ease;
}

.filter-button:hover {
    border-color: #475569;
    color: #ffffff;
    transform: translateY(-1px);
}

.filter-button:focus-visible,
.personalize-button:focus-visible,
#budget:focus-visible {
    outline: 3px solid rgba(251, 191, 36, 0.7);
    outline-offset: 3px;
}

.filter-button.is-active {
    border-color: transparent;
    background: linear-gradient(90deg, #dd3333, #b82222);
    color: #ffffff;
    box-shadow: 0 5px 14px rgba(0, 0, 0, 0.26);
}

.budget-filter {
    display: flex;
    flex: 0 0 auto;
    align-items: center;
    gap: 12px;
    padding: 9px 16px;
    border: 1px solid #1e293b;
    border-radius: 12px;
    background: #050a30;
}

.filter-icon {
    width: 16px;
    height: 16px;
    fill: none;
    stroke: #dd3333;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.budget-filter label {
    color: #94a3b8;
    font-size: 14px;
    margin: 0;
}

#budget {
    width: 128px;
    cursor: pointer;
    accent-color: #dd3333;
    margin: 0;
}

#budget-value {
    min-width: 83px;
    color: #fcd34d;
    font-size: 14px;
    font-weight: 600;
    text-align: right;
}

.product-count {
    margin: 0 0 18px;
    color: #94a3b8;
    font-size: 14px;
    text-align: right;
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 24px;
}

.categories-section .product-card {
    display: flex;
    min-width: 0;
    overflow: hidden;
    flex-direction: column;
    border: 1px solid #1e293b66;
    border-radius: 16px;
    background: rgb(13 21 77 / 5%);
    box-shadow: 0 10px 18px rgba(0, 0, 0, 0.2);
    transition: transform 300ms ease, border-color 300ms ease, box-shadow 300ms ease;
}

.product-card:hover {
    border-color: rgba(221, 51, 51, 0.5);
    box-shadow: 0 20px 35px rgba(221, 51, 51, 0.15);
    transform: translateY(-6px);
}

.product-card[hidden] {
    display: none;
}

.product-image-wrap {
    position: relative;
    overflow: hidden;
    aspect-ratio: 1 / 1;
    background: #050a30;
}

.product-image-wrap img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 500ms ease;
}

.product-card:hover .product-image-wrap img {
    transform: scale(1.05);
}

.image-shade {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(5, 10, 48, 0.82), transparent 60%);
    opacity: 0.62;
    pointer-events: none;
    transition: opacity 300ms ease;
}

.product-card:hover .image-shade {
    opacity: 0.4;
}

.product-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    max-width: calc(100% - 100px);
    padding: 5px 12px;
    overflow: hidden;
    border-radius: 999px;
    background: #dd3333;
    box-shadow: 0 4px 9px rgba(0, 0, 0, 0.25);
    color: #ffffff;
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-overflow: ellipsis;
    text-transform: uppercase;
    white-space: nowrap;
}

.product-rating {
    position: absolute;
    top: 12px;
    right: 12px;
    display: flex;
    align-items: center;
    gap: 4px;
    padding: 5px 10px;
    border: 1px solid rgba(221, 51, 51, 0.3);
    border-radius: 999px;
    background: rgba(5, 10, 48, 0.84);
    color: #fcd34d;
    font-size: 11px;
    font-weight: 600;
    backdrop-filter: blur(8px);
}

.product-rating svg {
    width: 12px;
    height: 12px;
    fill: #fde68a;
    stroke: #fde68a;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.product-content {
    display: flex;
    flex: 1;
    flex-direction: column;
    justify-content: space-between;
    gap: 12px;
    padding: 20px;
}

.product-content h2 {
    display: -webkit-box;
    margin: 0 0 0px;
    overflow: hidden;
    color: #f1f5f9;
    font-size: 16px;
    line-height: 1.35;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 1;
    transition: color 200ms ease;
}

.product-card:hover .product-content h2 {
    color: #fca5a5;
}

.product-content p {
    display: -webkit-box;
    margin: 0;
    overflow: hidden;
    color: #94a3b8;
    font-size: 12px;
    font-weight: 300;
    line-height: 1.55;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    display: none;
}

.product-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding-top: 0px;
    border-top: 0px solid #1e293b;
}

.price-block {
    min-width: 0;
}

.price-block>span {
    display: block;
    margin-bottom: 3px;
    color: #94a3b8;
    font-size: 10px;
}

.price-block>div {
    display: flex;
    align-items: baseline;
    gap: 0px;
    white-space: nowrap;
}

.price-block strong {
    color: #fcd34d;
    font-size: 16px;
}

.price-block del {
    color: #64748b;
    font-size: 12px;
}

.personalize-button {
    display: flex;
    flex: 0 0 auto;
    align-items: center;
    gap: 5px;
    padding: 8px 14px;
    border-radius: 6px;
    background: linear-gradient(90deg, #dd3333, #b82222);
    box-shadow: 0 5px 12px rgba(0, 0, 0, 0.22);
    color: #ffffff;
    cursor: pointer;
    font-size: 12px;
    font-weight: 600;
    transition: filter 180ms ease, transform 120ms ease, box-shadow 180ms ease;
    margin: 0;
}

.personalize-button:hover {
    filter: brightness(1.12);
    box-shadow: 0 8px 16px rgba(221, 51, 51, 0.3);
}

.personalize-button:active {
    transform: scale(0.95);
}

.personalize-button svg {
    width: 14px;
    height: 14px;
    fill: none;
    stroke: currentColor;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.empty-message {
    margin: 36px 0 0;
    padding: 32px 20px;
    border: 1px dashed #475569;
    border-radius: 16px;
    color: #cbd5e1;
    text-align: center;
}

.notification {
    position: fixed;
    right: 24px;
    bottom: 24px;
    z-index: 10;
    max-width: min(360px, calc(100% - 48px));
    padding: 13px 16px;
    border: 1px solid rgba(252, 211, 77, 0.35);
    border-radius: 12px;
    background: #0d154d;
    box-shadow: 0 14px 35px rgba(0, 0, 0, 0.35);
    color: #f8fafc;
    font-size: 13px;
    line-height: 1.45;
    opacity: 0;
    pointer-events: none;
    transform: translateY(16px);
    transition: opacity 200ms ease, transform 200ms ease;
}

.notification.is-visible {
    opacity: 1;
    transform: translateY(0);
}

@media (max-width: 1100px) {
    .filter-panel {
        align-items: stretch;
        flex-direction: column;
    }

    .budget-filter {
        align-self: flex-end;
    }

    .product-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

@media (max-width: 820px) {
    .product-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 620px) {
    .categories-section {}

    .container {
        width: min(100% - 24px, 1280px);
    }

    .section-heading {
        margin-bottom: 32px;
    }

    .section-heading p {
        font-size: 14px;
    }

    .filter-panel {
        padding: 12px;
    }

    .category-filters {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .filter-button:first-child {
        grid-column: 1 / -1;
    }

    .filter-button {
        min-height: 42px;
    }

    .budget-filter {
        display: grid;
        width: 100%;
        grid-template-columns: auto 1fr auto;
        gap: 8px;
    }

    .budget-filter label {
        grid-column: 2;
    }

    #budget {
        width: 100%;
        grid-column: 1 / 3;
    }

    #budget-value {
        grid-column: 3;
    }

    .product-grid {
        grid-template-columns: 1fr;
    }

    .product-count {
        text-align: left;
    }

    .product-content h2 {
        -webkit-line-clamp: 2;
    }

    .notification {
        right: 12px;
        bottom: 12px;
        max-width: calc(100% - 24px);
    }
}

@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }

    *,
    *::before,
    *::after {
        transition-duration: 0.01ms !important;
    }
}


.pr_ldp_name div {
    display: flex;
    flex-direction: column;
}

/* css section customize */
/* ── Reset cục bộ ── */
.customizer-section *,
.customizer-section *::before,
.customizer-section *::after {
    box-sizing: border-box;
}

/* ── Scrollbar hide ── */
.customizer-section .no-scrollbar::-webkit-scrollbar {
    display: none;
}

.customizer-section .no-scrollbar {
    -ms-overflow-style: none;
    scrollbar-width: none;
}

/* ── Keyframes (global scope, cannot be nested) ── */
@keyframes cs-spin {
    to {
        transform: rotate(360deg);
    }
}

@keyframes cs-bounce {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-3px);
    }
}

/* ── Section ── */
.customizer-section {
    padding: 56px 0;
    background: #050a30;
    color: #fff;
    position: relative;
    width: 100%;
}

@media (min-width: 640px) {
    .customizer-section {
        padding: 80px 0;
    }
}

@media (min-width: 1024px) {
    .customizer-section {
        padding: 96px 0;
    }
}

/* ── Inner wrapper ── */
.customizer-section .customizer-inner {}

/* ── Header ── */
.customizer-section .section-header {
    text-align: center;
    margin: 0 auto 30px;
}

.tms-modal form {
    margin: 0;
}

.customizer-section .badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 16px;
    border-radius: 9999px;
    background: rgba(221, 51, 51, 0.15);
    border: 1px solid rgba(221, 51, 51, 0.4);
    color: #fca5a5;
    font-size: 11px;
    font-weight: 600;
    text-transform: capitalize;
    letter-spacing: 0.1em;
    margin-bottom: 16px;
    width: fit-content;
}

@media (min-width: 640px) {
    .customizer-section .badge {
        font-size: 13px;
    }
}

.customizer-section .badge-icon {
    width: 16px;
    height: 16px;
    color: #dd3333;
    animation: cs-spin 3s linear infinite;
    flex-shrink: 0;
}

.customizer-section .section-title {
    font-family: Philosopher, serif;
    font-size: 40px;
    font-weight: 600;
    color: #f1f5f9;
    line-height: 1.25;
    margin-bottom: 12px;
}

@media (min-width: 640px) {
    .customizer-section .section-title {
        font-size: 36px;
    }
}

.customizer-section .section-desc {
    color: #cbd5e1;
    font-size: clamp(0.9rem, 1.5vw, 0.96rem);
    font-weight: 300;
    line-height: 1.7;
}

/* ── Grid ── */
.customizer-section .customizer-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
    align-items: start;
}

@media (min-width: 1024px) {
    .customizer-section .customizer-grid {
        grid-template-columns: 7fr 5fr;
        gap: 32px;
    }
}

/* ── Left panel ── */
.customizer-section .left-panel {
    background: rgba(13, 21, 77, 0.9);
    border: 1px solid rgba(221, 51, 51, 0.4);
    border-radius: 16px;
    padding: 14px;
    position: sticky;
    top: 64px;
    z-index: 20;
    backdrop-filter: blur(12px);
}

@media (min-width: 640px) {
    .customizer-section .left-panel {
        border-radius: 16px;
        padding: 24px;
    }
}

@media (min-width: 1024px) {
    .customizer-section .left-panel {
        padding: 32px;
        top: 112px;
    }
}

/* ── Product label ── */
.customizer-section .product-label {
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: #f87171;
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 8px;
}

.customizer-section .product-label-hint {
    font-size: 10px;
    color: #94a3b8;
    font-weight: 400;
    display: none;
}

@media (max-width: 639px) {
    .customizer-section .product-label-hint {
        display: inline;
    }
}

/* ── Product tabs ── */
.customizer-section .product-tabs {
    display: flex;
    overflow-x: auto;
    gap: 8px;
    padding-bottom: 8px;
    scroll-snap-type: x mandatory;
    margin-bottom: 16px;
}

@media (min-width: 640px) {
    .customizer-section .product-tabs {
        display: grid;
        grid-template-columns: repeat(6, 1fr);
        overflow-x: visible;
        padding-bottom: 0;
    }
}

.customizer-section .product-tab {
    flex-shrink: 0;
    width: 96px;
    padding: 8px;
    border-radius: 12px;
    border: 1px solid #1e293b;
    cursor: pointer;
    text-align: center;
    font-size: 11px;
    font-weight: 500;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    scroll-snap-align: start;
    transition: all 0.15s;
    background: rgba(5, 10, 48, 0.8);
    color: #cbd5e1;
    line-height: 1.3;
    gap: 4px;
    margin: 0;
}

@media (min-width: 640px) {
    .customizer-section .product-tab {
        width: auto;
    }
}

.customizer-section .product-tab:active {
    transform: scale(0.95);
}

.customizer-section .product-tab.active {
    background: #dd3333;
    color: #fff;
    border-color: #f87171;
    font-weight: 600;
    box-shadow: 0 8px 24px rgba(221, 51, 51, 0.3);
}

.customizer-section .product-tab:not(.active):hover {
    border-color: #334155;
}

.customizer-section .product-tab img {
    width: 40px;
    height: 40px;
    object-fit: contain;
    border-radius: 6px;
    background: rgba(15, 23, 42, 0.5);
    padding: 2px;
}

.customizer-section .product-tab span {
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
    font-size: 11px;
    line-height: 1.3;
}

/* ── Preview wrap ── */
.customizer-section .preview-wrap {
    position: relative;
    aspect-ratio: 1;
    border-radius: 16px;
    overflow: hidden;
    background: #02061796;
    border: 1px solid #1e293b;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.7);
}

@media (min-width: 640px) {
    .customizer-section .preview-wrap {
        aspect-ratio: 5/3;
    }
}

.customizer-section .preview-wrap .preview-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: all 0.5s;
}

.customizer-section .preview-gradient {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(2, 6, 23, 0.7) 0%, transparent 50%, rgba(2, 6, 23, 0.3) 100%);
    pointer-events: none;
}

/* ── Name overlay ── */
.customizer-section .name-overlay {
    position: absolute;
    cursor: grab;
    user-select: none;
    padding: 10px;
    border-radius: 12px;
    transition: box-shadow 0.15s;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    max-width: 85%;
    z-index: 20;
    touch-action: none;
    transform: translate(-50%, -50%);
}

.customizer-section .name-overlay:active {
    cursor: grabbing;
}

.customizer-section .name-overlay:hover {
    box-shadow: 0 0 0 1px rgba(251, 191, 36, 0.5);
    background: rgba(2, 6, 23, 0.3);
}

.customizer-section .name-overlay span {
    font-weight: 600;
    letter-spacing: 0.05em;
    word-break: break-word;
    max-width: 100%;
    pointer-events: none;
    filter: drop-shadow(0 0 16px rgba(253, 247, 194, 0.9)) drop-shadow(0 2px 8px rgba(0, 0, 0, 0.9));
}

/* ── Wish overlay ── */
.customizer-section .wish-overlay {
    position: absolute;
    cursor: grab;
    user-select: none;
    padding: 12px;
    border-radius: 12px;
    transition: box-shadow 0.15s;
    max-width: 320px;
    text-align: center;
    z-index: 20;
    touch-action: none;
    transform: translate(-50%, -50%);
}

.customizer-section .wish-overlay:active {
    cursor: grabbing;
}

.customizer-section .wish-overlay:hover {
    box-shadow: 0 0 0 1px rgba(251, 191, 36, 0.5);
    background: rgba(2, 6, 23, 0.3);
}

.customizer-section .wish-overlay:hover .wish-delete-btn {
    opacity: 1;
}

.customizer-section .wish-inner {
    position: relative;
}

.customizer-section .wish-delete-btn {
    position: absolute;
    top: -12px;
    right: -12px;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: #dc2626;
    color: #fff;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.2s, background 0.2s;
    z-index: 40;
    margin: 0;
    padding: 0;
    min-height: 20px;
    min-width: 20px;
}

.customizer-section .wish-delete-btn:hover {
    background: #ef4444;
}

.customizer-section .wish-text {
    font-size: 14px;
    font-weight: 500;
    color: #fef3c7;
    font-style: italic;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    pointer-events: none;
    line-height: 1.6;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.95), 0 0 6px rgba(0, 0, 0, 0.8);
}

/* ── Badge live ── */
.customizer-section .badge-live {
    position: absolute;
    top: 16px;
    left: 16px;
    display: flex;
    flex-direction: column;
    gap: 4px;
    z-index: 10;
    pointer-events: none;
}

.customizer-section .badge-live-update {
    padding: 4px 12px;
    background: rgba(2, 6, 23, 0.85);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(245, 158, 11, 0.4);
    border-radius: 9999px;
    font-size: 11px;
    color: #fcd34d;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 6px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.4);
    display: none;
}

.customizer-section .icon-spin {
    width: 12px;
    height: 12px;
    color: #f59e0b;
    animation: cs-spin 1.5s linear infinite;
}

.customizer-section .badge-drag {
    padding: 2px 10px;
    background: rgba(69, 10, 10, 0.8);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(239, 68, 68, 0.4);
    border-radius: 6px;
    font-size: 10px;
    color: #fecaca;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 4px;
}

.customizer-section .badge-drag svg {
    width: 12px;
    height: 12px;
    color: #f87171;
}

/* ── Position controls ── */
.customizer-section .position-controls {
    margin-top: 16px;
    padding: 14px;
    background: rgba(5, 10, 48, 0.8);
    border: 1px solid #1e293b;
    border-radius: 12px;
}

.customizer-section .position-controls-top {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
    border-bottom: 1px solid #1e293b;
    padding-bottom: 10px;
    margin-bottom: 12px;
}

.customizer-section .editing-label {
    font-size: 11px;
    color: #94a3b8;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 4px;
}

.customizer-section .editing-label svg {
    width: 14px;
    height: 14px;
    color: #f59e0b;
}

.customizer-section .tab-btns {
    display: flex;
    gap: 4px;
}

.customizer-section .tab-btn {
    padding: 4px 12px;
    border-radius: 8px;
    border: none;
    font-size: 11px;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 6px;
    transition: all 0.15s;
}

.customizer-section .tab-btn.active {
    background: #f59e0b;
    color: #0f172a;
    box-shadow: 0 2px 8px rgba(245, 158, 11, 0.3);
}

.customizer-section .tab-btn:not(.active) {
    background: #0f172a;
    color: #cbd5e1;
}

.customizer-section .tab-btn:not(.active):hover {
    background: #1e293b;
}

.customizer-section .tab-btn svg {
    width: 14px;
    height: 14px;
}

.customizer-section .font-size-row {
    display: flex;
    align-items: center;
    gap: 8px;
}

.customizer-section .font-size-row span:first-child {
    font-size: 11px;
    color: #94a3b8;
    font-weight: 600;
}

.customizer-section .font-size-row input[type=range] {
    width: 80px;
    accent-color: #dd3333;
    cursor: pointer;
}

.customizer-section .font-size-value {
    color: #fcd34d;
    font-weight: 600;
    font-size: 13px;
}

.customizer-section .position-controls-bottom {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    font-size: 11px;
}

.customizer-section .arrow-group {
    display: flex;
    align-items: center;
    gap: 4px;
    background: #02061796;
    padding: 4px;
    border-radius: 12px;
    border: 1px solid #1e293b;
    width: 100%;
    justify-content: space-between;
}

@media (min-width: 640px) {
    .customizer-section .arrow-group {
        width: auto;
        justify-content: flex-start;
    }
}

.customizer-section .arrow-group-label {
    font-size: 11px;
    color: #94a3b8;
    font-weight: 600;
    padding: 0 4px;
}

.customizer-section .arrow-btns {
    display: flex;
    gap: 4px;
}

.customizer-section .arrow-btn {
    width: 36px;
    height: 36px;
    background: #0f172a;
    border: none;
    border-radius: 8px;
    color: #e2e8f0;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.15s;
    touch-action: manipulation;
    margin: 0;
}

.customizer-section .arrow-btn:hover {
    background: #f59e0b;
    color: #0f172a;
}

.customizer-section .arrow-btn:active {
    transform: scale(0.9);
}

.customizer-section .arrow-btn svg {
    width: 16px;
    height: 16px;
}

.customizer-section .quickpos-group {
    display: flex;
    align-items: center;
    gap: 4px;
    width: 100%;
    overflow-x: auto;
    padding-bottom: 4px;
}

@media (min-width: 640px) {
    .customizer-section .quickpos-group {
        width: auto;
        padding-bottom: 0;
    }
}

.customizer-section .quickpos-label {
    font-size: 11px;
    color: #94a3b8;
    font-weight: 600;
    flex-shrink: 0;
}

.customizer-section .quickpos-btn {
    padding: 6px 10px;
    min-height: 36px;
    background: #0f172a;
    border: 1px solid #1e293b;
    border-radius: 8px;
    color: #cbd5e1;
    font-size: 11px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.15s;
    white-space: nowrap;
    flex-shrink: 0;
    touch-action: manipulation;
    margin: 0;
}

.customizer-section .quickpos-btn:hover {
    background: #1e293b;
}

.customizer-section .quickpos-btn:active {
    transform: scale(0.95);
}

/* ── Right panel ── */
.customizer-section .right-panel {
    background: rgba(13, 21, 77, 0.7);
    border: 1px solid rgba(221, 51, 51, 0.3);
    border-radius: 16px;
    padding: 24px;
}

@media (min-width: 640px) {
    .customizer-section .right-panel {
        padding: 32px;
    }
}

.customizer-section .right-panel>*+* {
    margin-top: 17px;
}

.customizer-section .field-label {
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: #f87171;
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 8px;
}

.customizer-section .field-label-hint {
    font-size: 10px;
    color: #94a3b8;
    font-weight: 400;
}

.customizer-section .text-input {
    width: 100%;
    padding: 12px 16px;
    background: #050a30;
    border: 1px solid #334155;
    border-radius: 12px;
    color: #fde68a;
    font-size: 16px;
    font-weight: 500;
    outline: none;
    box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.3);
    transition: border-color 0.2s;
    margin: 0;
}

.customizer-section .text-input::placeholder {
    color: #64748b;
}

.customizer-section .text-input:focus {
    border-color: #dd3333;
}

/* ── Font grid ── */
.customizer-section .font-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
    max-height: 160px;
    overflow-y: auto;
    padding-right: 4px;
}

.customizer-section .font-btn {
    padding: 10px;
    border-radius: 12px;
    border: 1px solid #1e293b;
    cursor: pointer;
    text-align: left;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: #050a30;
    color: #cbd5e1;
    transition: all 0.15s;
    margin: 0;
    line-height: normal;
}

.customizer-section .font-btn:hover:not(.active) {
    border-color: #334155;
}

.customizer-section .font-btn.active {
    background: rgba(221, 51, 51, 0.2);
    border-color: #dd3333;
    color: #fca5a5;
    font-weight: 600;
}

.customizer-section .font-btn-inner {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.customizer-section .font-name {
    font-size: 11px;
    font-weight: 600;
    display: block;
}

.customizer-section .font-preview {
    font-size: 13px;
    color: #fcd34d;
    display: block;
    margin-top: 2px;
}

.customizer-section .font-check {
    width: 14px;
    height: 14px;
    color: #dd3333;
    flex-shrink: 0;
}

/* ── Color grid ── */
.customizer-section .color-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
}

@media (min-width: 640px) {
    .customizer-section .color-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.customizer-section .color-btn {
    padding: 10px;
    border-radius: 12px;
    border: 1px solid #1e293b;
    cursor: pointer;
    text-align: left;
    display: flex;
    align-items: center;
    gap: 10px;
    background: #050a30;
    transition: all 0.15s;
    margin: 0;
    line-height: normal;
}

.customizer-section .color-btn:hover {
    border-color: #334155;
}

.customizer-section .color-btn.active {
    border-color: #dd3333;
    box-shadow: 0 0 0 2px rgba(221, 51, 51, 0.3);
}

.customizer-section .color-swatch {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    flex-shrink: 0;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.4);
}

.customizer-section .color-name {
    font-size: 12px;
    color: #e2e8f0;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

/* ── Logo upload ── */
.customizer-section .logo-upload-label {
    width: 100%;
    padding: 12px;
    background: #050a30;
    border: 1px dashed #334155;
    border-radius: 12px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-size: 12px;
    color: #cbd5e1;
    transition: border-color 0.2s;
}

.customizer-section .logo-upload-label:hover {
    border-color: #dd3333;
}

.customizer-section .logo-upload-label svg {
    width: 16px;
    height: 16px;
    color: #dd3333;
}

/* ── Wish section ── */
.customizer-section .wish-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 8px;
    flex-wrap: wrap;
    gap: 8px;
}

.customizer-section .wish-actions {
    display: flex;
    align-items: center;
    gap: 8px;
}

.customizer-section .wish-clear-btn {
    padding: 4px 8px;
    background: rgba(69, 10, 10, 0.6);
    border: 1px solid rgba(239, 68, 68, 0.4);
    border-radius: 8px;
    color: #fca5a5;
    font-size: 12px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 4px;
    cursor: pointer;
    transition: all 0.2s;
    margin: 0;
    line-height: normal;
}

.customizer-section .wish-clear-btn:hover {
    background: rgba(127, 29, 29, 0.8);
}

.customizer-section .wish-clear-btn svg {
    width: 14px;
    height: 14px;
}

.customizer-section .ai-btn {
    padding: 4px 10px;
    background: linear-gradient(to right, rgba(221, 51, 51, 0.2), rgba(239, 68, 68, 0.2));
    border: 1px solid rgba(221, 51, 51, 0.4);
    border-radius: 8px;
    color: #fca5a5;
    font-size: 12px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 6px;
    cursor: pointer;
    transition: all 0.2s;
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.2);
    margin: 0;
    line-height: normal;
}

.customizer-section .ai-btn:hover {
    border-color: #dd3333;
}

.customizer-section .ai-btn svg {
    width: 14px;
    height: 14px;
    color: #dd3333;
    animation: cs-bounce 1s ease-in-out infinite;
}

.customizer-section .wish-textarea-wrap {
    position: relative;
}

.customizer-section .wish-textarea {
    width: 100%;
    padding: 10px 32px 10px 16px;
    background: #050a30;
    border: 1px solid #334155;
    border-radius: 12px;
    color: #e2e8f0;
    font-size: 12px;
    line-height: 1.6;
    resize: none;
    outline: none;
    transition: border-color 0.2s;
    margin: 0;
    min-height: 80px;
}

.customizer-section .wish-textarea::placeholder {
    color: #64748b;
}

.customizer-section .wish-textarea:focus {
    border-color: #dd3333;
}

.customizer-section .wish-textarea-clear {
    position: absolute;
    right: 10px;
    top: 10px;
    background: none;
    border: none;
    color: #64748b;
    cursor: pointer;
    padding: 4px;
    transition: color 0.2s;
    margin: 0;
    line-height: unset;
}

.customizer-section .wish-textarea-clear:hover {
    color: #f87171;
}

.customizer-section .wish-textarea-clear svg {
    width: 14px;
    height: 14px;
}

/* ── Pricing & CTA ── */
.customizer-section .pricing-row {
    padding-top: 16px;
    border-top: 1px solid #1e293b;
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 16px;
}

.customizer-section .price-label {
    font-size: 12px;
    color: #94a3b8;
    display: block;
    margin-bottom: 4px;
}

.customizer-section .price-row {
    display: flex;
    align-items: baseline;
    gap: 8px;
}

.customizer-section .price-main {
    font-family: Philosopher, serif;
    font-size: 26px;
    font-weight: 600;
    color: #fcd34d;
}

.customizer-section .price-old {
    font-size: 12px;
    color: #64748b;
    text-decoration: line-through;
}

.customizer-section .price-meta {
    text-align: right;
}

.customizer-section .price-free {
    font-size: 11px;
    color: #34d399;
    font-weight: 600;
    display: block;
}

.customizer-section .price-ship {
    font-size: 10px;
    color: #94a3b8;
    display: block;
}

.customizer-section .cta-btn {
    width: 100%;
    padding: 10px;
    background: linear-gradient(to right, #dd3333, #dc2626, #b82222);
    color: #fff;
    font-weight: 600;
    text-transform: capitalize;
    letter-spacing: 0.1em;
    border: none;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(221, 51, 51, 0.3);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-size: 14px;
    transition: all 0.2s;
    margin: 0;
}

.customizer-section .cta-btn:hover {
    filter: brightness(1.1);
}

.customizer-section .cta-btn:active {
    transform: scale(0.95);
}

.customizer-section .cta-btn svg {
    width: 20px;
    height: 20px;
}

/**/
.sv-before-after {
    position: relative;
    width: 100%;
    min-height: 100vh;
    overflow: hidden;
    padding: 64px 0;
    background: #050a30;
    color: #ffffff;
    line-height: 1.5;
    isolation: isolate;
}

.sv-before-after,
.sv-before-after *,
.sv-before-after *::before,
.sv-before-after *::after {
    box-sizing: border-box;
}

.sv-before-after button,
.sv-before-after input {
    font: inherit;
}

.sv-before-after button {
    border: 0;
    -webkit-tap-highlight-color: transparent;
}

.sv-before-after svg {
    fill: none;
    stroke: currentColor;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.sv-before-after .sv-icon-library {
    position: absolute;
    width: 0;
    height: 0;
    overflow: hidden;
}

.sv-before-after .sv-glow {
    position: absolute;
    z-index: -1;
    border-radius: 50%;
    pointer-events: none;
    filter: blur(70px);
}

.sv-before-after .sv-glow-main {
    top: 14%;
    left: 50%;
    width: 800px;
    height: 400px;
    background: radial-gradient(ellipse at center, rgba(221, 51, 51, 0.15), transparent 70%);
    transform: translateX(-50%);
}

.sv-before-after .sv-glow-corner {
    bottom: -80px;
    left: -80px;
    width: 320px;
    height: 320px;
    background: rgba(245, 158, 11, 0.1);
}

.sv-before-after .sv-container {
    position: relative;
    z-index: 1;
}

.sv-before-after .sv-heading {
    margin: 0 auto 48px;
    text-align: center;
}

.sv-before-after .sv-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 16px;
    border: 1px solid rgba(245, 158, 11, 0.3);
    border-radius: 999px;
    background: rgba(245, 158, 11, 0.15);
    color: #fcd34d;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    backdrop-filter: blur(12px);
}

.sv-before-after .sv-eyebrow svg {
    width: 16px;
    height: 16px;
    color: #fde68a;
    flex: 0 0 auto;
}

.sv-before-after .sv-heading h2 {
    margin: 16px 0 12px;
    color: #f1f5f9;

    font-size: clamp(34px, 5vw, 40px);
    font-weight: 600;
    line-height: 1.12;
}

.sv-before-after .sv-heading h2 span {
    display: block;
    background: linear-gradient(90deg, #ff5555, #fcd34d, #ffffff);
    background-clip: text;
    -webkit-background-clip: text;
    color: transparent;
    -webkit-text-fill-color: transparent;
}

.sv-before-after .sv-heading>p {
    margin: 0;
    color: #cbd5e1;
    font-size: clamp(14px, 1.4vw, 16px);
    font-weight: 300;
    line-height: 1.8;
}

.sv-before-after .sv-product-tabs {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-top: 24px;

}

.sv-before-after .sv-product-tab {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 18px;
    border: 1px solid #1e293b;
    border-radius: 12px;
    background: rgba(13, 21, 77, 0.9);
    color: #cbd5e1;
    cursor: pointer;
    font-size: 13px;
    font-weight: 600;
    transition: color 180ms ease, border-color 180ms ease, background 180ms ease, transform 180ms ease, box-shadow 180ms ease;
    margin: 0;
}

.sv-before-after .sv-product-tab:hover {
    border-color: #475569;
    background: #141f6e;
    color: #ffffff;
    transform: translateY(-1px);
}

.sv-before-after .sv-product-tab.is-active {
    border-color: #ef4444;
    background: linear-gradient(90deg, #dd3333, #dc2626, #b82222);
    box-shadow: 0 10px 24px rgba(221, 51, 51, 0.3);
    color: #ffffff;
    transform: scale(1.03);
}

.sv-before-after .sv-product-tab svg {
    width: 14px;
    height: 14px;
    color: #94a3b8;
    flex: 0 0 auto;
}

.sv-before-after .sv-product-tab.is-active svg {
    color: #fcd34d;
}

.sv-before-after .sv-comparison-content {
    max-width: 896px;
    margin: 0 auto;
}

.sv-before-after .sv-compare-frame {
    position: relative;
    overflow: hidden;
    aspect-ratio: 16 / 9;
    border: 2px solid rgba(245, 158, 11, 0.4);
    border-radius: 16px;
    background: #02061796;
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.45);
    cursor: ew-resize;
    outline: none;
    touch-action: none;
    user-select: none;
}

.sv-before-after .sv-compare-frame:focus-visible {
    border-color: #fde68a;
    box-shadow: 0 0 0 4px rgba(251, 191, 36, 0.25), 0 24px 60px rgba(0, 0, 0, 0.45);
}

.sv-before-after .sv-image-layer {
    position: absolute;
    inset: 0;
}

.sv-before-after .sv-image-layer::after {
    position: absolute;
    inset: 0;
    content: "";
    pointer-events: none;
}

.sv-before-after .sv-after-layer {
    background: #f8fafc;
}

.sv-before-after .sv-after-layer::after {
    background: linear-gradient(135deg, rgba(245, 158, 11, 0.08), transparent 55%);
}

.sv-before-after .sv-before-layer {
    z-index: 2;
    background: #f8fafc;
    clip-path: inset(0 50% 0 0);
}

.sv-before-after .sv-before-layer::after {
    background: rgba(15, 23, 42, 0.05);
}

.sv-before-after .sv-image-layer>img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    pointer-events: none;
}

.sv-before-after .sv-after-layer>img {
    filter: brightness(1.05) contrast(1.05);
}

.sv-before-after .sv-before-layer>img {
    filter: brightness(0.95);
}

.sv-before-after .sv-image-label,
.sv-before-after .sv-detail-label {
    position: absolute;
    z-index: 3;
    display: flex;
    align-items: center;
    gap: 6px;
    border-radius: 12px;
    backdrop-filter: blur(12px);
}

.sv-before-after .sv-image-label {
    top: 24px;
    padding: 8px 16px;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: capitalize;
    box-shadow: 0 10px 26px rgba(0, 0, 0, 0.24);
}

.sv-before-after .sv-image-label svg {
    width: 14px;
    height: 14px;
    flex: 0 0 auto;
}

.sv-before-after .sv-after-label {
    right: 24px;
    border: 1px solid rgba(248, 113, 113, 0.3);
    background: linear-gradient(90deg, #dd3333, #b82222);
    color: #ffffff;
}

.sv-before-after .sv-after-label svg {
    color: #fcd34d;
}

.sv-before-after .sv-before-label {
    left: 24px;
    border: 1px solid #334155;
    background: rgba(2, 6, 23, 0.9);
    color: #cbd5e1;
}

.sv-before-after .sv-before-label svg {
    color: #94a3b8;
}

.sv-before-after .sv-detail-label {
    bottom: 24px;
    padding: 8px 14px;
    font-size: 14px;
    box-shadow: 0 10px 28px rgba(0, 0, 0, 0.24);
}

.sv-before-after .sv-after-detail {
    right: 24px;
    border: 1px solid rgba(245, 158, 11, 0.4);
    background: rgba(5, 10, 48, 0.9);
    color: #fcd34d;
    font-weight: 600;
}

.sv-before-after .sv-after-detail svg {
    width: 16px;
    height: 16px;
    color: #fde68a;
    flex: 0 0 auto;
}

.sv-before-after .sv-before-detail {
    left: 24px;
    max-width: 47%;
    border: 1px solid #1e293b;
    background: rgba(2, 6, 23, 0.86);
    color: #cbd5e1;
}

.sv-before-after .sv-divider {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 50%;
    z-index: 4;
    width: 3px;
    background: linear-gradient(#fde68a, #fde68a, #f59e0b);
    box-shadow: 0 0 20px #fde68a;
    pointer-events: none;
}

.sv-before-after .sv-divider-handle {
    position: absolute;
    top: 50%;
    left: 50%;
    display: flex;
    width: 48px;
    height: 48px;
    align-items: center;
    justify-content: center;
    border: 2px solid #020617;
    border-radius: 50%;
    background: linear-gradient(45deg, #f59e0b, #fde68a, #fef3c7);
    box-shadow: 0 14px 30px rgba(0, 0, 0, 0.42);
    color: #020617;
    transform: translate(-50%, -50%);
    transition: width 160ms ease, height 160ms ease;
}

.sv-before-after .sv-compare-frame:hover .sv-divider-handle,
.sv-before-after .sv-compare-frame.is-dragging .sv-divider-handle {
    width: 54px;
    height: 54px;
}

.sv-before-after .sv-divider-handle svg {
    width: 20px;
    height: 20px;
}

.sv-before-after .sv-product-tab:focus-visible {
    outline: 3px solid rgba(251, 191, 36, 0.7);
    outline-offset: 3px;
}

@media (max-width: 760px) {
    .sv-before-after {
        padding: 48px 0;
    }

    .sv-before-after .sv-heading {
        margin-bottom: 36px;
    }

    .sv-before-after .sv-product-tabs {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .sv-before-after .sv-product-tab {
        justify-content: center;
    }

    .sv-before-after .sv-compare-frame {
        aspect-ratio: 16 / 10;
        border-radius: 18px;
    }

    .sv-before-after .sv-image-label {
        top: 16px;
        padding: 7px 11px;
        font-size: 10px;
    }

    .sv-before-after .sv-after-label {
        right: 16px;
    }

    .sv-before-after .sv-before-label {
        left: 16px;
    }

    .sv-before-after .sv-detail-label {
        bottom: 16px;
        font-size: 10px;
    }

    .sv-before-after .sv-after-detail {
        right: 16px;
    }

    .sv-before-after .sv-before-detail {
        left: 16px;
    }
}

@media (max-width: 560px) {
    .sv-before-after .sv-container {
        width: min(calc(100% - 24px), 1290px);
    }

    .sv-before-after .sv-eyebrow {
        padding: 6px 12px;
        font-size: 9px;
    }

    .sv-before-after .sv-heading h2 {
        font-size: 32px;
    }

    .sv-before-after .sv-heading>p {
        font-size: 14px;
        line-height: 1.7;
    }

    .sv-before-after .sv-product-tabs {
        grid-template-columns: 1fr;
    }

    .sv-before-after .sv-product-tab {
        width: 100%;
    }

    .sv-before-after .sv-compare-frame {
        aspect-ratio: 4 / 3;
    }

    .sv-before-after .sv-image-label {
        max-width: calc(50% - 22px);
        line-height: 1.3;
    }

    .sv-before-after .sv-image-label svg {
        display: none;
    }

    .sv-before-after .sv-detail-label {
        display: none;
    }

    .sv-before-after .sv-divider-handle {
        width: 42px;
        height: 42px;
    }

    .sv-before-after .sv-compare-frame:hover .sv-divider-handle,
    .sv-before-after .sv-compare-frame.is-dragging .sv-divider-handle {
        width: 46px;
        height: 46px;
    }
}

@media (prefers-reduced-motion: reduce) {

    .sv-before-after *,
    .sv-before-after *::before,
    .sv-before-after *::after {
        scroll-behavior: auto !important;
        transition-duration: 0.01ms !important;
    }
}

/* css các bước thực hiện */
.sv-process,
.sv-process * {
    box-sizing: border-box;
}

.sv-process {
    position: relative;
    padding: 80px 0;
    overflow: hidden;
    background: #050a30;
    color: #ffffff;

}

.sv-process button {
    font: inherit;
}

.sv-process button,
.sv-process [role="tab"] {
    -webkit-tap-highlight-color: transparent;
}

.sv-process svg {
    fill: none;
    stroke: currentColor;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.sv-process .sv-process__symbols {
    position: absolute;
    width: 0;
    height: 0;
    overflow: hidden;
}

.sv-process .sv-process__glow {
    position: absolute;
    top: 16%;
    left: 50%;
    width: min(760px, 80vw);
    height: 390px;
    border-radius: 50%;
    background: radial-gradient(ellipse at center, rgba(221, 51, 51, 0.13), rgba(221, 51, 51, 0) 68%);
    filter: blur(26px);
    pointer-events: none;
    transform: translateX(-50%);
}

.sv-process .sv-process__container {
    position: relative;
    z-index: 1;
}

.sv-process .sv-process__heading {
    max-width: 790px;
    margin: 0 auto 54px;
    text-align: center;
}

.sv-process .sv-process__eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 7px 16px;
    border: 1px solid rgba(221, 51, 51, 0.42);
    border-radius: 999px;
    background: rgba(221, 51, 51, 0.15);
    box-shadow: 0 7px 20px rgba(0, 0, 0, 0.2);
    color: #fca5a5;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.11em;
    line-height: 1.4;
    text-transform: uppercase;
}

.sv-process .sv-process__eyebrow svg {
    width: 16px;
    height: 16px;
    color: #ef4444;
}

.sv-process .sv-process__heading h2 {
    margin: 18px 0 14px;
    color: #f1f5f9;
    font-size: clamp(34px, 5vw, 40px);
    line-height: 1.12;
}

.sv-process .sv-process__heading h2 span {
    display: block;
    margin-top: 4px;
    background: linear-gradient(90deg, #ff5555, #fcd34d 54%, #ffffff);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.sv-process .sv-process__heading p {
    margin: 0;
    color: #cbd5e1;
    font-size: clamp(15px, 1.65vw, 16px);
    font-weight: 300;
    line-height: 1.85;
}

.sv-process .sv-process__steps {
    position: relative;
}

.sv-process .sv-process__progress-track {
    position: absolute;
    z-index: 0;
    top: 48px;
    right: 8%;
    left: 8%;
    height: 4px;
    overflow: hidden;
    border-radius: 999px;
    background: rgba(30, 41, 59, 0.85);
}

.sv-process .sv-process__progress-fill {
    display: block;
    width: 0;
    height: 100%;
    border-radius: inherit;
    background: linear-gradient(90deg, #dd3333, #ef4444, #fcd34d);
    box-shadow: 0 0 14px rgba(221, 51, 51, 0.6);
    transition: width 420ms ease;
}

.sv-process .sv-process__step-list {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 20px;
}

.sv-process .sv-process__step {
    position: relative;
    display: flex;
    min-width: 0;
    min-height: 220px;
    padding: 20px;
    border: 1px solid rgba(30, 41, 59, 0.85);
    border-radius: 16px;
    color: #94a3b8;
    cursor: pointer;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    text-align: center;
    transition: border-color 220ms ease, background 220ms ease, box-shadow 220ms ease, opacity 220ms ease, transform 220ms ease;
    margin: 0;
    background: linear-gradient(180deg, #070c35, #070c35);
}

.sv-process .sv-process__step:hover {
    border-color: #475569;
    opacity: 1;
    transform: translateY(-3px);
}

.sv-process .sv-process__step.is-active {
    z-index: 2;
    border-color: #dd3333;
    background: linear-gradient(180deg, #0d154d, #070c35);
    box-shadow: 0 20px 46px rgba(221, 51, 51, 0.22);
    color: #ffffff;
    opacity: 1;
    transform: scale(1.035);
}

.sv-process .sv-process__step-icon {
    display: flex;
    width: 58px;
    height: 58px;
    margin-bottom: 15px;
    border: 1px solid #1e293b;
    border-radius: 17px;
    background: #050a30;
    box-shadow: 0 8px 18px rgba(0, 0, 0, 0.2);
    color: #94a3b8;
    align-items: center;
    justify-content: center;
    transition: border-color 220ms ease, background 220ms ease, color 220ms ease, transform 220ms ease;
}

.sv-process .sv-process__step.is-active .sv-process__step-icon {
    border-color: transparent;
    background: linear-gradient(45deg, #b82222, #ef4444, #dd3333);
    box-shadow: 0 10px 25px rgba(221, 51, 51, 0.38);
    color: #ffffff;
    transform: scale(1.08);
}

.sv-process .sv-process__step-icon svg {
    width: 25px;
    height: 25px;
}

.sv-process .sv-process__step-copy {
    display: flex;
    min-width: 0;
    flex: 1;
    flex-direction: column;
}

.sv-process .sv-process__step-copy small {
    display: block;
    margin-bottom: 7px;
    color: #64748b;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.sv-process .sv-process__step.is-active .sv-process__step-copy small {
    color: #fca5a5;
}

.sv-process .sv-process__step-copy strong {
    display: -webkit-box;
    min-height: 40px;
    overflow: hidden;
    color: #f1f5f9;
    font-size: 16px;
    line-height: 1.24;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    font-family: "Philosopher", sans-serif;
}

.sv-process .sv-process__step-copy>span {
    display: -webkit-box;
    margin-top: 9px;
    overflow: hidden;
    color: #94a3b8;
    font-size: 14px;
    font-weight: 300;
    line-height: 1.55;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
}

.sv-process .sv-process__step>i {
    width: 0;
    height: 4px;
    margin-top: 12px;
    border-radius: 999px;
    background: #dd3333;
    opacity: 0;
    transition: width 220ms ease, opacity 220ms ease;
}

.sv-process .sv-process__step.is-active>i {
    width: 32px;
    opacity: 1;
    animation: sv-process-pulse 1.8s ease-in-out infinite;
}

.sv-process .sv-process__detail {
    position: relative;
    display: grid;
    margin-top: 44px;
    padding: 30px;
    overflow: hidden;
    border: 1px solid rgba(221, 51, 51, 0.42);
    border-radius: 28px;
    background: linear-gradient(90deg, #0d154d, #050a30 50%, #0d154d);
    box-shadow: 0 26px 55px rgba(0, 0, 0, 0.32);
    grid-template-columns: minmax(0, 8fr) minmax(270px, 4fr);
    gap: 30px;
    align-items: center;
}

.sv-process .sv-process__detail.is-changing .sv-process__detail-content {
    opacity: 0;
    transform: translateY(8px);
}

.sv-process .sv-process__detail-watermark {
    position: absolute;
    top: -32px;
    right: -32px;
    width: 270px;
    height: 270px;
    color: #dd3333;
    opacity: 0.08;
    pointer-events: none;
}

.sv-process .sv-process__detail-content {
    position: relative;
    z-index: 1;
    transition: opacity 150ms ease, transform 150ms ease;
}

.sv-process .sv-process__detail-labels {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 12px;
}

.sv-process .sv-process__detail-labels span {
    padding: 6px 13px;
    border: 1px solid rgba(221, 51, 51, 0.42);
    border-radius: 999px;
    background: rgba(221, 51, 51, 0.18);
    color: #fca5a5;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.sv-process .sv-process__detail-labels em {
    color: #fcd34d;
    font-size: 13px;
}

.sv-process .sv-process__detail h3 {
    margin: 17px 0 12px;
    color: #f1f5f9;
    font-size: clamp(25px, 3vw, 30px);
    line-height: 1.2;
}

.sv-process .sv-process__detail-content>p {
    max-width: 850px;
    margin: 0;
    color: #e2e8f0;
    font-size: 15px;
    font-weight: 300;
    line-height: 1.75;
}

.sv-process .sv-process__benefits {
    display: grid;
    margin: 22px 0 0;
    padding: 0;
    list-style: none;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 10px;
}

.sv-process .sv-process__benefits li {
    display: flex;
    min-width: 0;
    min-height: 48px;
    padding: 10px 12px;
    border: 1px solid #1e293b;
    border-radius: 12px;
    background: rgba(5, 10, 48, 0.82);
    color: #cbd5e1;
    align-items: center;
    gap: 8px;
    font-size: 11px;
    font-weight: 600;
    line-height: 1.35;
    margin-bottom: 0;
}

.sv-process .sv-process__benefits svg {
    width: 17px;
    height: 17px;
    color: #ef4444;
    flex: 0 0 auto;
}

.sv-process .sv-process__detail-actions {
    position: relative;
    z-index: 1;
    display: flex;
    min-width: 0;
    padding-left: 34px;
    border-left: 1px solid rgba(30, 41, 59, 0.85);
    flex-direction: column;
    gap: 18px;
}

.sv-process .sv-process__primary-button {
    display: flex;
    width: 100%;
    min-height: 52px;
    padding: 14px 20px;
    border: 0;
    border-radius: 12px;
    background: linear-gradient(90deg, #dd3333, #dc2626, #b82222);
    box-shadow: 0 13px 28px rgba(221, 51, 51, 0.3);
    color: #ffffff;
    cursor: pointer;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    transition: filter 180ms ease, transform 120ms ease;
    margin: 0;
}

.sv-process .sv-process__primary-button:hover {
    filter: brightness(1.14);
}

.sv-process .sv-process__primary-button:active {
    transform: scale(0.97);
}

.sv-process .sv-process__primary-button svg {
    width: 17px;
    height: 17px;
}

.sv-process .sv-process__navigation {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
    gap: 10px;
    align-items: center;
}

.sv-process .sv-process__navigation button {
    display: flex;
    min-height: 42px;
    padding: 10px 11px;
    border: 1px solid #1e293b;
    border-radius: 11px;
    background: #050a30;
    color: #cbd5e1;
    cursor: pointer;
    align-items: center;
    justify-content: center;
    gap: 4px;
    font-size: 14px;
    transition: background 180ms ease, border-color 180ms ease;
    margin: 0;
}

.sv-process .sv-process__navigation button:hover:not(:disabled) {
    border-color: #475569;
    background: #141f6e;
}

.sv-process .sv-process__navigation button:disabled {
    cursor: not-allowed;
    opacity: 0.4;
}

.sv-process .sv-process__navigation button svg {
    width: 16px;
    height: 16px;
}

.sv-process .sv-process__navigation output {
    color: #94a3b8;
    font-size: 11px;
    white-space: nowrap;
}

.sv-process .sv-process__notice {
    position: fixed;
    right: 22px;
    bottom: 22px;
    z-index: 50;
    max-width: min(360px, calc(100% - 44px));
    padding: 13px 16px;
    border: 1px solid rgba(252, 211, 77, 0.35);
    border-radius: 12px;
    background: #0d154d;
    box-shadow: 0 18px 44px rgba(0, 0, 0, 0.4);
    color: #f8fafc;
    font-size: 13px;
    line-height: 1.45;
    opacity: 0;
    pointer-events: none;
    transform: translateY(18px);
    transition: opacity 180ms ease, transform 180ms ease;
}

.sv-process .sv-process__notice.is-visible {
    opacity: 1;
    transform: translateY(0);
}

.sv-process .sv-process__step:focus-visible,
.sv-process .sv-process__primary-button:focus-visible,
.sv-process .sv-process__navigation button:focus-visible,
.sv-process .sv-process__detail:focus-visible {
    outline: 3px solid rgba(252, 211, 77, 0.75);
    outline-offset: 4px;
}

@keyframes sv-process-pulse {

    0%,
    100% {
        opacity: 0.55;
        transform: scaleX(0.75);
    }

    50% {
        opacity: 1;
        transform: scaleX(1);
    }
}

@media (max-width: 1080px) {
    .sv-process .sv-process__step-list {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .sv-process .sv-process__progress-track {
        display: none;
    }

    .sv-process .sv-process__step {
        min-height: 190px;
    }

    .sv-process .sv-process__step:last-child {
        grid-column: 1 / -1;
        width: calc(50% - 10px);
        justify-self: center;
    }

    .sv-process .sv-process__detail {
        grid-template-columns: 1fr;
    }

    .sv-process .sv-process__detail-actions {
        padding-top: 24px;
        padding-left: 0;
        border-top: 1px solid rgba(30, 41, 59, 0.85);
        border-left: 0;
    }
}

@media (max-width: 680px) {
    .sv-process {
        padding: 52px 0 62px;
    }

    .sv-process .sv-process__heading {
        margin-bottom: 38px;
    }

    .sv-process .sv-process__eyebrow {
        max-width: 100%;
        padding: 6px 12px;
        font-size: 9px;
    }

    .sv-process .sv-process__heading h2 {
        font-size: 34px;
    }

    .sv-process .sv-process__heading p {
        font-size: 14px;
        line-height: 1.65;
    }

    .sv-process .sv-process__step-list {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .sv-process .sv-process__step,
    .sv-process .sv-process__step:last-child {
        display: grid;
        width: 100%;
        min-height: 0;
        padding: 15px;
        grid-template-columns: 48px minmax(0, 1fr) 6px;
        gap: 13px;
        align-items: center;
        text-align: left;
    }

    .sv-process .sv-process__step.is-active {
        transform: none;
    }

    .sv-process .sv-process__step-icon {
        width: 48px;
        height: 48px;
        margin: 0;
        border-radius: 14px;
    }

    .sv-process .sv-process__step-copy strong {
        min-height: 0;
    }

    .sv-process .sv-process__step-copy>span {
        margin-top: 5px;
        -webkit-line-clamp: 1;
    }

    .sv-process .sv-process__step>i,
    .sv-process .sv-process__step.is-active>i {
        width: 4px;
        height: 32px;
        margin: 0;
        animation: none;
    }

    .sv-process .sv-process__detail {
        margin-top: 26px;
        padding: 22px 18px;
        border-radius: 20px;
        gap: 28px;
    }

    .sv-process .sv-process__benefits {
        grid-template-columns: 1fr;
    }

    .sv-process .sv-process__detail-labels {
        align-items: flex-start;
        flex-direction: column;
    }

    .sv-process .sv-process__detail h3 {
        font-size: 25px;
    }

    .sv-process .sv-process__detail-content>p {
        font-size: 14px;
    }

    .sv-process .sv-process__detail-watermark {
        width: 190px;
        height: 190px;
    }

    .sv-process .sv-process__navigation {
        gap: 7px;
    }

    .sv-process .sv-process__navigation button {
        padding: 9px 7px;
    }
}

@media (max-width: 390px) {
    .sv-process .sv-process__navigation button span {
        display: none;
    }
}

@media (prefers-reduced-motion: reduce) {

    .sv-process *,
    .sv-process *::before,
    .sv-process *::after {
        scroll-behavior: auto !important;
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/**/
.sv-corporate,
.sv-corporate * {
    box-sizing: border-box;
}

.sv-corporate {
    position: relative;
    padding: 80px 0;
    overflow: hidden;
    background: #050a30;
    color: #ffffff;
}

.sv-corporate button {
    font: inherit;
    -webkit-tap-highlight-color: transparent;
}

.sv-corporate svg {
    fill: none;
    stroke: currentColor;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.sv-corporate .sv-corporate__symbols {
    position: absolute;
    width: 0;
    height: 0;
    overflow: hidden;
}

.sv-corporate .sv-corporate__glow {
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at center, rgba(221, 51, 51, 0.1), rgba(221, 51, 51, 0) 68%);
    pointer-events: none;
}

.sv-corporate .sv-corporate__container {
    position: relative;
    z-index: 1;

}

.sv-corporate .sv-corporate__layout {
    display: grid;
    grid-template-columns: repeat(12, minmax(0, 1fr));
    gap: 64px;
    align-items: center;
}

.sv-corporate .sv-corporate__content,
.sv-corporate .sv-corporate__showcase {
    min-width: 0;
    grid-column: span 6;
}

.sv-corporate .sv-corporate__content {
    display: flex;
    align-items: flex-start;
    flex-direction: column;
}

.sv-corporate .sv-corporate__eyebrow {
    display: inline-flex;
    max-width: 100%;
    padding: 7px 16px;
    border: 1px solid rgba(221, 51, 51, 0.4);
    border-radius: 999px;
    background: rgba(221, 51, 51, 0.15);
    color: #fca5a5;
    align-items: center;
    gap: 8px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.1em;
    line-height: 1.4;
    text-transform: uppercase;
}

.sv-corporate .sv-corporate__eyebrow svg {
    width: 16px;
    height: 16px;
    color: #dd3333;
    flex: 0 0 auto;
}

.sv-corporate .sv-corporate__eyebrow span {
    overflow: hidden;
    text-overflow: ellipsis;
}

.sv-corporate .sv-corporate__content h2 {
    margin: 28px 0 0;
    color: #f1f5f9;
    font-size: clamp(36px, 4vw, 40px);
    line-height: 1.08;
}

.sv-corporate .sv-corporate__content h2 span {
    display: block;
    margin-top: 7px;
    background: linear-gradient(90deg, #ff5555, #fcd34d 52%, #ffffff);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.sv-corporate .sv-corporate__subtitle {
    margin: 28px 0 0;
    color: #fca5a5;
    font-size: clamp(18px, 1.7vw, 21px);
    font-style: italic;
    line-height: 1.45;
}

.sv-corporate .sv-corporate__description {
    margin: 28px 0 0;
    color: #cbd5e1;
    font-size: clamp(16px, 1.45vw, 16px);
    font-weight: 300;
    line-height: 1.8;
}

.sv-corporate .sv-corporate__benefits {
    display: grid;
    width: 100%;
    margin: 24px 0 0;
    padding: 0;
    list-style: none;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
}

.sv-corporate .sv-corporate__benefits li {
    display: flex;
    min-width: 0;
    min-height: 50px;
    padding: 12px 14px;
    border: 1px solid #1e293b;
    border-radius: 12px;
    background: rgba(13, 21, 77, 0.8);
    color: #e2e8f0;
    align-items: center;
    gap: 12px;
    font-size: 15px;
    margin: 0;
    line-height: 1.4;
}

.sv-corporate .sv-corporate__benefits svg {
    width: 18px;
    height: 18px;
    color: #dd3333;
    flex: 0 0 auto;
}

.sv-corporate .sv-corporate__benefits strong {
    font-weight: 600;
}

.sv-corporate .sv-corporate__quote-button {
    display: inline-flex;
    max-width: 100%;
    min-height: 56px;
    padding: 16px 32px;
    border: 0;
    border-radius: 12px;
    background: linear-gradient(90deg, #dd3333, #dc2626, #b82222);
    box-shadow: 0 20px 34px rgba(221, 51, 51, 0.3);
    color: #ffffff;
    cursor: pointer;
    align-items: center;
    justify-content: center;
    gap: 12px;
    font-size: 14px;
    font-weight: 800;
    letter-spacing: 0.07em;
    line-height: 1.45;
    text-align: center;
    text-transform: uppercase;
    transition: filter 180ms ease, transform 120ms ease, box-shadow 180ms ease;
    margin: 0;
    margin-top: 32px;
}

.sv-corporate .sv-corporate__quote-button:hover {
    filter: brightness(1.12);
    box-shadow: 0 22px 38px rgba(221, 51, 51, 0.4);
}

.sv-corporate .sv-corporate__quote-button:active {
    transform: scale(0.96);
}

.sv-corporate .sv-corporate__quote-button svg {
    width: 20px;
    height: 20px;
    flex: 0 0 auto;
}

.sv-corporate .sv-corporate__card {
    padding: 24px;
    border: 1px solid rgba(221, 51, 51, 0.3);
    border-radius: 16px;
    background: rgba(13, 21, 77, 0.9);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.4);
}

.sv-corporate .sv-corporate__tabs {
    display: grid;
    padding: 6px;
    border: 1px solid #1e293b;
    border-radius: 16px;
    background: #050a30;
    grid-template-columns: repeat(6, minmax(0, 1fr));
    gap: 6px;
}

.sv-corporate .sv-corporate__tab {
    min-width: 0;
    padding: 9px 4px;
    overflow: hidden;
    border: 0;
    border-radius: 12px;
    background: transparent;
    color: #94a3b8;
    cursor: pointer;
    font-size: 12px;
    font-weight: 500;
    line-height: 1.35;
    text-align: center;
    text-overflow: ellipsis;
    white-space: nowrap;
    transition: background 180ms ease, color 180ms ease, box-shadow 180ms ease;
    margin: 0;
}

.sv-corporate .sv-corporate__tab:hover {
    color: #e2e8f0;
}

.sv-corporate .sv-corporate__tab.is-active {
    background: #dd3333;
    box-shadow: 0 5px 12px rgba(0, 0, 0, 0.28);
    color: #ffffff;
    font-weight: 800;
}

.sv-corporate .sv-corporate__panel {
    position: relative;
    aspect-ratio: 3 / 3;
    margin-top: 16px;
    overflow: hidden;
    border: 1px solid #1e293b;
    border-radius: 16px;
    background: #050a30;
}

.sv-corporate .sv-corporate__panel img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: opacity 160ms ease, transform 700ms ease;
}

.sv-corporate .sv-corporate__panel:hover img {
    transform: scale(1.05);
}

.sv-corporate .sv-corporate__panel.is-changing img,
.sv-corporate .sv-corporate__panel.is-changing .sv-corporate__caption {
    opacity: 0;
}

.sv-corporate .sv-corporate__image-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(0deg, rgba(5, 10, 48, 0.92), rgba(5, 10, 48, 0.18) 58%, rgba(5, 10, 48, 0));
    pointer-events: none;
}

.sv-corporate .sv-corporate__caption {
    position: absolute;
    right: 24px;
    bottom: 24px;
    left: 24px;
    padding: 16px;
    border: 1px solid rgba(221, 51, 51, 0.3);
    border-radius: 12px;
    background: rgba(5, 10, 48, 0.82);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.2);
    -webkit-backdrop-filter: blur(12px);
    backdrop-filter: blur(12px);
    transition: opacity 160ms ease;
}

.sv-corporate .sv-corporate__caption span {
    display: block;
    color: #fca5a5;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 0.13em;
    line-height: 1.4;
    text-transform: uppercase;
}

.sv-corporate .sv-corporate__caption p {
    margin: 4px 0 0;
    color: #e2e8f0;
    font-size: 14px;
    font-weight: 500;
    line-height: 1.5;
}

.sv-corporate .sv-corporate__notice {
    position: fixed;
    right: 22px;
    bottom: 22px;
    z-index: 50;
    max-width: min(360px, calc(100% - 44px));
    padding: 13px 16px;
    border: 1px solid rgba(252, 211, 77, 0.36);
    border-radius: 12px;
    background: #0d154d;
    box-shadow: 0 18px 44px rgba(0, 0, 0, 0.4);
    color: #f8fafc;
    font-size: 13px;
    line-height: 1.45;
    opacity: 0;
    pointer-events: none;
    transform: translateY(18px);
    transition: opacity 180ms ease, transform 180ms ease;
}

.sv-corporate .sv-corporate__notice.is-visible {
    opacity: 1;
    transform: translateY(0);
}

.sv-corporate .sv-corporate__tab:focus-visible,
.sv-corporate .sv-corporate__quote-button:focus-visible,
.sv-corporate .sv-corporate__panel:focus-visible {
    outline: 3px solid rgba(252, 211, 77, 0.8);
    outline-offset: 4px;
}

@media (max-width: 1080px) {
    .sv-corporate {
        padding: 96px 0;
    }

    .sv-corporate .sv-corporate__layout {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .sv-corporate .sv-corporate__content,
    .sv-corporate .sv-corporate__showcase {
        grid-column: auto;
    }

    .sv-corporate .sv-corporate__content {
        max-width: 780px;
    }
}

@media (max-width: 680px) {
    .sv-corporate {
        min-height: 0;
        padding: 64px 0;
    }

    .sv-corporate .sv-corporate__layout {
        gap: 40px;
    }

    .sv-corporate .sv-corporate__eyebrow {
        padding: 6px 12px;
        font-size: 10px;
    }

    .sv-corporate .sv-corporate__content h2 {
        margin-top: 24px;
        font-size: 36px;
    }

    .sv-corporate .sv-corporate__subtitle,
    .sv-corporate .sv-corporate__description {
        margin-top: 24px;
    }

    .sv-corporate .sv-corporate__description {
        font-size: 16px;
        line-height: 1.75;
    }

    .sv-corporate .sv-corporate__benefits {
        grid-template-columns: 1fr;
        gap: 10px;
    }

    .sv-corporate .sv-corporate__quote-button {
        width: 100%;
        padding: 15px 18px;
        font-size: 12px;
    }

    .sv-corporate .sv-corporate__card {
        padding: 14px;
        border-radius: 20px;
    }

    .sv-corporate .sv-corporate__tabs {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .sv-corporate .sv-corporate__panel {
        aspect-ratio: 1 / 1;
    }

    .sv-corporate .sv-corporate__caption {
        right: 14px;
        bottom: 14px;
        left: 14px;
        padding: 14px;
    }
}

@media (max-width: 390px) {
    .sv-corporate .sv-corporate__content h2 {
        font-size: 32px;
    }

    .sv-corporate .sv-corporate__quote-button svg:last-child {
        display: none;
    }
}

@media (prefers-reduced-motion: reduce) {

    .sv-corporate *,
    .sv-corporate *::before,
    .sv-corporate *::after {
        scroll-behavior: auto !important;
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/**/
/* ===== SECTION ===== */
#gallery {
    padding: 0;
    background-color: #050a30;
    color: #ffffff;
    position: relative;
}

/* ===== CONTAINER ===== */
.gallery-container {
    margin: 0 auto;
    padding: 0;
}

/* ===== HEADER ===== */
.gallery-header {
    text-align: center;
    max-width: 48rem;
    margin: 0 auto 3rem auto;
}

.gallery-badge {
    display: inline-block;
    color: #fde68a;
    font-size: 11px;
    font-weight: 600;
    text-transform: capitalize;
    letter-spacing: 0.15em;
    padding: 0.25rem 0.875rem;
    border-radius: 9999px;
    background-color: rgba(245, 158, 11, 0.1);
    border: 1px solid rgba(245, 158, 11, 0.2);
    margin-bottom: 1rem;
}

.gallery-title {

    font-size: 40px;
    font-weight: 600;
    color: #f1f5f9;
    line-height: 1.2;
    margin-bottom: 1rem;
}

.gallery-desc {
    color: #cbd5e1;
    font-size: 1rem;
    font-weight: 300;
    line-height: 1.8;
}

/* ===== FILTER BUTTONS ===== */
.gallery-filters {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 0.625rem;
    padding-top: 1rem;
}

.filter-btn {
    padding: 0.625rem 1.125rem;
    border-radius: 0.75rem;
    font-size: 0.75rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
    border: 1px solid transparent;
    line-height: 1;
    margin: 0;
}

@media (min-width: 640px) {
    .filter-btn {
        font-size: 0.875rem;
    }
}

.filter-btn.active {
    background-color: #f59e0b;
    color: #0a0a0a;
    border-color: #f59e0b;
    box-shadow: 0 2px 8px rgba(245, 158, 11, 0.3);
}

.filter-btn.inactive {
    background-color: #030712;
    border-color: #1e293b;
    color: #cbd5e1;
}

.filter-btn.inactive:hover {
    color: #ffffff;
    border-color: rgba(245, 158, 11, 0.4);
}

/* ===== GRID ===== */
.gallery-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

@media (min-width: 640px) {
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 768px) {
    .gallery-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (min-width: 1024px) {
    .gallery-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

/* ===== CARD ===== */
.gallery-card {
    position: relative;
    aspect-ratio: 1 / 1;
    border-radius: 1rem;
    overflow: hidden;
    background-color: #030712;
    border: 1px solid #1e293b;
    cursor: pointer;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.4);
    transition: border-color 0.3s ease, box-shadow 0.3s ease, transform 0.3s ease;
}

.gallery-card:hover {
    border-color: rgba(245, 158, 11, 0.5);
    box-shadow: 0 20px 40px rgba(245, 158, 11, 0.1);
    transform: translateY(-4px);
}

.gallery-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 0.7s ease;
}

.gallery-card:hover img {
    transform: scale(1.1);
}

/* ===== CARD OVERLAY ===== */
.gallery-grid .card-overlay {
    position: absolute;
    inset: 0;
    background: rgba(10, 10, 10, .2);
    opacity: 0;
    transition: opacity .3s ease;
    display: flex;
    align-items: flex-start;
    justify-content: flex-end;
    gap: 12px;
    flex-direction: column;
    padding: 15px;
}

.gallery-card:hover .card-overlay {
    opacity: 1;
}

.card-tag {
    display: inline-block;
    padding: 0.125rem 0.625rem;
    background-color: #f59e0b;
    color: #0a0a0a;
    font-weight: 600;
    font-size: 0.625rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    border-radius: 9999px;
    align-self: flex-start;
    margin-bottom: 0.5rem;
}

.gallery-grid .card-title {

    font-size: 16px;
    font-weight: 600;
    color: #f1f5f9;
    line-height: 1.35;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    flex-grow: unset;
}

.card-customer {
    font-size: 0.75rem;
    color: #fcd34d;
    font-weight: 500;
    margin: 0;
}

.card-hint {
    display: flex;
    align-items: center;
    gap: 0.25rem;
    font-size: 0.625rem;
    color: #94a3b8;
    margin-top: 0rem;
}

.card-hint svg {
    width: 0.875rem;
    height: 0.875rem;
    color: #fde68a;
    flex-shrink: 0;
}

/* ===== HIDDEN (filtered out) ===== */
.gallery-card.hidden {
    display: none;
}

.qtct-section {
    padding: 96px 0;
    background-color: #050a30;
    color: #ffffff;
    position: relative;
}


/* ---------- Header ---------- */
.qtct-header {
    text-align: center;
    margin: 0 auto 64px auto;
}

.qtct-badge {
    display: inline-block;
    color: #fde68a;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    padding: 6px 16px;
    border-radius: 999px;
    background-color: rgba(245, 158, 11, 0.1);
    border: 1px solid rgba(245, 158, 11, 0.2);
    margin-bottom: 16px;
}

.qtct-title {
    font-weight: 600;
    font-size: 40px;
    line-height: 1.2;
    color: #f1f5f9;
    margin-bottom: 16px;
}

.qtct-desc {
    color: #cbd5e1;
    font-size: 17px;
    font-weight: 300;
    line-height: 1.8;
}

/* ---------- Grid layout ---------- */
.qtct-grid {
    display: grid;
    grid-template-columns: 4fr 8fr;
    gap: 32px;
    align-items: center;
}

/* ---------- Step list ---------- */
.qtct-steps {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.qtct-step {
    padding: 16px;
    border-radius: 16px;
    border: 1px solid #1e293b;
    background-color: #020617;
    cursor: pointer;
    display: flex;
    align-items: flex-start;
    gap: 14px;
    opacity: 0.8;
    transition: all 0.3s ease;
}

.qtct-step:hover {
    border-color: #334155;
}

.qtct-step.is-active {
    opacity: 1;
    background-color: #0f172a;
    border-color: #fde68a;
    box-shadow: 0 20px 25px -5px rgba(245, 158, 11, 0.1);
    transform: scale(1.02);
}

.qtct-step-icon {
    width: 40px;
    height: 40px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    background-color: #1e293b;
    color: #94a3b8;
}

.qtct-step.is-active .qtct-step-icon {
    background-color: #f59e0b;
    color: #020617;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.3);
}

.qtct-step-icon svg {
    width: 20px;
    height: 20px;
}

.qtct-step-title {
    font-weight: 600;
    font-size: 17px;
    color: #fff;
    margin-bottom: 4px;
}

.qtct-step.is-active .qtct-step-title {
    color: #fcd34d;
}

.qtct-step-text {
    font-size: 13px;
    color: #94a3b8;
    line-height: 1.6;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    margin: 0;
}

/* ---------- Video / image showcase ---------- */
.qtct-showcase {
    position: relative;
    aspect-ratio: 16 / 9;
    border-radius: 16px;
    overflow: hidden;
    background-color: #020617;
    border: 1px solid rgba(245, 158, 11, 0.3);
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
}

.qtct-showcase-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transform: scale(1.05);
    filter: brightness(1.05);
    transition: all 0.7s ease;
}

.qtct-showcase-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(2, 6, 23, 0.9), transparent 50%, rgba(2, 6, 23, 0.4));
    pointer-events: none;
}

.qtct-showcase-glow {
    position: absolute;
    inset: 0;
    pointer-events: none;
    background: radial-gradient(ellipse at center, rgba(251, 191, 36, 0.2), transparent 70%);
    animation: qtct-pulse 2.5s ease-in-out infinite;
}

@keyframes qtct-pulse {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0.5;
    }
}

.qtct-play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 64px;
    height: 64px;
    border-radius: 999px;
    background-color: rgba(245, 158, 11, 0.9);
    color: #020617;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 25px 50px -12px rgba(245, 158, 11, 0.5);
    backdrop-filter: blur(6px);
    transition: transform 0.2s ease, background-color 0.2s ease;
}

.qtct-play-btn:hover {
    background-color: #fde68a;
    transform: translate(-50%, -50%) scale(1.1);
}

.qtct-play-btn:active {
    transform: translate(-50%, -50%) scale(0.95);
}

.qtct-play-btn svg {
    width: 28px;
    height: 28px;
}

.qtct-showcase-info {
    position: absolute;
    left: 24px;
    right: 24px;
    bottom: 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 12px;
    color: #e2e8f0;
    background-color: rgba(2, 6, 23, 0.8);
    backdrop-filter: blur(6px);
    padding: 12px;
    border-radius: 12px;
    border: 1px solid rgba(245, 158, 11, 0.2);
    width: fit-content;
}

.qtct-showcase-info-left {
    display: flex;
    align-items: center;
    gap: 8px;
}

.qtct-live-dot {
    width: 8px;
    height: 8px;
    border-radius: 999px;
    background-color: #ef4444;
    animation: qtct-ping 1.5s cubic-bezier(0, 0, 0.2, 1) infinite;
}

@keyframes qtct-ping {

    75%,
    100% {
        transform: scale(2.2);
        opacity: 0;
    }
}

.qtct-showcase-label {
    font-weight: 600;
    color: #fcd34d;
}

.qtct-showcase-meta {
    font-size: 10px;
    color: #94a3b8;
}

/* ---------- Responsive ---------- */
@media (max-width: 1024px) {
    .qtct-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 640px) {
    .qtct-section {
        padding: 64px 0;
    }

    .qtct-title {
        font-size: 30px;
    }
}

/* ============================================
     TẤT CẢ CSS ĐƯỢC BỌC TRONG CLASS CHA .kh-reviews
     -> tránh xung đột / tỷ trọng CSS với các phần khác của trang
     -> KHÔNG dùng biến CSS (custom properties), toàn bộ giá trị viết trực tiếp
  ============================================ */

.kh-reviews {
    box-sizing: border-box;
    background-color: #050a30;
    color: #ffffff;
    position: relative;
    overflow: hidden;
}

.kh-reviews *,
.kh-reviews *::before,
.kh-reviews *::after {
    box-sizing: border-box;
}

@media (min-width: 640px) {
    .kh-reviews {
        padding: 96px 24px;
    }
}

.kh-reviews .kh-reviews__container {}

/* ---------- Tiêu đề ---------- */

.kh-reviews .kh-reviews__header {
    text-align: center;
    max-width: 720px;
    margin: 0 auto 48px auto;
}

@media (min-width: 640px) {
    .kh-reviews .kh-reviews__header {
        margin-bottom: 64px;
    }
}

.kh-reviews .kh-reviews__eyebrow {
    display: inline-block;
    color: #fde68a;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    padding: 4px 14px;
    border-radius: 9999px;
    background-color: rgba(245, 158, 11, 0.1);
    border: 1px solid rgba(245, 158, 11, 0.2);
    margin-bottom: 14px;
}

@media (min-width: 640px) {
    .kh-reviews .kh-reviews__eyebrow {
        font-size: 14px;
    }
}

.kh-reviews .kh-reviews__title {
    font-weight: 600;
    color: #f1f5f9;
    font-size: 40px;
    margin: 0 0 14px 0;
    line-height: 1.2;
}

.kh-reviews .kh-reviews__subtitle {
    color: #cbd5e1;
    font-size: 16px;
    font-weight: 300;
    line-height: 1.75;
    margin: 0;
}

@media (min-width: 640px) {
    .kh-reviews .kh-reviews__subtitle {
        font-size: 18px;
    }
}

/* ---------- Khối slider ---------- */

.kh-reviews .kh-reviews__slider {
    max-width: 896px;
    margin: 0 auto;
    position: relative;
}

.kh-reviews .kh-reviews__card {
    background-color: #020617;
    border: 1px solid rgba(245, 158, 11, 0.3);
    border-radius: 24px;
    padding: 32px;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
    position: relative;
    overflow: hidden;
}

@media (min-width: 640px) {
    .kh-reviews .kh-reviews__card {
        padding: 48px;
    }
}

.kh-reviews .kh-reviews__quote-icon {
    position: absolute;
    top: -16px;
    right: -16px;
    width: 128px;
    height: 128px;
    color: rgba(245, 158, 11, 0.05);
    pointer-events: none;
}

.kh-reviews .kh-reviews__grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 32px;
    align-items: center;
    position: relative;
}

@media (min-width: 768px) {
    .kh-reviews .kh-reviews__grid {
        grid-template-columns: repeat(12, 1fr);
    }
}

.kh-reviews .kh-reviews__media {
    position: relative;
}

@media (min-width: 768px) {
    .kh-reviews .kh-reviews__media {
        grid-column: span 5 / span 5;
    }
}

.kh-reviews .kh-reviews__photo-frame {
    aspect-ratio: 1 / 1;
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid #1e293b;
    background-color: #0f172a;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.4);
}

.kh-reviews .kh-reviews__photo-frame img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
}

.kh-reviews .kh-reviews__photo-badge {
    position: absolute;
    bottom: 12px;
    left: 12px;
    padding: 4px 12px;
    background-color: rgba(2, 6, 23, 0.9);
    color: #fcd34d;
    font-weight: 600;
    font-size: 10px;
    border-radius: 9999px;
    border: 1px solid rgba(245, 158, 11, 0.3);
    backdrop-filter: blur(6px);
}

.kh-reviews .kh-reviews__content {
    text-align: left;
}

@media (min-width: 768px) {
    .kh-reviews .kh-reviews__content {
        grid-column: span 7 / span 7;
    }
}

.kh-reviews .kh-reviews__content>*+* {
    margin-top: 16px !important;
}

.kh-reviews .kh-reviews__stars {
    display: flex;
    align-items: center;
    gap: 4px;
}

.kh-reviews .kh-reviews__stars svg {
    width: 16px;
    height: 16px;
    color: #fde68a;
    fill: #fde68a;
}

.kh-reviews .kh-reviews__quote-text {
    font-style: italic;
    color: #e2e8f0;
    font-size: 16px;
    line-height: 1.7;
    margin: 0;
}

.kh-reviews .kh-reviews__footer {
    padding-top: 16px;
    border-top: 1px solid rgba(30, 41, 59, 0.8);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    flex-wrap: wrap;
}

.kh-reviews .kh-reviews__customer {
    display: flex;
    align-items: center;
    gap: 12px;
}

.kh-reviews .kh-reviews__avatar {
    width: 48px;
    height: 48px;
    border-radius: 9999px;
    object-fit: cover;
    border: 2px solid rgba(251, 191, 36, 0.5);
    display: block;
}

.kh-reviews .kh-reviews__name-row {
    display: flex;
    align-items: center;
    gap: 6px;
}

.kh-reviews .kh-reviews__name {
    font-size: 16px;
    font-weight: 600;
    color: #f1f5f9;
    margin: 0;
}

.kh-reviews .kh-reviews__verified-icon {
    width: 16px;
    height: 16px;
    color: #34d399;
}

.kh-reviews .kh-reviews__product {
    display: block;
    font-size: 12px;
    font-weight: 500;
    color: rgba(251, 191, 36, 0.9);
}

.kh-reviews .kh-reviews__date {
    font-size: 12px;
    color: #64748b;
}

/* ---------- Điều hướng slider ---------- */

.kh-reviews .kh-reviews__nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin-top: 24px;
}

.kh-reviews .kh-reviews__nav-btn {
    padding: 12px;
    border-radius: 9999px;
    background-color: #020617;
    border: 1px solid #1e293b;
    color: #cbd5e1;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.3);
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.2s ease, color 0.2s ease;
    margin: 0;
}

.kh-reviews .kh-reviews__nav-btn:hover {
    background-color: #1e293b;
    color: #ffffff;
}

.kh-reviews .kh-reviews__nav-btn:disabled {
    opacity: 0.4;
    cursor: not-allowed;
}

.kh-reviews .kh-reviews__nav-btn svg {
    width: 20px;
    height: 20px;
}

.kh-reviews .kh-reviews__counter {
    font-size: 14px;
    color: #94a3b8;
    min-width: 52px;
    text-align: center;
}

/**/
.faq-ldp {
    background-color: #050a30;
    color: #ffffff;
    padding: 64px 20px;
    position: relative;
}

@media (min-width: 640px) {
    .faq-ldp {
        padding: 96px 20px;
    }
}


.faq-ldp__header {
    text-align: center;
    max-width: 720px;
    margin: 0 auto 48px auto;
}

@media (min-width: 640px) {
    .faq-ldp__header {
        margin-bottom: 64px;
    }
}

.faq-ldp__tag {
    display: inline-block;
    color: #fde68a;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    padding: 4px 14px;
    border-radius: 9999px;
    background-color: rgba(245, 158, 11, 0.1);
    border: 1px solid rgba(245, 158, 11, 0.2);
    margin-bottom: 16px;
}

.faq-ldp__title {
    font-weight: 600;
    color: #f1f5f9;
    font-size: 40px;
    line-height: 1.25;
    margin: 0 0 16px 0;
}

.faq-ldp__desc {
    color: #cbd5e1;
    font-size: 16px;
    font-weight: 300;
    line-height: 1.7;
    margin: 0;
}

.faq-ldp__list {
    display: flex;
    flex-direction: column;
    gap: 16px;
    max-width: 950px;
    margin: auto;
}

.faq-ldp__item {
    border-radius: 16px;
    border: 1px solid #1e293b;
    background-color: rgba(15, 23, 42, 0.4);
    overflow: hidden;
    transition: border-color 0.3s ease;
}

.faq-ldp__item:hover {
    border-color: #334155;
}

.faq-ldp__item.is-active {
    background-color: #0f172a;
    border-color: rgba(251, 191, 36, 0.6);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.3), 0 8px 10px -6px rgba(0, 0, 0, 0.3);
}

.faq-ldp__question {
    width: 100%;
    padding: 20px;
    background: none;
    border: none;
    cursor: pointer;
    text-align: left;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    color: inherit;
    margin: 0;
}

.faq-ldp__question:focus {
    outline: none;
}

.faq-ldp__q-left {
    display: flex;
    align-items: center;
    gap: 12px;
}

.faq-ldp__icon-box {
    width: 32px;
    height: 32px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    background-color: #1e293b;
    color: #94a3b8;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.faq-ldp__item.is-active .faq-ldp__icon-box {
    background-color: #f59e0b;
    color: #020617;
}

.faq-ldp__icon-box svg {
    width: 16px;
    height: 16px;
}

.faq-ldp__q-text {
    font-size: 16px;
    font-weight: 600;
    color: #f1f5f9;
}

.faq-ldp__chevron {
    width: 20px;
    height: 20px;
    color: #fde68a;
    flex-shrink: 0;
    transition: transform 0.3s ease;
}

.faq-ldp__item.is-active .faq-ldp__chevron {
    transform: rotate(180deg);
}

.faq-ldp__answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease;
}

.faq-ldp__item.is-active .faq-ldp__answer {
    max-height: 400px;
}

.faq-ldp__answer-inner {
    padding: 4px 20px 20px 20px;
    border-top: 1px solid rgba(30, 41, 59, 0.8);
}

.faq-ldp__answer-box {
    background-color: rgba(2, 6, 23, 0.6);
    padding: 16px;
    border-radius: 12px;
    border: 1px solid rgba(30, 41, 59, 0.6);
    font-size: 14px;
    font-weight: 300;
    color: #cbd5e1;
    line-height: 1.7;
    margin: 0;
}

/* css section liên hệ báo giá */
.lh-bao-gia {
    position: relative;
    padding-top: 64px;
    padding-bottom: 64px;
    background-color: #050a30;
    color: #ffffff;
    overflow: hidden;
}

@media (min-width: 640px) {
    .lh-bao-gia {
        padding-top: 96px;
        padding-bottom: 96px;
    }
}

@media (min-width: 1024px) {
    .lh-bao-gia {
        padding-top: 112px;
        padding-bottom: 112px;
    }
}

.lh-bao-gia * {
    box-sizing: border-box;
}

/* Ảnh nền mờ */
.lh-bao-gia .lh-bg-image {
    position: absolute;
    inset: 0;
    background-image: url("/wp-content/uploads/2026/08/bg_web-1.jpg");
    background-size: cover;
    background-position: center;
    opacity: 0.25;
    filter: blur(2px);
}

/* Lớp gradient phủ lên trên ảnh nền */
.lh-bao-gia .lh-bg-gradient {
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, rgb(5 10 48 / 35%), rgb(5 10 48 / 84%), rgb(5 10 48 / 63%));
}

.lh-bao-gia .lh-actions button {
    margin: 0;
}

/* Khối nội dung chính */
.lh-bao-gia .lh-content {
    position: relative;
    z-index: 10;
    max-width: 1290px;
    margin: 0 auto;
    padding-left: 0;
    padding-right: 0;
    text-align: center;
}

.lh-bao-gia .lh-content>*+* {
    margin-top: 28px;
}

@media (min-width: 640px) {
    .lh-bao-gia .lh-content>*+* {
        margin-top: 32px;
    }
}

/* Nhãn nhỏ phía trên tiêu đề */
.lh-bao-gia .lh-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 16px;
    border-radius: 9999px;
    background-color: rgba(221, 51, 51, 0.15);
    border: 1px solid rgba(221, 51, 51, 0.4);
    color: #fca5a5;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    backdrop-filter: blur(12px);
}

@media (min-width: 640px) {
    .lh-bao-gia .lh-badge {
        font-size: 14px;
    }
}

.lh-bao-gia .lh-badge-icon {
    width: 16px;
    height: 16px;
    color: #dd3333;
    animation: lh-bao-gia-spin 3s linear infinite;
}

@keyframes lh-bao-gia-spin {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

/* Tiêu đề */
.lh-bao-gia .lh-title {
    font-size: 40px;
    font-weight: 600;
    line-height: 1.25;
    color: #f1f5f9;
}

.lh-bao-gia .lh-title-highlight {
    background: linear-gradient(to right, #ff5555, #fcd34d, #ffffff);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
}

/* Mô tả */
.lh-bao-gia .lh-desc {
    color: #cbd5e1;
    font-size: 16px;
    font-weight: 300;
    line-height: 1.75;
    max-width: 768px;
    margin-left: auto;
    margin-right: auto;
}

/* Nhóm nút */
.lh-bao-gia .lh-actions {
    padding-top: 16px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 16px;
}

@media (min-width: 640px) {
    .lh-bao-gia .lh-actions {
        flex-direction: row;
    }
}

/* Nút chính - Thiết Kế Ngay */
.lh-bao-gia .lh-btn {
    width: 100%;
    padding: 10px 34px;
    border-radius: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-size: 14px;
    border: none;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    transition: filter 0.2s ease, transform 0.1s ease, background-color 0.2s ease;
}

@media (min-width: 640px) {
    .lh-bao-gia .lh-btn {
        width: auto;
        font-size: 16px;
    }
}

.lh-bao-gia .lh-btn:active {
    transform: scale(0.95);
}

.lh-bao-gia .lh-btn-primary {
    color: #ffffff;
    background: linear-gradient(to right, #dd3333, #dc2626, #b82222);
    box-shadow: 0 25px 50px -12px rgba(221, 51, 51, 0.3);
}

.lh-bao-gia .lh-btn-primary:hover {
    filter: brightness(1.1);
}

.lh-bao-gia .lh-btn-primary .lh-btn-icon {
    width: 20px;
    height: 20px;
    color: #ffffff;
}

.lh-bao-gia .lh-btn-secondary {
    color: #e2e8f0;
    background-color: rgba(13, 21, 77, 0.9);
    border: 1px solid rgba(221, 51, 51, 0.4);
    backdrop-filter: blur(12px);
}

.lh-bao-gia .lh-btn-secondary:hover {
    background-color: #141f6e;
}

.lh-bao-gia .lh-btn-secondary .lh-btn-icon {
    width: 20px;
    height: 20px;
    color: #dd3333;
}

/* fix css full page */
.btn_cnhao {
    width: fit-content;
    margin: auto;
}

.section-heading p,
.product-count,
.filter-panel,
.customizer-section .section-desc,
#why-us .why-us__stats,
#why-us .why-us__intro {}

#customizer .section-title {
    display: flex;
    justify-content: center;
    margin: 0;
}

#why-us .why-us__title {
    margin: 0;
}

/*pp*/
#form_pop_quote {
    border-radius: 24px;
    overflow: hidden;
    box-sizing: unset;
    background-color: unset;
}

.tms-overlay {
    z-index: 50;
    background: rgba(2, 6, 23, 0.85);
    backdrop-filter: blur(8px);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow-y: auto;
}

.tms-modal {
    position: relative;
    max-width: 640px;
    width: 100%;
    background: #0f172a;
    border: 0px solid rgba(245, 158, 11, 0.4);
    border-radius: 24px;
    padding: 24px;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.7);
    margin: 0;
}

.tms-close {
    position: absolute;
    top: 20px;
    right: 20px;
    padding: 8px;
    background: #02061796;
    color: #94a3b8;
    border-radius: 9999px;
    border: 1px solid #1e293b;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    display: none;
}

.tms-close:hover {
    color: #ffffff;
}

.tms-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin: 0;
}

.tms-header {
    display: flex;
    align-items: center;
    gap: 12px;
    border-bottom: 1px solid #1e293b;
    padding-bottom: 12px;
}

.tms-header-icon {
    width: 40px;
    height: 40px;
    border-radius: 12px;
    background: rgba(245, 158, 11, 0.2);
    border: 1px solid rgba(245, 158, 11, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fde68a;
    flex-shrink: 0;
}

.tms-title {
    font-size: 20px;
    font-weight: 700;
    color: #f1f5f9;
}

.tms-subtitle {
    font-size: 12px;
    color: #94a3b8;
    margin-top: 2px;
}

.tms-grid-2 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
    font-size: 12px;
}

@media (min-width: 640px) {
    .tms-grid-2 {
        grid-template-columns: 1fr 1fr;
    }
}

.tms-label {
    color: #cbd5e1;
    font-weight: 600;
    display: block;
    margin-bottom: 4px;
}

.tms-select {
    width: 100%;
    background: #02061796;
    border: 1px solid #334155;
    border-radius: 12px;
    color: #fde68a;
    font-weight: 500;
    font-size: 12px;
    height: 45px;
    margin: 0;
}

.tms-range-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 12px;
    margin-bottom: 4px;
}

.tms-range-value {
    color: #fde68a;
    font-weight: 700;
    font-family: monospace;
    font-size: 14px;
}

.tms-range {
    width: 100%;
    accent-color: #fde68a;
    cursor: pointer;
    margin: 0;
}

.tms-range-scale {
    display: flex;
    justify-content: space-between;
    font-size: 10px;
    color: #64748b;
    margin-top: 4px;
}

.tms-options-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    font-size: 12px;
}

.tms-checkbox-card {
    display: flex;
    align-items: center;
    gap: 8px;
    background: #02061796;
    padding: 10px;
    border-radius: 12px;
    border: 1px solid #1e293b;
    cursor: pointer;
}

.tms-checkbox-card input {
    accent-color: #fde68a;
    margin: 0;
}

.tms-checkbox-card span {
    color: #e2e8f0;
}

.tms-delivery-card {
    background: #02061796;
    padding: 8px;
    border-radius: 12px;
    border: 1px solid #1e293b;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.tms-delivery-card span {
    color: #cbd5e1;
}

.tms-delivery-select {
    background: transparent;
    color: #fde68a;
    font-weight: 700;
    font-size: 12px;
    border: none;
    margin: 0;
}

.tms-price-box {
    background: #02061796;
    padding: 16px;
    border-radius: 16px;
    border: 1px solid rgba(245, 158, 11, 0.3);
    font-size: 12px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.tms-price-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-weight: 700;
    color: #fde68a;
}

.tms-price-total {
    font-size: 18px;
    color: #fcd34d;
    font-weight: 700;
}

.tms-price-detail {
    font-size: 11px;
    color: #94a3b8;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    padding-top: 8px;
    border-top: 1px solid #1e293b;
}

.tms-contact-section {
    display: flex;
    flex-direction: column;
    gap: 12px;
    padding-top: 0px;
    border-top: 0px solid #1e293b;
}

.tms-contact-title {
    font-size: 12px;
    font-weight: 700;
    color: #fde68a;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.tms-contact-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 12px;
    font-size: 12px;
}

@media (min-width: 640px) {
    .tms-contact-grid {
        grid-template-columns: 1fr 1fr;
    }
}

.tms-input,
.tms-textarea {
    padding: 8px 12px;
    background: #02061796;
    border: 1px solid #334155;
    border-radius: 12px;
    color: #e2e8f0;
    font-family: 'Manrope', sans-serif;
    font-size: 12px;
    width: 100%;
}

.tms-textarea {
    resize: vertical;
}

.tms-submit {
    width: 100%;
    padding: 14px;
    background: #dd3333;
    color: #fff;
    font-weight: 700;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    border: none;
    border-radius: 12px;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    cursor: pointer;
    margin: 0;
}

.tms-submit:hover {
    filter: brightness(1.1);
}

.tms-error {
    border-color: #ef4444 !important;
}

.tms-contact-section .tms-contact-grid input {
    padding: 8px 12px;
    background: #02061796;
    border: 1px solid #334155;
    border-radius: 12px;
    color: #e2e8f0;
    font-size: 12px;
    width: 100%;
    height: 45px;
    margin: 0;
}

.tms-textarea {
    margin: 0;
}

div.fp-watermark {
    display: none;
}

/* css fix button */
.personalize-btn {
    position: relative;
    width: fit-content;
    padding: 14px 24px;
    border-radius: 12px;
    background: linear-gradient(to bottom, #e31e28, #cb141c, #990a10);
    border: 1px solid rgba(239, 68, 68, 0.25);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    color: #fff;
    box-shadow: 0 10px 35px rgba(153, 10, 16, 0.35);
    transition: box-shadow 0.3s ease, transform 0.2s ease;
    cursor: pointer;
    overflow: hidden;
    margin: auto;
}

/* Top thin glowing line */
.btn-line-top {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1.8px;
    background: linear-gradient(to right, transparent, rgba(255, 255, 255, 0.8), transparent);
    opacity: 0.95;
}

/* Bottom thin line */
.btn-line-bottom {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(to right, transparent, rgba(252, 165, 165, 0.4), transparent);
}

/* Glowing dots */
.btn-dot-left {
    position: absolute;
    left: 28%;
    bottom: -1px;
    width: 0.625rem;
    height: 2px;
    background: #fff;
    border-radius: 9999px;
    box-shadow: 0 0 10px 5px rgba(255, 255, 255, 1), 0 0 18px 8px rgba(239, 68, 68, 0.7);
    pointer-events: none;
}

.btn-dot-right {
    position: absolute;
    right: 31%;
    top: -1px;
    width: 0.5rem;
    height: 2px;
    background: #fff;
    border-radius: 9999px;
    box-shadow: 0 0 10px 5px rgba(255, 255, 255, 1), 0 0 18px 8px rgba(239, 68, 68, 0.7);
    pointer-events: none;
}

/* Shimmer sweep */
.btn-shimmer {
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, transparent, rgba(255, 255, 255, 0.12), transparent);
    transform: translateX(-100%);
    transition: transform 1s ease-in-out;
    pointer-events: none;
}

.personalize-btn:hover .btn-shimmer {
    transform: translateX(100%);
}

/* Icon wrapper */
.btn-icon-wrap {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.95);
}

.btn-icon {
    animation: btn-bounce 3.5s infinite;
}

.btn-sparkle-top {
    position: absolute;
    top: -0.375rem;
    left: -0.375rem;
    color: rgba(255, 255, 255, 0.9);
    font-size: 10px;
    animation: btn-pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}

.btn-sparkle-bottom {
    position: absolute;
    bottom: -0.25rem;
    right: -0.25rem;
    color: rgba(255, 255, 255, 0.9);
    font-size: 9px;
    animation: btn-ping 1s cubic-bezier(0, 0, 0.2, 1) infinite;
}

.btn-label {
    position: relative;
    font-size: 16px;
    font-weight: 700;
    letter-spacing: 0.05em;
    color: #fff;
    user-select: none;
    white-space: nowrap;
    -webkit-font-smoothing: antialiased;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.15);
}

@keyframes btn-bounce {

    0%,
    100% {
        transform: translateY(-15%);
        animation-timing-function: cubic-bezier(0.8, 0, 1, 1);
    }

    50% {
        transform: translateY(0);
        animation-timing-function: cubic-bezier(0, 0, 0.2, 1);
    }
}

@keyframes btn-pulse {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0.5;
    }
}

@keyframes btn-ping {
    0% {
        transform: scale(1);
        opacity: 1;
    }

    75%,
    100% {
        transform: scale(2);
        opacity: 0;
    }
}

/**/
.bxg-wrap {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
    margin: 56px 0;
    max-width: 1024px;
    width: 100%;
    padding: 0 16px;
    justify-items: center;
    margin-left: auto;
    margin-right: auto;
    box-sizing: border-box;
}

@media (min-width: 640px) {
    .bxg-wrap {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .bxg-wrap {
        grid-template-columns: repeat(4, 1fr);
    }
}

.bxg-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    padding: 20px;
    border-radius: 16px;
    background: rgba(9, 15, 35, 0.6);
    border: 1px solid #0f172a;
    text-align: center;
    width: 100%;
    box-sizing: border-box;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.25);
    position: relative;
    cursor: default;
    transition: border-color 0.3s ease, background-color 0.3s ease, box-shadow 0.3s ease;
}

.bxg-card:hover {
    border-color: rgba(245, 158, 11, 0.2);
    background: rgba(12, 20, 46, 0.8);
    box-shadow: 0 8px 30px rgba(245, 158, 11, 0.04);
}

.bxg-card:hover .bxg-icon {
    border-color: rgba(245, 158, 11, 0.4);
    color: #fbbf24;
    box-shadow: 0 0 15px rgba(245, 158, 11, 0.15);
}

.bxg-card:hover .bxg-icon-glow {
    opacity: 1;
}

.bxg-icon {
    width: 48px;
    height: 48px;
    border-radius: 9999px;
    background: rgba(15, 23, 42, 0.9);
    border: 1px solid rgba(30, 41, 59, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(245, 158, 11, 0.9);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    position: relative;
    flex-shrink: 0;
    transition: border-color 0.3s ease, color 0.3s ease, box-shadow 0.3s ease;
}

.bxg-icon-glow {
    position: absolute;
    inset: 0;
    border-radius: 9999px;
    background: rgba(245, 158, 11, 0.05);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.bxg-icon svg {
    stroke-width: 1.8;
    position: relative;
    z-index: 1;
}

.bxg-icon-text {
    font-style: italic;
    font-weight: 700;
    font-size: 14px;
    color: #f59e0b;
    position: relative;
    z-index: 1;
}

.bxg-body {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.bxg-title {
    font-size: 16px;
    font-weight: 600;
    color: #ffffff;
    letter-spacing: 0.02em;
}

.bxg-desc {
    font-size: 14px;
    color: #94a3b8;
    font-weight: 300;
    line-height: 1.6;
}

.tms-header-icon p {
    line-height: 0;
}