/* =============================================
    RESET & ROOT
============================================= */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --blue-primary: #1A56DB;
    --blue-dark: #1e3a8a;
    --blue-mid: #2563EB;
    --orange: #F97316;
    --red: #F26F31;
    --yellow: #FFD600;
    --text-dark: #111827;
    --text-body: #374151;
    --text-muted: #6B7280;
    --text-light: #9CA3AF;
    --border: #E5E7EB;
    --bg-blue-light: #EFF6FF;
    --shadow: 0 4px 24px rgba(0, 0, 0, 0.08);
}

html {
    font-size: 16px;
    scroll-behavior: smooth;
    overflow-x: clip !important;
    max-width: 100%;
}

body {
    font-family: 'Inter', -apple-system, sans-serif;
    color: var(--text-dark);
    background: #fff;
    line-height: 1.6;
    overflow-x: clip !important;
    max-width: 100%;
    width: 100%;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

button,
input,
select {
    font-family: inherit;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    width: 100%;
    box-sizing: border-box;
    overflow: hidden;
}

.tenten_25072024 .tg_header_2024 .hd_middle {
    margin-top: 10px;
}

/* =============================================
    HEADER
============================================= */
.ldp-header {
    background: #fff;
    border-bottom: 1px solid var(--border);
    position: sticky;
    top: 0;
    z-index: 100;
}

.ldp-header__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 24px;
    max-width: 1440px;
    margin: 0 auto;
    height: 64px;
    gap: 12px;
}

.ldp-header__logo-wrap {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-shrink: 0;
}

.ldp-header__logo-wrap img {
    height: 40px;
    width: auto;
}

/* Nav items */
.ldp-header__nav {
    display: flex;
    align-items: center;
    gap: 2px;
    flex: 1;
    justify-content: center;
}

.ldp-header__nav-btn {
    display: flex;
    align-items: center;
    gap: 4px;
    padding: 8px 12px;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 500;
    color: var(--text-dark);
    cursor: pointer;
    transition: background 0.2s;
    border: none;
    background: transparent;
    white-space: nowrap;
}

.ldp-header__nav-btn:hover {
    background: var(--bg-blue-light);
}

/* Right actions */
.ldp-header__actions {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-shrink: 0;
}

