/* ══════════════════════════════════════════════════════════════
  CUSTOMER CARE SECTION - NEW LAYOUT
   ══════════════════════════════════════════════════════════════ */

.cms-hero {
    position: relative;
    min-height: 80vh;
    overflow: hidden;
    background-color: #ffffff;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='80' height='80'%3E%3C!-- H dashed --%3E%3Cline x1='7' y1='0' x2='73' y2='0' stroke='%23BAD2FF' stroke-opacity='.4' stroke-width='1' stroke-dasharray='4 5'/%3E%3C!-- V dashed --%3E%3Cline x1='0' y1='7' x2='0' y2='73' stroke='%23BAD2FF' stroke-opacity='.4' stroke-width='1' stroke-dasharray='4 5'/%3E%3C!-- TL corner --%3E%3Cline x1='0' y1='0' x2='6' y2='0' stroke='%23BAD2FF' stroke-opacity='.25' stroke-width='1'/%3E%3Cline x1='0' y1='0' x2='0' y2='6' stroke='%23BAD2FF' stroke-opacity='.25' stroke-width='1'/%3E%3C!-- TR corner --%3E%3Cline x1='74' y1='0' x2='80' y2='0' stroke='%23BAD2FF' stroke-opacity='.25' stroke-width='1'/%3E%3Cline x1='80' y1='0' x2='80' y2='6' stroke='%23BAD2FF' stroke-opacity='.25' stroke-width='1'/%3E%3C!-- BL corner --%3E%3Cline x1='0' y1='74' x2='0' y2='80' stroke='%23BAD2FF' stroke-opacity='.25' stroke-width='1'/%3E%3Cline x1='0' y1='80' x2='6' y2='80' stroke='%23BAD2FF' stroke-opacity='.25' stroke-width='1'/%3E%3C!-- BR corner --%3E%3Cline x1='74' y1='80' x2='80' y2='80' stroke='%23BAD2FF' stroke-opacity='.25' stroke-width='1'/%3E%3Cline x1='80' y1='74' x2='80' y2='80' stroke='%23BAD2FF' stroke-opacity='.25' stroke-width='1'/%3E%3C/svg%3E");
}

.cms-hero__background {
    display: flex;
    width: 100%;
    min-height: 80vh;
    position: relative;
}

/* ── Left Side - Image (Dàn hết sang trái) ── */
.cms-hero__image-left {
    flex: 0 0 45%;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    padding-left: 40px;
    padding-right: 0;
}

.cms-hero__img {
    width: 100%;
    height: auto;
    max-width: 800px;
    object-fit: contain;
}

/* ── Right Side - Content ── */
.cms-hero__content-right {
    flex: 0 0 55%;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    padding: 60px 40px 60px 80px;
}

.cms-hero__text {
    display: flex;
    flex-direction: column;
    gap: 10px;
    max-width: 600px;
    width: 100%;
}

.cms-hero__badge {
    display: inline-block;
    background: #EEF4FF;
    color: #1a6ff4;
    font-size: 1.3rem;
    font-weight: 600;
    padding: 6px 14px;
    border-radius: 999px;
    margin-bottom: 20px;
}

.cms-hero__title {
    font-size: clamp(2.8rem, 3vw, 4.4rem);
    font-weight: 800;
    line-height: 1.15;
    margin: 0 0 16px;
    letter-spacing: -0.02em;
    color: #0f1c2e;
}

.cms-hero__title-highlight {
    color: #1a6ff4;
    text-transform: uppercase;
}

.cms-hero__subtitle {
    font-size: 2.3vw;
    font-weight: 700;
    line-height: 1.2;
    color: #2c3e50;
    text-transform: uppercase;
    letter-spacing: -0.01em;
}

.cms-hero__description {
    font-size: 0.8vw;
    color: #5a6c7d;
    line-height: 1.7;
    margin: 0;
    font-weight: 400;
}

.cms-hero__cta {
    margin-top: 16px;
}

.cms-hero__btn {
    display: inline-block;
    font-size: 16px;
    font-weight: 600;
    padding: 12px 36px;
    background: #1a6ff4;
    color: white;
    border: none;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.cms-hero__btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(26, 111, 244, 0.4);
    background: #0056d2;
}

.cms-hero__btn:active {
    transform: translateY(-1px);
}



/* ══════════════════════════════════════════════════════════════
   RESPONSIVE: TABLET
   ══════════════════════════════════════════════════════════════ */
@media (max-width: 1024px) {
    .cms-hero__image-left {
        flex: 0 0 55%;
        padding-left: 20px;
    }

    .cms-hero__content-right {
        flex: 0 0 45%;
        padding: 40px 20px 40px 0;
    }

    .cms-hero__text {
        gap: 20px;
    }
}

/* ══════════════════════════════════════════════════════════════
   RESPONSIVE: MOBILE
   ══════════════════════════════════════════════════════════════ */
@media (max-width: 768px) {
    .cms-hero {
        min-height: auto;
    }

    .cms-hero__background {
        flex-direction: column;
        min-height: auto;
    }

    .cms-hero__content-right {
        flex: none;
        order: 1;
        padding: 40px 20px;
        text-align: center;
        background: white;
    }

    .cms-hero__image-left {
        flex: none;
        order: 2;
        padding: 20px;
        justify-content: center;
    }

    .cms-hero__text {
        align-items: center;
        text-align: center;
        gap: 20px;
    }

    .cms-hero__title {
        font-size: clamp(28px, 6vw, 36px);
    }

    .cms-hero__subtitle {
        font-size: clamp(24px, 5vw, 32px);
    }

    .cms-hero__description {
        font-size: 16px;
        max-width: 400px;
    }

    .cms-hero__btn {
        padding: 16px 32px;
        font-size: 15px;
    }
}

@media (max-width: 480px) {
    .cms-hero__content-right {
        padding: 30px 15px;
    }

    .cms-hero__image-left {
        padding: 15px;
    }

    .cms-hero__text {
        gap: 16px;
    }

    .cms-hero__title {
        font-size: clamp(24px, 7vw, 32px);
    }

    .cms-hero__subtitle {
        font-size: clamp(20px, 6vw, 28px);
    }

    .cms-hero__description {
        font-size: 15px;
    }

    .cms-hero__btn {
        padding: 14px 28px;
        font-size: 14px;
    }
}

/* ////////////////////////////////////////////////////////////
   CUSTOMER CARE METRICS SECTION
   //////////////////////////////////////////////////////////// */

.cc-metrics {
    /* padding: var(--space-4xl) 0; */
    background-color: var(--color-surface);
    text-align: center;
    position: relative;
    background-color: #ffffff;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='80' height='80'%3E%3C!-- H dashed --%3E%3Cline x1='7' y1='0' x2='73' y2='0' stroke='%23BAD2FF' stroke-opacity='.4' stroke-width='1' stroke-dasharray='4 5'/%3E%3C!-- V dashed --%3E%3Cline x1='0' y1='7' x2='0' y2='73' stroke='%23BAD2FF' stroke-opacity='.4' stroke-width='1' stroke-dasharray='4 5'/%3E%3C!-- TL corner --%3E%3Cline x1='0' y1='0' x2='6' y2='0' stroke='%23BAD2FF' stroke-opacity='.25' stroke-width='1'/%3E%3Cline x1='0' y1='0' x2='0' y2='6' stroke='%23BAD2FF' stroke-opacity='.25' stroke-width='1'/%3E%3C!-- TR corner --%3E%3Cline x1='74' y1='0' x2='80' y2='0' stroke='%23BAD2FF' stroke-opacity='.25' stroke-width='1'/%3E%3Cline x1='80' y1='0' x2='80' y2='6' stroke='%23BAD2FF' stroke-opacity='.25' stroke-width='1'/%3E%3C!-- BL corner --%3E%3Cline x1='0' y1='74' x2='0' y2='80' stroke='%23BAD2FF' stroke-opacity='.25' stroke-width='1'/%3E%3Cline x1='0' y1='80' x2='6' y2='80' stroke='%23BAD2FF' stroke-opacity='.25' stroke-width='1'/%3E%3C!-- BR corner --%3E%3Cline x1='74' y1='80' x2='80' y2='80' stroke='%23BAD2FF' stroke-opacity='.25' stroke-width='1'/%3E%3Cline x1='80' y1='74' x2='80' y2='80' stroke='%23BAD2FF' stroke-opacity='.25' stroke-width='1'/%3E%3C/svg%3E");
}

.cc-metrics__title {
    font-size: clamp(var(--font-2xl), 4vw, var(--font-4xl));
    font-weight: 600;
    color: var(--color-text-primary);
    margin-bottom: var(--space-md);
    line-height: 1.2;
}

.cc-metrics__subtitle {
    font-size: clamp(var(--font-base), 1.5vw, var(--font-md));
    color: var(--color-text-muted);
    margin-bottom: var(--space-2xl);
    line-height: 1.6;
    max-width: 60rem;
    margin-inline: auto;
}

.cc-metrics__image {
    display: flex;
    justify-content: center;
    align-items: center;
    /* margin-bottom: var(--space-3xl); */
}