.ldp-header__sale-badge {
    background: linear-gradient(135deg, #FF6B00, #FFD000);
    border-radius: 8px;
    padding: 4px 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
    line-height: 1.1;
    cursor: pointer;
}

.ldp-header__sale-badge span:first-child {
    font-size: 9px;
    font-weight: 800;
    color: #fff;
    text-transform: uppercase;
}

.ldp-header__sale-badge span:last-child {
    font-size: 14px;
    font-weight: 900;
    color: #fff;
}

.ldp-header__icon-btn {
    width: 36px;
    height: 36px;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: var(--text-body);
    transition: background 0.2s;
}

.ldp-header__icon-btn:hover {
    background: var(--bg-blue-light);
}

.ldp-header__lang {
    display: flex;
    align-items: center;
    gap: 4px;
    padding: 6px 10px;
    border: 1px solid var(--border);
    border-radius: 6px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
}

/* =============================================
    HERO SECTION
============================================= */
.ldp-hero {
    background: url('/landing/khuyen_mai_ten_mien/images/Background_page.svg') center center / cover no-repeat;
    position: relative;
    overflow: hidden;
    min-height: 520px;
    display: flex;
    align-items: center;
}

/* City backdrop image on right */
.ldp-hero::after {
    content: '';
    position: absolute;
    right: 0;
    top: 0;
    bottom: 0;
    width: 55%;
    background: url('/landing/khuyen_mai_ten_mien/images/image 141.png') right center / cover no-repeat;
    opacity: 0.35;
    pointer-events: none;
}

.ldp-hero__inner {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin: 0 auto;
    padding: 80px 24px 140px 24px;
    width: 100%;
    display: flex;
    justify-content: center;
}

.ldp-hero__content {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.ldp-hero__title {
    font-size: 48px;
    font-weight: 600;
    color: #0066B2;
    line-height: 1.2;
    margin-bottom: 20px;
    transform: skewX(-12deg); 
    /* font-style: italic; */
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    flex-wrap: wrap;
}

.ldp-hero__title-hot-img {
    height: 48px;
    width: auto;
    vertical-align: middle;
    display: inline-block;
    transform: translateY(-2px);
}

.ldp-hero__subtitle {
    font-size: 16px;
    color: #1A1A1A;
    line-height: 1.65;
    margin-bottom: 24px;
    max-width: 800px;
}

.ldp-hero__price-hl {
    color: #F26F31;
    font-weight: 700;
    font-size: 22px;
}

/* Trust badges */
.ldp-hero__trust {
    display: flex;
    justify-content: center;
    gap: 16px;
    margin-bottom: 32px;
    width: 100%;
}

.ldp-hero__trust-badge {
    display: flex;
    align-items: center;
    gap: 10px;
    /* background: linear-gradient(90deg, #D3E8FD 0%, #B7D9FF 100%); */
    background: linear-gradient(90deg, #f2f9ff 0%, #f6faff 100%);
    /* border: 1px solid #E2E8F0; */
    box-shadow: 0px 4px 20px rgba(0, 0, 0, 0.05);
    border-radius: 10px;
    padding: 10px 16px;
    text-align: left;
}

.ldp-hero__trust-flag {
    width: 45px;
    height: 36px;
    border-radius: 3px;
    flex-shrink: 0;
}

.ldp-hero__trust-label {
    font-size: 11px;
    color: #000000;
    line-height: 1.3;
    transform: skewX(-12deg);
}

.ldp-hero__trust-name {
    font-size: 14px;
    font-weight: 500;
    color: #0066B2;
    transform: skewX(-12deg);
}

/* Domain price rows */
.ldp-hero__domains {
    display: flex;
    flex-direction: column;
    gap: 16px;
    align-items: center;
    width: 100%;
}

.ldp-hero__domains-row-wrapper {
    display: flex;
    justify-content: center;
    gap: 24px;
    width: 100%;
}

.ldp-hero__domain-row {
    display: inline-flex;
    align-items: flex-start;
    /* background: linear-gradient(90deg, #FFEDED 0%, #FFEFDF 100%); */
    background: linear-gradient(90deg, #fff5f5 0%, #fff8f0 100%);
    border-radius: 9999px;
    padding: 8px 20px 8px 24px;
    text-align: left;
    width: fit-content;
    gap: 14px;
    flex-shrink: 0;
}

.ldp-hero__domain-ext {
    font-size: 26px;
    font-weight: 800;
    color: #133C8A;
    display: flex;
    align-items: center;
}

.ldp-hero__domain-info {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    gap: 3px;
    width: auto;
}

.ldp-hero__price-and-star {
    display: flex;
    align-items: center;
    gap: 6px;
    width: auto;
}

.ldp-hero__domain-price {
    font-size: 14px;
    font-weight: 700;
    color: #FF5500;
    line-height: 1.2;
    white-space: nowrap;
}


.ldp-hero__domain-old {
    font-size: 11px;
    color: #9A9A9A;
    text-decoration: line-through;
    line-height: 1.2;
}

.ldp-hero__domain-star {
    font-size: 12px;
    color: #1A1A1A;
    font-weight: 700;
}

.ldp-hero__domain-coupon {
    background: #FF383C;
    color: #fff;
    font-size: 11px;
    font-weight: 700;
    padding: 6px 14px;
    border-radius: 9999px;
    white-space: nowrap;
    text-align: center;
    box-shadow: 0 2px 6px rgba(255, 53, 0, 0.2);
}

/* =============================================
    SEARCH SECTION
============================================= */
.ldp-search-wrap {
    padding: 0 24px;
    position: relative;
    z-index: 10;
    margin-top: -48px;
}

.ldp-search-box {
    max-width: 1200px;
    margin: 0 auto;
    background: #fff;
    border-radius: 20px;
    box-shadow: 0 8px 48px rgba(0, 0, 0, 0.14);
    padding: 32px 40px;
}

.ldp-search-box__title {
    text-align: center;
    font-size: 22px;
    font-weight: 500;
    color: #151515;
    margin-bottom: 18px;
}

.ldp-search-form {
    display: flex;
    align-items: center;
    border: 1.5px solid #578FFF;
    border-radius: 9999px;
    overflow: hidden;
    background: #fff;
    transition: border-color 0.2s, box-shadow 0.2s;
    padding: 4px 6px;
    max-width: 720px;
    margin: 0 auto 28px auto;
}

.ldp-search-form:focus-within {
    border-color: #042cb3;
    box-shadow: 0 0 0 3px rgba(6, 59, 230, 0.12);
}

.ldp-search-input {
    flex: 1;
    border: none;
    outline: none;
    padding: 12px 24px;
    font-size: 15px;
    color: var(--text-dark);
    background: transparent;
    resize: none;
    overflow: hidden;
    height: 24px;
    line-height: 24px;
    font-family: inherit;
    box-sizing: content-box;
    display: block;
}

.ldp-search-input::placeholder {
    color: var(--text-light);
}

.ldp-search-btn {
    background: #578FFF;
    color: #fff;
    border: none;
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    flex-shrink: 0;
    border-radius: 50%;
    transition: background 0.2s;
    box-shadow: 0 2px 8px rgba(6, 59, 230, 0.25);
}

.ldp-search-trust {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 18px;
    flex-wrap: wrap;
    gap: 0;
}

.ldp-search-trust__item {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 24px;
    font-size: 13px;
    font-weight: 500;
    color: var(--text-body);
}

.ldp-search-trust__item+.ldp-search-trust__item {
    border-left: 1px solid var(--border);
}

.ldp-search-trust__item svg {
    color: var(--blue-primary);
    flex-shrink: 0;
}

.ldp-search-trust__strong {
    font-weight: 700;
}

/* =============================================
    DOMAIN PRICING TABS
============================================= */
.ldp-pricing {
    padding: 80px 0 60px;
}

.ldp-section-title {
    text-align: center;
    font-size: 32px;
    font-weight: 600;
    line-height: 1.3;
}

.ldp-section-title em {
    font-style: normal;
    color: var(--blue-primary);
}

.ldp-tabs-wrap {
    display: flex;
    justify-content: center;
    margin: 24px auto;
}

.ldp-tabs {
    display: flex;
    background: #EDF3FF;
    border-radius: 50px;
    padding: 6px;
    gap: 4px;
}

.ldp-tab {
    padding: 10px 22px;
    border-radius: 50px;
    border: none;
    background: transparent;
    font-size: 14px;
    font-weight: 600;
    color: #8E8E93;
    cursor: pointer;
    transition: all 0.25s;
    white-space: nowrap;
}

.ldp-tab.active {
    background: var(--blue-primary);
    color: #fff;
    box-shadow: 0 4px 12px rgba(26, 86, 219, 0.35);
}
a:hover, a:focus {
    text-decoration: auto!important;
    /* color:#fff!important; */
}
.ldp-tab-subtitle {
    text-align: center;
    font-size: 14px;
    color: #000000;
    font-style: normal;
    margin-bottom: 40px;
}

.ldp-panel {
    display: none;
}

.ldp-panel.active {
    display: block;
}

/* Cards grid */
.ldp-cards-wrap {
    width: 100%;
}

.ldp-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    align-items: stretch;
}

/* Base card */
/* Base card */
.ldp-card {
    border: 2px solid #D8E2FD;
    border-radius: 16px;
    background: #fff;
    position: relative;
    transition: transform 0.25s, box-shadow 0.25s, border-color 0.25s;
    display: flex;
    flex-direction: column;
}

.ldp-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 48px rgba(6, 59, 230, 0.15);
    border-color: #578FFF;
}

/* Featured card: highlight border and shift up */
.ldp-card--featured {
    border-color: #578FFF;
    border-width: 2px;
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(6, 59, 230, 0.12);
    z-index: 2;
}

.ldp-card--featured:hover {
    transform: translateY(-8px);
    border-color: #042cb3;
    box-shadow: 0 16px 40px rgba(6, 59, 230, 0.2);
}

/* Hot badge */
.ldp-card__hot-badge-img {
    position: absolute;
    top: -40px;
    right: 15px;
    width: 72px;
    height: auto;
    z-index: 10;
}

/* Card Header */
.ldp-card__head {
    padding: 14px 20px;
    text-align: center;
    background: #578FFF;
    border-bottom: none;
    border-radius: 14px 14px 0 0;
}

.ldp-card__head-title {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-size: 16px;
    font-weight: 700;
    color: #ffffff;
}

.ldp-card__head-title svg {
    color: #ffffff;
}

.ldp-card__head-title img {
    filter: brightness(0) invert(1);
}

.ldp-card__head-sub {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.8);
    margin-top: 2px;
    font-style: italic;
}

/* Card Body */
.ldp-card__body {
    padding: 22px 24px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.ldp-card__promo-title {
    font-size: 20px;
    font-weight: 800;
    color: #FF5500;
    font-style: normal;
    margin-bottom: 2px;
    text-align: center;
}

.ldp-card__promo-sub {
    font-size: 16px;
    font-weight: 400;
    color: #000000;
    margin-bottom: 14px;
    text-align: center;
}

.ldp-card__price-row {
    display: flex;
    align-items: center;
    gap: 8px;
    justify-content: center;
}

.ldp-card__price {
    font-size: 45px;
    font-weight: 700;
    color: #FF383C;
    line-height: 1;
}

.ldp-card__price span {
    font-size: 35px;
    font-weight: 700;
    margin-left: 1px;
}

.ldp-card__price-meta {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    line-height: 1.25;
}

.ldp-card__price-old {
    font-size: 13px;
    color: #9A9A9A;
    text-decoration: line-through;
}

.ldp-card__price-period {
    font-size: 18px;
    font-weight: 500;
    color: #000000;
}

.ldp-card__note {
    font-size: 12px;
    color: #000000;
    line-height: 1.55;
    font-style: normal;
    text-align: center;
}

.ldp-card__coupon {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: #EDF3FF;
    border-radius: 50px;
    padding: 10px 14px;
    margin: 14px auto;
    font-size: 15px;
    font-weight: 500;
    color: #151515;
    letter-spacing: 0.5px;
    width: 80%;
}

.ldp-card__coupon-copy {
    cursor: pointer;
    color: #063BE6;
    transition: opacity 0.2s;
}

.ldp-card__coupon-copy:hover {
    opacity: 0.6;
}

/* CTA Buttons */
.ldp-card__cta {
    display: block;
    width: 80%;
    text-align: center;
    padding: 11px 20px;
    border-radius: 9999px;
    font-size: 14px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.2s;
    border: 1.5px solid;
    margin-left: auto;
    margin-right: auto;
    margin-top: auto;
    margin-bottom: 0;
}

.ldp-card__cta--outline {
    background: transparent;
    border-color: #578FFF;
    color: #578FFF;
}

.ldp-card__cta--outline:hover {
    background: #578FFF;
    color: #fff;
}

.ldp-card__cta--solid {
    background: #0150E4;
    border-color: #0150E4;
    color: #fff;
}

.ldp-card__cta--solid:hover {
    background: #042cb3;
    border-color: #042cb3;
}

.ldp-dots {
    display: none;
}

.ldp-strengths-dots {
    display: none;
}

@media (max-width: 768px) {
    .ldp-strengths-dots {
        display: flex;
        justify-content: center;
        gap: 8px;
        margin-top: 24px;
    }
}

.ldp-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #D1D5DB;
    cursor: pointer;
    transition: all 0.2s;
}

.ldp-dot.active {
    background: var(--blue-primary);
    width: 24px;
    border-radius: 4px;
}

/* =============================================
    STRENGTHS
============================================= */
.ldp-strengths {
    background: url(/landing/khuyen_mai_ten_mien/images/background_customer.png) center center / cover no-repeat;
    /* background: linear-gradient(155deg, #EFF6FF 0%, #DBEAFE 50%, #BFDBFE 100%); */
    padding: 80px 0;
}

.ldp-strengths__heading {
    text-align: center;
    font-size: 30px;
    font-weight: 600;
    margin-bottom: 10px;
}

.ldp-strengths__heading em {
    font-style: normal;
    color: var(--blue-primary);
}

.ldp-strengths__sub {
    text-align: center;
    font-size: 14px;
    color: #000000;
    margin-bottom: 44px;
}

.ldp-strengths__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.ldp-strength-card {
    background: #fff;
    border-radius: 16px;
    padding: 28px 24px;
    text-align: center;
    box-shadow: var(--shadow);
    transition: transform 0.2s;
}

.ldp-strength-card:hover {
    transform: translateY(-4px);
}

.ldp-strength-card__icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 16px;
}