.cc-metrics__img {
    width: 100%;
    height: auto;
    max-width: 90%;
    object-fit: contain;
    border-radius: 16px;
    border: 8px solid #BAD2FF4D;
}

.cc-metrics__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-2xl);
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 var(--container-pad);
}

.cc-metric-item {
    padding: var(--space-lg);
}

.cc-metric-item__number {
    font-size: 40px;
    font-weight: 600;
    color: var(--color-text-third);
    /* margin-bottom: var(--space-sm); */
    display: flex;
    justify-content: center;
    align-items: center;
}

.cc-metric-item__label {
    font-size: var(--font-md);
    color: var(--color-text-muted);
    font-weight: 500;
}

/* Responsive */
@media (max-width: 1024px) {
    .cc-metrics__img {
        max-width: 600px;
    }

    .cc-metrics__grid {
        grid-template-columns: repeat(3, 1fr);
        gap: var(--space-lg);
    }
}

@media (max-width: 768px) {
    .cc-metrics {
        padding: var(--space-3xl) 0;
    }

    .cc-metrics__img {
        max-width: 100%;
    }

    .cc-metrics__grid {
        grid-template-columns: 1fr;
        gap: var(--space-xl);
    }

    .cc-metric-item {
        padding: var(--space-lg);
    }

    .cc-metric-item__number {
        font-size: var(--font-4xl);
    }
}

/* ////////////////////////////////////////////////////////////
   PINGX SECTION
   //////////////////////////////////////////////////////////// */

.pingx-section {
    padding: var(--space-4xl) 0;
    background-color: #ffffff;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='80' height='80'%3E%3C!-- H dashed --%3E%3Cline x1='7' y1='0' x2='73' y2='0' stroke='%23BAD2FF' stroke-opacity='.4' stroke-width='1' stroke-dasharray='4 5'/%3E%3C!-- V dashed --%3E%3Cline x1='0' y1='7' x2='0' y2='73' stroke='%23BAD2FF' stroke-opacity='.4' stroke-width='1' stroke-dasharray='4 5'/%3E%3C!-- TL corner --%3E%3Cline x1='0' y1='0' x2='6' y2='0' stroke='%23BAD2FF' stroke-opacity='.25' stroke-width='1'/%3E%3Cline x1='0' y1='0' x2='0' y2='6' stroke='%23BAD2FF' stroke-opacity='.25' stroke-width='1'/%3E%3C!-- TR corner --%3E%3Cline x1='74' y1='0' x2='80' y2='0' stroke='%23BAD2FF' stroke-opacity='.25' stroke-width='1'/%3E%3Cline x1='80' y1='0' x2='80' y2='6' stroke='%23BAD2FF' stroke-opacity='.25' stroke-width='1'/%3E%3C!-- BL corner --%3E%3Cline x1='0' y1='74' x2='0' y2='80' stroke='%23BAD2FF' stroke-opacity='.25' stroke-width='1'/%3E%3Cline x1='0' y1='80' x2='6' y2='80' stroke='%23BAD2FF' stroke-opacity='.25' stroke-width='1'/%3E%3C!-- BR corner --%3E%3Cline x1='74' y1='80' x2='80' y2='80' stroke='%23BAD2FF' stroke-opacity='.25' stroke-width='1'/%3E%3Cline x1='80' y1='74' x2='80' y2='80' stroke='%23BAD2FF' stroke-opacity='.25' stroke-width='1'/%3E%3C/svg%3E");
}

.pingx-section__content {
    display: grid;
    grid-template-columns: 1fr 1.4fr;
    gap: var(--space-3xl);
    align-items: flex-start;
}

.pingx-section__left {
    display: flex;
    flex-direction: column;
    gap: var(--space-lg);
    position: relative;
    padding-left: var(--space-xl);
}

.pingx-section__left::before {
    content: '';
    position: absolute;
    left: 0;
    top: 6px;
    width: 11px;
    height: 10px;
    border-radius: 50%;
    background-color: #1a6ff4;
    z-index: 1;
}

.pingx-section__left::after {
    content: '';
    position: absolute;
    left: 4px;
    top: 16px;
    width: 3px;
    height: 24em;
    background-color: #1a6ff4;
    opacity: 1;
}

.pingx-section__title {
    font-size: 32px;
    font-weight: 700;
    color: var(--color-text-primary);
    line-height: 1.3;
    margin: 0;
}

.pingx-section__brand {
    color: #1a6ff4;
}

.pingx-section__description {
    font-size: clamp(var(--font-sm), 1.1vw, var(--font-base));
    color: var(--color-text-muted);
    line-height: 1.75;
    margin: 0;
}

.pingx-section__right {
    display: flex;
    justify-content: flex-end;
    align-items: center;
}