.ldp-strength-card__title {
    font-size: 16px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 10px;
}

.ldp-strength-card__text {
    font-size: 13px;
    color: #000000;
    line-height: 1.65;
}

/* =============================================
    REVIEWS
============================================= */
.ldp-reviews {
    padding: 80px 0;
}

.ldp-reviews__inner {
    display: grid;
    grid-template-columns: 260px 1fr;
    gap: 40px;
    align-items: start;
}

.ldp-reviews__heading {
    font-size: 30px;
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 14px;
}

.ldp-reviews__heading em {
    font-style: normal;
    color: var(--blue-primary);
}

.ldp-reviews__desc {
    font-size: 13px;
    color: #000000;
    line-height: 1.65;
    margin-bottom: 24px;
}

.ldp-reviews__nav {
    display: flex;
    align-items: center;
    gap: 12px;
}

.ldp-reviews__counter {
    font-size: 15px;
    font-weight: 400;
    color: #8E8E93;
    min-width: 36px;
    text-align: center;
}

.ldp-reviews__current {
    color: #0150E4;
}

.ldp-reviews__nav-btn {
    width: 40px;
    height: 40px;
    background: transparent;
    border: none;
    outline: none;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s;
    padding: 0;
    opacity: 0.4;
}

.ldp-reviews__nav-btn.highlighted {
    opacity: 1;
}

.ldp-reviews__cards-wrap {
    overflow: hidden;
    width: 100%;
}

.ldp-reviews__cards {
    display: flex;
    gap: 20px;
    transition: transform 0.4s cubic-bezier(0.25, 1, 0.5, 1);
    width: 100%;
}

.ldp-review {
    flex: 0 0 40%;
    border: 1px solid #C6D9FF;
    border-radius: 16px;
    padding: 22px;
    box-shadow: var(--shadow);
    background: #fff;
    box-sizing: border-box;
    opacity: 0.2;
    transition: opacity 0.4s ease;
}

.ldp-review.active-slide {
    opacity: 1;
}

@media (max-width: 768px) {
    .ldp-review {
        flex: 0 0 85%;
    }
}

.ldp-review__stars {
    color: #F59E0B;
    font-size: 18px;
    margin-bottom: 12px;
}

.ldp-review__text {
    font-size: 14px;
    color: var(--text-body);
    line-height: 1.65;
    margin-bottom: 18px;
}

.ldp-review__divider {
    height: 1px;
    background: var(--border);
    margin-bottom: 14px;
}

.ldp-review__author {
    font-size: 15px;
    font-weight: 700;
    color: var(--text-dark);
}

.ldp-review__role {
    font-size: 13px;
    color: #000000;
    margin-top: 2px;
}