.pingx-section__image {
    background: linear-gradient(135deg, #e8f0ff 0%, #f0f5ff 100%);
    border-radius: 20px;
    padding: var(--space-xl);
    width: 100%;
    /* box-shadow: 0 4px 24px rgba(26, 111, 244, 0.08); */
}

.pingx-section__img {
    width: 100%;
    height: auto;
    object-fit: contain;
    border-radius: 12px;
    display: block;
}

/* Responsive */
@media (max-width: 1024px) {
    .pingx-section__content {
        grid-template-columns: 1fr 1.2fr;
        gap: var(--space-2xl);
    }
}

/* ////////////////////////////////////////////////////////////
   CC EFFECTIVE SECTION (inside freetrial__card)
   //////////////////////////////////////////////////////////// */

.cc-effective {
    display: flex;
    flex-direction: column;
    gap: var(--space-3xl);
    text-align: center;
    width: 100%;
}

.cc-effective__header {
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
}

.cc-effective__title {
    font-size: clamp(var(--font-2xl), 3.5vw, var(--font-4xl));
    font-weight: 700;
    color: #ffffff;
    margin: 0;
    line-height: 1.2;
}

.cc-effective__subtitle {
    font-size: clamp(var(--font-sm), 1.2vw, var(--font-base));
    color: rgba(255, 255, 255, 0.75);
    line-height: 1.7;
    margin: 0;
}

.cc-effective__cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-lg);
}

.cc-effective__card {
    display: flex;
    flex-direction: column;
    gap: var(--space-lg);
    text-align: center;
    background: rgba(255, 255, 255, 0.18);
    border-radius: 20px;
    padding: 24px;
}

.cc-effective__card-visual {
    background: #ffffff;
    border-radius: 14px;
    overflow: hidden;
    padding: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 17em;
}

.cc-effective__card-img {
    width: 100%;
    height: auto;
    object-fit: contain;
    display: block;
    border-radius: 8px;
}

.cc-effective__card-title {
    font-size: 24px;
    font-weight: 700;
    color: #ffffff;
    margin: 0;
}

.cc-effective__card-desc {
    font-size: 18px;
    color: #ffff;
    line-height: 1.65;
    margin: 0;
}

@media (max-width: 1024px) {
    .cc-effective__cards {
        gap: var(--space-md);
    }
}

@media (max-width: 768px) {
    .cc-effective__cards {
        grid-template-columns: 1fr;
        gap: var(--space-xl);
    }

    .cc-effective__card {
        text-align: center;
    }
}

@media (max-width: 768px) {
    .pingx-section {
        padding: var(--space-3xl) 0;
    }

    .pingx-section__content {
        grid-template-columns: 1fr;
        gap: var(--space-xl);
    }

    .pingx-section__right {
        justify-content: center;
    }

    .pingx-section__image {
        padding: var(--space-lg);
    }
}

/* ────────────────────────────────────────────────────────────
   CONTACT – Badge
   ──────────────────────────────────────────────────────────── */

.customer-care__title {
    color: #0C5EFF !important;
    font-weight: 600 !important;
}

/* ─── Contact info items: icon + text row ─── */
.contact .contact__contact-item {
    flex-direction: row;
    align-items: center;
    gap: 16px;
}

.contact__contact-icon {
    width: 52px;
    height: 52px;
    flex-shrink: 0;
    background: #1a6ff4;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact__contact-text {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.contact__badge {
    display: inline-block;
    background: #FEF5EE;
    color: #EF5E2C;
    font-size: 1.3rem;
    font-weight: 600;
    padding: 6px 14px;
    border-radius: 999px;
    width: fit-content;
    font-style: italic;
}

/* ────────────────────────────────────────────────────────────
   CONTACT – Brand Trust bar
   ──────────────────────────────────────────────────────────── */

.contact__brand-trust {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    gap: 40px;
    margin-top: 40px;
    padding-top: 32px;
    border-top: 1px solid rgba(0, 0, 0, 0.08);
}

.contact__brand-trust-label {
    font-size: var(--font-sm);
    color: #5a6a85;
    line-height: 1.5;
    white-space: nowrap;
    flex-shrink: 0;
    min-width: max-content;
}

.contact__brand-trust-logos {
    display: flex;
    align-items: center;
    flex: 1;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 16px;
}

.contact__brand-logo {
    height: 40px;
    width: auto;
    object-fit: contain;
}

.contact__brand-logo:hover {
    opacity: 1;
}

@media (max-width: 768px) {
    .contact__brand-trust {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
    }

    .contact__brand-trust-logos {
        gap: 20px;
    }

    .contact__brand-logo {
        height: 22px;
    }
}