/* =============================================
    CONSULT FORM
============================================= */
.ldp-consult {
    background: #F9FAFB;
    padding: 80px 0;
}

.ldp-consult__wrap {
    background: #fff;
    border-radius: 24px;
    box-shadow: 0 4px 40px rgba(0, 0, 0, 0.08);
    display: grid;
    grid-template-columns: 1fr 1fr;
    overflow: hidden;
}

.ldp-consult__left {
    padding: 56px 48px;
    background: linear-gradient(155deg, #EFF6FF 0%, #fff 100%);
}

.ldp-consult__left-title {
    font-size: 30px;
    font-weight: 600;
    line-height: 1.3;
    margin-bottom: 14px;
}

.ldp-consult__left-title em {
    font-style: normal;
    color: var(--blue-primary);
}

.ldp-consult__left-desc {
    font-size: 14px;
    color: #000000;
    line-height: 1.65;
    margin-bottom: 30px;
}

.ldp-benefits {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.ldp-benefit {
    display: flex;
    gap: 14px;
    align-items: flex-start;
}

.ldp-benefit__icon {
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.ldp-benefit__icon img {
    width: 56px;
    height: 56px;
}

.ldp-benefit__title {
    font-size: 15px;
    font-weight: 700;
    margin-bottom: 4px;
}

.ldp-benefit__text {
    font-size: 13px;
    color: #000000;
    line-height: 1.5;
}

.ldp-consult__right {
    padding: 20px 50px;
    background: #ffffff;
    border-radius: 24px;
    box-shadow: 0 15px 45px rgba(0, 0, 0, 0.06);
    margin-top: 30px;
    margin-bottom: 30px;
    position: relative;
    width: 90%;
    z-index: 5;
}

.ldp-form-title {
    font-size: 20px;
    font-weight: 800;
    text-align: center;
    margin-bottom: 24px;
}

.ldp-form-group {
    margin-bottom: 14px;
}

.ldp-form-group label {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: var(--text-body);
    margin-bottom: 6px;
}

.ldp-form-field {
    position: relative;
    display: flex;
    align-items: center;
}

.ldp-form-field__icon {
    position: absolute;
    left: 14px;
    color: var(--text-light);
    pointer-events: none;
}

.ldp-input {
    width: 100%;
    border: 1.5px solid var(--border);
    border-radius: 10px;
    padding: 12px 16px 12px 42px;
    font-size: 14px;
    color: var(--text-dark);
    outline: none;
    transition: border-color 0.2s, box-shadow 0.2s;
}

.ldp-input:focus {
    border-color: var(--blue-primary);
    box-shadow: 0 0 0 3px rgba(26, 86, 219, 0.1);
}

.ldp-input::placeholder {
    color: var(--text-light);
}

.ldp-select {
    width: 100%;
    border: 1.5px solid var(--border);
    border-radius: 10px;
    padding: 12px 36px 12px 14px;
    font-size: 14px;
    color: var(--text-dark);
    outline: none;
    appearance: none;
    cursor: pointer;
    background: #fff url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%236B7280' stroke-width='2'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E") no-repeat right 12px center;
    transition: border-color 0.2s;
}

.ldp-select:focus {
    border-color: var(--blue-primary);
}

.ldp-submit {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    background: var(--blue-primary);
    color: #fff;
    border: none;
    border-radius: 12px;
    padding: 15px 24px;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.2s;
    margin-top: 10px;
}

.ldp-submit:hover {
    background: var(--blue-dark);
    transform: translateY(-2px);
}

/* =============================================
    SUPPORT FOOTER
============================================= */
.ldp-support {
    padding: 56px 0 40px;
    border-top: 1px solid var(--border);
}

.ldp-support__grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
}

.ldp-support__item {
    text-align: center;
}

.ldp-support__icon-wrap {
    width: 44px;
    height: 44px;
    margin: 0 auto 12px;
    color: var(--blue-primary);
}

.ldp-support__dept {
    font-size: 13px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 6px;
}

.ldp-support__phone {
    font-size: 15px;
    font-weight: 700;
    color: var(--blue-primary);
}

.ldp-support__email {
    font-size: 12px;
    color: #000000;
    margin-top: 3px;
}

/* =============================================
    FOOTER
============================================= */
.ldp-footer {
    background: var(--blue-primary);
    padding: 28px 0;
}

.ldp-footer__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap;
}

.ldp-footer__logo img {
    height: 36px;
    filter: brightness(0) invert(1);
}

.ldp-footer__address {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.8);
    cursor: pointer;
}

.ldp-footer__badges {
    display: flex;
    align-items: center;
    gap: 10px;
}

.ldp-footer__badges img {
    height: 28px;
    filter: brightness(0) invert(1);
    opacity: 0.7;
}

.ldp-footer__nav {
    display: flex;
    gap: 18px;
}

.ldp-footer__nav a {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.8);
    transition: color 0.2s;
}

.ldp-footer__nav a:hover {
    color: #fff;
}

.ldp-footer__copy {
    text-align: center;
    font-size: 12px;
    color: rgba(255, 255, 255, 0.55);
    margin-top: 18px;
    padding-top: 16px;
    border-top: 1px solid rgba(255, 255, 255, 0.15);
}

/* Toast */
@keyframes ldpSlideUp {
    from {
        opacity: 0;
        transform: translate(-50%, 12px);
    }

    to {
        opacity: 1;
        transform: translate(-50%, 0);
    }
}

.ldp-toast {
    position: fixed;
    bottom: 28px;
    left: 50%;
    transform: translateX(-50%);
    background: #1A56DB;
    color: #fff;
    padding: 10px 22px;
    border-radius: 10px;
    font-size: 14px;
    font-weight: 600;
    z-index: 9999;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
    animation: ldpSlideUp 0.25s ease;
}

.ldp-search-btn:hover {
    background: #042cb3;
    color: #fff!important;
}
/* =============================================
    RESPONSIVE
============================================= */
@media (max-width: 1024px) {
    .ldp-strengths__grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .ldp-support__grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .ldp-header__nav {
        display: none;
    }
}

/* @media (min-width: 1025px) and (max-width: 1230px) {
    .ldp-hero {
        overflow: hidden;
    }

    .ldp-search-wrap {
        overflow: hidden;
    }

    .ldp-cards {
        max-width: 100%;
        overflow: hidden;
    }

    .ldp-pricing {
        overflow: hidden;
    }

    .ldp-pricing .container {
        overflow: hidden;
    }

    .ldp-strengths {
        overflow: hidden;
    }

    .ldp-strengths__grid-wrap {
        overflow: hidden;
    }

    .ldp-reviews {
        overflow: hidden;
    }

    .ldp-reviews__cards-wrap {
        overflow: hidden;
    }

    .ldp-consult {
        overflow: hidden;
    }
} */

@media (max-width: 768px) {
    .ldp-hero {
        background: url('/landing/khuyen_mai_ten_mien/images/background_page_mobile.png') center bottom / cover no-repeat;
    }

    .ldp-hero::after {
        display: none;
    }

    .ldp-hero__title {
        font-size: 30px;
    }

    .ldp-hero__trust {
        display: flex;
        flex-direction: column;
        gap: 12px;
        margin-bottom: 24px;
        align-items: center;
        width: 100%;
    }

    .ldp-hero__trust-badge {
        padding: 10px 16px;
        gap: 10px;
        border-radius: 10px;
        width: 100%;
        max-width: 320px;
    }

    .ldp-hero__trust-flag {
        width: 45px;
        height: 36px;
    }

    .ldp-hero__trust-label {
        font-size: 11px;
    }

    .ldp-hero__trust-name {
        font-size: 12px;
    }

    .ldp-hero__domains-row-wrapper {
        flex-direction: row;
        justify-content: center;
        gap: 16px;
        width: 100%;
        padding: 0 16px;
    }

    .ldp-hero__domain-row {
        flex: 1 1 calc(50% - 8px);
        max-width: 180px;
        height: 150px;
        padding: 16px 10px 14px 10px;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: space-between;
        text-align: center;
        background: linear-gradient(180deg, #EBF3FF 0%, #FFFFFF 100%);
        border: 1.5px solid #D8E2FD;
        border-radius: 18px;
        box-shadow: 0 4px 12px rgba(6, 59, 230, 0.04);
        gap: 8px;
    }

    .ldp-hero__domain-ext {
        font-size: 30px;
        font-weight: 800;
        color: #133C8A;
        justify-content: center;
        min-width: auto;
        min-height: 38px;
        display: flex;
        align-items: center;
    }

    .ldp-hero__domain-ext img {
        height: 22px !important;
        width: auto;
        display: block;
        margin: 0 auto;
    }

    .ldp-hero__domain-info {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 4px;
        margin-left: 0;
    }

    .ldp-hero__domain-price {
        font-size: 14px;
        font-weight: 700;
        color: #FF5500;
    }

    .ldp-hero__domain-old-wrap {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 4px;
    }

    .ldp-hero__domain-old {
        font-size: 11px;
        color: #9A9A9A;
    }

    .ldp-hero__domain-star {
        font-size: 11px;
        color: #1A1A1A;
        margin: 0;
    }

    .ldp-hero__domain-coupon {
        font-size: 10px;
        padding: 6px 16px;
        width: 100%;
        max-width: 130px;
        box-sizing: border-box;
        border-radius: 9999px;
    }

    .ldp-search-input {
        padding: 12px 16px !important;
        font-size: 14px;
        height: 20px !important;
        line-height: 20px !important;
    }

    .ldp-search-trust {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 16px 12px;
        margin-top: 20px;
        padding: 0 10px;
    }

    .ldp-search-trust__item {
        padding: 0;
        border-left: none !important;
        justify-content: flex-start;
        gap: 10px;
    }

    .ldp-search-trust__item img {
        width: 32px;
        height: 32px;
    }

    .ldp-search-trust__item+.ldp-search-trust__item {
        border-left: none !important;
    }

    .ldp-tabs-wrap {
        overflow-x: visible;
        justify-content: center;
        padding: 10px 16px;
        width: 100%;
    }

    .ldp-tabs {
        width: 100%;
        display: flex;
    }

    .ldp-tab {
        flex: 1;
        white-space: normal;
        text-align: center;
        padding: 8px 2px;
        font-size: 12px;
        line-height: 1.3;
        display: flex;
        align-items: center;
        justify-content: center;
        border-radius: 50px;
    }

    .ldp-cards-wrap {
        width: 100%;
    }

    .ldp-cards {
        display: flex !important;
        flex-direction: column !important;
        align-items: center;
        gap: 40px;
        padding: 0;
    }

    .ldp-card {
        width: 100%;
        max-width: 430px;
        box-sizing: border-box;
        margin: 0px 20px 0px 20px;
    }

    .ldp-card__body {
        padding: 20px;
    }

    .ldp-card__promo-title {
        font-size: 26px !important;
    }

    .ldp-card__promo-sub {
        font-size: 14px;
    }

    .ldp-card__price {
        font-size: 34px !important;
    }

    .ldp-card__price span {
        font-size: 20px !important;
    }

    .ldp-card__note {
        font-size: 12px;
        margin-top: 10px;
        margin-bottom: 14px;
    }

    .ldp-card__cta {
        padding: 10px 16px;
        font-size: 14px;
    }

    .ldp-strengths__grid {
        grid-template-columns: 1fr;
    }

    .ldp-reviews__inner,
    .ldp-consult__wrap {
        grid-template-columns: 1fr;
    }

    .ldp-strengths .container {
        padding-left: 0 !important;
        padding-right: 0 !important;
        max-width: 100% !important;
        width: 100% !important;
    }

    .ldp-strengths__grid-wrap {
        overflow: hidden;
        width: 100%;
        padding: 10px 0;
    }

    .ldp-strengths__grid {
        display: flex !important;
        flex-direction: row !important;
        width: max-content;
        gap: 32px;
        transition: transform 0.4s cubic-bezier(0.25, 1, 0.5, 1);
        padding: 0 16px;
        grid-template-columns: none !important;
    }

    .ldp-strength-card {
        flex: 0 0 calc(100vw - 32px);
        max-width: calc(100vw - 32px);
        box-sizing: border-box;
    }

    .ldp-reviews .container {
        padding-left: 0 !important;
        padding-right: 0 !important;
        max-width: 100% !important;
        width: 100% !important;
    }

    .ldp-reviews__inner {
        display: flex !important;
        flex-direction: column !important;
    }

    .ldp-reviews__inner>div:first-child {
        display: contents !important;
    }

    .ldp-reviews__heading {
        width: 100%;
        order: 1;
        text-align: center;
    }
    .ldp-strengths__sub {
        margin: 10px 30px 30px 30px;
    }
    .ldp-reviews__desc {
        order: 2;
        text-align: center;
       margin: 0px 20px 20px 20px;
    }

    .ldp-reviews__cards-wrap {
        order: 3;
        width: 100%;
        padding: 10px 0 !important;
    }

    .ldp-reviews__cards {
        gap: 32px !important;
        padding: 0 16px !important;
    }

    .ldp-review {
        flex: 0 0 calc(100vw - 32px) !important;
        max-width: calc(100vw - 32px) !important;
        text-align: center;
    }

    .ldp-review__stars {
        display: flex;
        justify-content: center;
    }

    .ldp-reviews__nav {
        order: 4;
        display: flex !important;
        width: 100% !important;
        justify-content: center !important;
        align-items: center !important;
        margin-top: 24px;
        gap: 20px;
    }

    .ldp-reviews__nav-btn {
        width: 48px !important;
        height: 48px !important;
        opacity: 0.5;
    }

    .ldp-reviews__nav-btn.highlighted {
        opacity: 1 !important;
    }

    .ldp-reviews__nav-btn img {
        width: 32px !important;
        height: 32px !important;
        /* Ep hai anh co cung tông mau xanh duong dam thuong hieu */
        filter: invert(41%) sepia(76%) saturate(2335%) hue-rotate(209deg) brightness(96%) contrast(98%) !important;
    }

    .ldp-reviews__counter {
        font-size: 18px !important;
        font-weight: 300 !important;
        color: #8E8E93;
    }

    .ldp-reviews__current {
        color: #0150E4;
    }

    .ldp-reviews {
        padding: 40px 0;
    }

    .ldp-consult__left-title {
        text-align: center;
        font-size: 23px;
    }

    .ldp-consult__left-desc {
        text-align: center;
    }

    .ldp-reviews__inner {
        gap: 0px;
    }

    .ldp-support__grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .ldp-consult__left {
        padding: 36px 24px;
    }

    .ldp-consult__right {
        padding: 32px 24px !important;
        margin-top: 0 !important;
        margin-bottom: 24px !important;
        margin-left: 16px !important;
        margin-right: 16px !important;
        box-shadow: 0 8px 30px rgba(0, 0, 0, 0.05);
        border-radius: 24px;
        background: #ffffff;
    }

    .ldp-search-box {
        padding: 24px;
    }

    .ldp-section-title {
        font-size: 24px;
    }

    .ldp-footer__inner {
        flex-direction: column;
        text-align: center;
    }
}

html,
body {
    overflow-x: clip !important;
    max-width: 100% !important;
    width: 100% !important;
}

@media (min-width: 1025px) {
    .tg_nav_l_2024>li.tg_phanmem_mn2023>a {
        position: relative;
    }

    .ldp-bug-sale-icon {
        position: absolute;
        top: 65px;
        left: 200%;
        transform: translateX(-50%);
        width: 60px;
        height: auto;
        pointer-events: none;
        z-index: 10;
    }
}

@media (min-width: 1025px) and (max-width: 1230px) {
    .ldp-bug-sale-icon {
        left: 110% !important;
        top: 85px !important;
    }
}

@media (max-width: 1024px) {
    .ldp-bug-sale-icon {
        display: none;
    }
    
    .ldp-bug-sale-hero-icon {
        display: none;
    }
}

/* Fix Family site popup hidden due to overflow: hidden on .container */
.tg_footer_2024 .container {
    overflow: visible !important;
}

/* Fix header menu dropdown clipping due to overflow: hidden on .container */
.tg_header_2024 .container {
    overflow: visible !important;
}