/* ==========================================================================
   CSS VARIABLES & DESIGN TOKENS
   ========================================================================== */
@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800&family=Inter:wght@300;400;500;600;700;800&display=swap');

:root {
    /* Color Palette */
    --color-primary: #1E50FF;
    --color-primary-light: #4D76FF;
    --color-primary-dark: #0033E6;
    --color-accent: #00D2FF;

    --color-text-main: #151515;
    --color-text-muted: #475467;
    --color-text-light: #667085;

    --color-bg-light: #F8FAFC;
    --color-bg-white: #FFFFFF;

    --color-border: #E4E7EC;
    --color-border-hover: #D0D5DD;

    /* Gradients */
    --grad-hero: linear-gradient(135deg, #E0EBFF 0%, #EAF3FF 50%, #F5F9FF 100%);
    --grad-primary: linear-gradient(135deg, #6648E9 0%, #0BCAFF 100%);
    --grad-blue-light: linear-gradient(180deg, rgba(30, 80, 255, 0.05) 0%, rgba(30, 80, 255, 0) 100%);
    --grad-card-hover: linear-gradient(135deg, rgba(30, 80, 255, 0.02) 0%, rgba(0, 210, 255, 0.02) 100%);
    --grad-accent-box: linear-gradient(135deg, rgba(0, 198, 255, 0.1) 0%, rgba(0, 114, 255, 0.1) 100%);

    /* Shadows */
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.04);
    --shadow-md: 0 8px 24px rgba(30, 80, 255, 0.08);
    --shadow-lg: 0 16px 40px rgba(30, 80, 255, 0.12);
    --shadow-button: 0 4px 14px rgba(30, 80, 255, 0.3);
    --shadow-button-hover: 0 6px 20px rgba(30, 80, 255, 0.45);

    /* Layout */
    --container-width: 1392px;
    --border-radius-sm: 8px;
    --border-radius-md: 16px;
    --border-radius-lg: 24px;
    --border-radius-xl: 32px;

    /* Typography */
    --font-primary: 'Inter', sans-serif;
    --font-heading: 'Outfit', sans-serif;
}

/* ==========================================================================
   RESET & BASE STYLES
   ========================================================================== */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: 'Inter', sans-serif;
    color: #000000;
    letter-spacing: 0px;
    line-height: 140%;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

a {
    color: inherit;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

ul {
    list-style: none;
}

button {
    font-family: inherit;
    border: none;
    background: none;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.container {
    width: 100%;
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 24px;
}

/* ==========================================================================
   COMMON COMPONENTS & BUTTONS
   ========================================================================== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 28px;
    font-size: 15px;
    font-weight: 600;
    border-radius: 50px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    white-space: nowrap;
}

.btn-primary {
    background: var(--grad-primary);
    color: #ffffff;
    box-shadow: var(--shadow-button);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-button-hover);
    filter: brightness(1.05);
}

.btn-outline {
    position: relative;
    border: 2px solid transparent;
    border-radius: 100px;
    background: transparent;
    color: #1A50EA;
    transition: all 0.3s ease;
    z-index: 1;
}

.btn-outline::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(80.05deg, #6648E9 -13.77%, #0BCAFF 115.49%);
    border-radius: 100px;
    z-index: -1;
    padding: 2px;
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
}

.btn-outline:hover {
    background: rgba(30, 80, 255, 0.05);
    transform: translateY(-2px);
}

.section-tagline {
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    color: #1A50EA;
    letter-spacing: 1px;
    margin-bottom: 12px;
    display: block;
}

.section-title {
    font-size: 40px;
    font-weight: 500;
    line-height: 120%;
    color: #151515;
    margin-bottom: 8px;
    text-align: center;
}
.section-title-2 {
    margin-bottom: 40px;
}
#tinh-nang .section-title {
    margin-bottom: 40px;
}

.section-desc {
    font-size: 16px;
    color: #151515;
    max-width: 804px;
    margin: 0 auto 40px auto;
    line-height: 150%;
    text-align: center;
}

#bang-gia .section-desc {
    font-size: 18px;
    line-height: 140%;
}

/* ==========================================================================
   HEADER
   ========================================================================== */
.main-header {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 100;
    padding: 24px 0;
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo-wrapper {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-right: 30px;
}

.logo-main {
    height: 38px;
    width: auto;
}

.logo-divider {
    height: 24px;
    width: 1px;
    background: var(--color-border);
}

.logo-badges {
    display: flex;
    align-items: center;
    gap: 8px;
}

.brand-badges {
    display: flex;
    align-items: center;
    gap: 8px;
}

.brand-badge {
    display: block;
    height: 35px;
    width: auto;
}

/* Tooltip for Award Badges */
.award-tip {
    position: relative;
    display: inline-block;
}

.award-tip::after {
    content: attr(data-tip);
    position: absolute;
    top: calc(100% + 10px);
    left: 50%;
    transform: translateX(-50%) scale(0.95);
    background: #EBF1FF;
    color: #151515;
    font-family: 'Inter', sans-serif;
    font-size: 13px;
    line-height: 150%;
    font-weight: 400;
    padding: 16px;
    border-radius: 16px;
    width: 320px;
    text-align: left;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    z-index: 999999;
    opacity: 0;
    pointer-events: none;
    transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
    white-space: normal;
}

.award-tip::before {
    content: '';
    position: absolute;
    top: calc(100% + 4px);
    left: 50%;
    transform: translateX(-50%) scale(0.95);
    border-width: 6px;
    border-style: solid;
    border-color: transparent transparent #EBF1FF transparent;
    z-index: 1000000;
    opacity: 0;
    pointer-events: none;
    transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

.award-tip:hover::after {
    opacity: 1;
    transform: translateX(-50%) scale(1);
    pointer-events: auto;
}

.award-tip:hover::before {
    opacity: 1;
    transform: translateX(-50%) scale(1);
}

@media (max-width: 768px) {
    .award-tip::after {
        position: fixed !important;
        top: 50px !important;
        left: 50% !important;
        transform: translateX(-50%) scale(0.95) !important;
        width: calc(100% - 32px) !important;
        max-width: 320px !important;
        box-sizing: border-box !important;
        text-align: justify !important;
        border-radius: 12px !important;
        padding: 12px 16px !important;
        box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15) !important;
        font-size: 12px;
    }
    
    .award-tip::before {
        display: none !important;
    }
    
    .award-tip:hover::after {
        transform: translateX(-50%) scale(1) !important;
    }
}

.main-nav {
    display: flex;
    align-items: center;
    gap: 32px;
}

.nav-link {
    font-size: 16px;
    font-weight: 500;
    line-height: 150%;
    color: #151515;
    position: relative;
    padding: 8px 0;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1.5px;
    background-color: #1A50EA;
    transition: width 0.3s ease;
}

.nav-link:hover {
    color: #1A50EA;
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}


.header-cta .btn {
    font-weight: 500;
    font-size: 16px;
    padding: 8px 20px 8px 19.2px;
    line-height: 150%;
}


/* ==========================================================================
   HERO SECTION
   ========================================================================== */
.hero-section {
    background-image: url('../images/background_wordpress_hosting.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: scroll;
    position: relative;
    overflow: visible;
    padding: 160px 0 220px 0;
    position: relative;
    overflow: hidden;
    /* height: 940px; */
}

.hero-section::before {
    content: '';
    position: absolute;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(30, 80, 255, 0.15) 0%, rgba(255, 255, 255, 0) 70%);
    top: -200px;
    right: -100px;
    pointer-events: none;
}

.hero-section::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 150px;
    background: linear-gradient(to bottom, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 1) 100%);
    pointer-events: none;
    z-index: 5;
}

#gioi-thieu .hero-inner {
    margin-bottom: 100px;
}

.hero-inner {
    align-items: center;
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero-title-badge {
    display: inline-block;
    font-size: 60px;
    font-weight: 700;
    color: #1A50EA;
    line-height: 120%;
    margin-bottom: 12px;
}

.hero-heading {
    font-size: 40px;
    font-weight: 500;
    line-height: 120%;
    color: #151515;
    letter-spacing: 3px;
    margin-bottom: 20px;
}

.hero-heading-2 {
    letter-spacing: -1px;
}

.hero-desc {
    font-size: 18px;
    color: #151515;
    margin-bottom: 32px;
    font-weight: 400;
    line-height: 150%;
    max-width: 675px;
}

.hero-desc strong {
    color: #151515;
    font-weight: 600;
}

.hero-pricing {
    display: flex;
    align-items: baseline;
    line-height: 150%;
    gap: 0px;
    font-size: 24px;
    font-weight: 400;
    color: var(--color-text-main);
    margin-bottom: 30px;
}

.hero-pricing span:first-child {
    margin-right: 15px;
}

.hero-pricing span:last-child {
    margin-left: 4px;
}

.hero-price-amount {
    font-size: 40px;
    font-weight: 600;
    color: #1A50EA;
    line-height: 120%;
}

/* .hero-pricing-flow {
    display: flex;
    align-items: center;
    position: relative;
    margin-left: 20px;
} */

.hero-flow-arrow {
    position: absolute;
    left: 360px;
    top: 340px;
    width: 236px;
    height: 81px;
    pointer-events: none;
    z-index: 5;
}

.space-while {
    font-size: 64.35px;
    font-weight: 400;
    line-height: 150%;
}

.hero-actions {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-top: 12px;
    position: relative;
    z-index: 10;
}


.hero-actions .btn {
    width: 240px;
    min-width: 180px;
}

.customize_btn {
    font-size: 18px;
    font-weight: 500;
    line-height: 100%;
    height: 51px;
}

.top_page_btn {
    font-size: 18px;
    font-weight: 500;
    line-height: 150%;
}

.hero-media {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-illustration-wrapper {
    position: relative;
    width: 100%;
    max-width: 520px;
    aspect-ratio: 520 / 460;
}

.illustration-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: drop-shadow(0 20px 40px rgba(30, 80, 255, 0.12));
}

/* Floating Badges on Hero Illustration */
.floating-badge {
    position: absolute;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.6);
    border-radius: 12px;
    padding: 10px 16px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
    display: flex;
    align-items: center;
    gap: 10px;
    transition: all 0.4s ease;
    z-index: 5;
}

.floating-badge:hover {
    transform: translateY(-4px);
    box-shadow: 0 15px 30px rgba(30, 80, 255, 0.15);
}

.floating-badge .badge-icon {
    width: 24px;
    height: 24px;
}

.floating-badge .badge-text {
    font-size: 12px;
    font-weight: 700;
    color: var(--color-text-main);
    line-height: 1.2;
}

.floating-badge .badge-sub {
    font-size: 10px;
    font-weight: 500;
    color: var(--color-text-light);
    display: block;
}

.badge-redis {
    bottom: 25%;
    left: -20px;
}

.badge-security {
    top: 30%;
    right: -10px;
}

/* ==========================================================================
   FEATURE BAR
   ========================================================================== */
.feature-bar-section {
    margin-top: -100px;
    position: relative;
    z-index: 10;
}

.feature-bar-inner {
    background: var(--color-bg-white);
    border-radius: 4500px;
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--color-border);
    padding: 29px 40px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.feature-bar-item {
    display: flex;
    align-items: center;
    gap: 16px;
    position: relative;
}

.feature-bar-item:not(:last-child)::after {

    /* content: "";
    position: absolute;
    left: 0;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 14px;
    height: 49px;
    background-size: contain;
    pointer-events: none; */

    content: '';
    position: absolute;
    right: 0px;
    height: 80px;
    width: 23px;
    background: url(../images/slash.svg) no-repeat center;
}

.feature-icon-wrapper {
    max-width: 82px;
    max-height: 82px;
    border-radius: 50%;
    /* background: rgba(30, 80, 255, 0.06); */
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

/* .feature-bar-item:hover .feature-icon-wrapper {
    background: var(--color-primary);
} */

/* .feature-bar-item:hover .feature-icon-wrapper img {
    filter: brightness(0) invert(1);
} */

.feature-icon {
    max-width: 82px;
    max-height: 82px;
    transition: all 0.3s ease;
}

.feature-bar-content {
    display: flex;
    flex-direction: column;
}

.feature-bar-value {
    font-size: 24px;
    font-weight: 600;
    color: #1A50EA;
    line-height: 140%;
}

.feature-bar-label {
    font-size: 16px;
    color: #151515;
    font-weight: 400;
    line-height: 140%;
    margin-top: 2px;
}

/* ==========================================================================
   PAIN POINTS / CHALLENGES SECTION
   ========================================================================== */
.pain-points-section {
    padding: 100px 0;
    background: var(--color-bg-white);
}

.pain-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.pain-card {
    background: var(--color-bg-white);
    border: 1px solid #FDD6D7;
    border-radius: 32px;
    padding: 40px 32px;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.pain-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: transparent;
    transition: background 0.3s ease;
}

.pain-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-md);
    border-color: rgba(30, 80, 255, 0.15);
    background: var(--grad-card-hover);
}

.pain-card.active,
.pain-card:nth-child(2) {
    /* border-color: #E8080080; */
    border: 2px solid #E8080080;
    box-shadow: 0 10px 30px rgba(255, 164, 164, 0.15);
    background: #FFF0F1;
}

/* .pain-card.active::before,
.pain-card:nth-child(2)::before {
    background: #FF4D4D;
} */

.pain-icon-wrapper {
    width: 82px;
    height: 82px;
    border-radius: 50%;
    background: rgba(255, 77, 77, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px auto;
}

.pain-card:nth-child(1) .pain-icon-wrapper {
    background: rgba(255, 122, 0, 0.08);
}

.pain-card:nth-child(3) .pain-icon-wrapper {
    background: rgba(255, 122, 0, 0.08);
}

.pain-icon {
    width: 82px;
    height: 82px;
}

.pain-title {
    max-width: 330px;
    font-size: 18px;
    font-weight: 600;
    color: #151515;
    margin-bottom: 20px;
    line-height: 140%;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.pain-list {
    text-align: left;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.pain-item {
    font-size: 16px;
    font-weight: 400;
    color: #151515;
    position: relative;
    padding-left: 20px;
    line-height: 150%;
}

.pain-item::before {
    content: "•";
    position: absolute;
    left: 4px;
    top: -2px;
    font-size: 18px;
    color: #151515;
}

.pain-card.active .pain-item::before,
.pain-card:nth-child(2) .pain-item::before {
    color: #151515;
}

.carousel-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 32px;
}

.dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--color-border);
    cursor: pointer;
    transition: all 0.3s ease;
}

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

/* ==========================================================================
   FEATURES / BENEFITS SECTION
   ========================================================================== */
.features-section {
    padding: 0px 0px 100px 0px;
    /* background: var(--color-bg-light); */
}

.features-box {
    border-radius: 40px;
    background: var(--color-bg-white);
    padding: 0px;
    display: grid;
    grid-template-columns: 577px minmax(0, 1fr);
    gap: 40px;
    align-items: flex-start;
}

.features-illustration-wrapper {
    position: relative;
    width: 577px;
    height: 551px;
    border-radius: 32px;
    overflow: hidden;
    background: var(--grad-blue-light);
    flex-shrink: 0;
}

.features-illustration {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.accordion {
    display: flex;
    flex-direction: column;
    gap: 0;
    background: transparent;
    overflow: visible;
    height: auto;
    /* width: 727px; */
}

.accordion-item {
    padding: 0px 24px;
    border: none;
    border-radius: 0;
    overflow: visible;
    background: transparent;
    transition: all 0.3s ease;
    width: 100%;
    position: relative;
    margin-bottom: 10px;
}

.accordion-item:not(.active):not(:last-child)::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 1px;
    background: repeating-linear-gradient(to right, #295EF14D 0 8px, transparent 8px 16px);
}

.accordion-item.active {
    border: none;
    background-color: #E9F4FF;
    border-radius: 16px;
    padding: 24px;
    height: auto;
    min-height: auto;
}

.accordion-item.active .accordion-header {
    padding: 0;
    margin-bottom: 20px;
    font-size: 18px;
    font-weight: 500;
    line-height: 120%;
}

.accordion-header {
    width: 100%;
    padding: 15px 0px 20px 0px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 18px;
    line-height: 120%;
    font-weight: 500;
    color: #151515;
    text-align: left;
    background: transparent;
    transition: all 0.3s ease;
}

/* .accordion-header:hover {
    color: var(--color-primary);
} */

.accordion-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease;
    flex-shrink: 0;
}

.icon-accordion {
    width: 20px;
    height: 20px;
    transition: all 0.3s ease;
}

.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
    padding: 0;
}

.accordion-item.active .accordion-content {
    padding: 0;
}

.accordion-content-inner {
    padding: 0;
    font-size: 14px;
    color: #151515;
    line-height: 1.6;
}

.accordion-list {
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.accordion-list-item {
    position: relative;
    padding-left: 12px;
    color: #151515;
    font-weight: 400;
    line-height: 140%;
    font-size: 16px;
}

.accordion-content-inner p {
    margin: 10px 0 0 0;
    font-style: italic;
    font-weight: 400;
    line-height: 120%;
    font-size: 16px;
    color: #151515;
}

.accordion-list-item::before {
    content: "•";
    color: #1A50EA;
    font-weight: bold;
    font-size: 14px;
    position: absolute;
    left: 0;
    top: 2px;
}

.accordion-item.active .accordion-icon .icon-accordion {
    opacity: 1;
}

.features-actions {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin-top: 24px;
}

.features-actions .btn {
    min-width: 190px;
    font-size: 16px;
    font-weight: 600;
    line-height: 150%;
    width: 260px;
    height: 48px;
}

/* ==========================================================================
   PRICING SECTION
   ========================================================================== */
.pricing-section {
    padding: 100px 0;
    background: url('/landing/wordpress_hosting_new/images/background_pricing.png') center center / cover no-repeat;
    position: relative;
}

/* .pricing-section::before {
    content: '';
    position: absolute;
    width: 700px;
    height: 700px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(0, 210, 255, 0.08) 0%, rgba(255, 255, 255, 0) 70%);
    bottom: -100px;
    left: -200px;
    pointer-events: none;
} */

.pricing-slider-container {
    position: relative;
    display: flex;
    align-items: center;
    gap: 20px;
    margin-top: 24px;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    width: 100%;
}

.pricing-card {
    background: var(--color-bg-white);
    border: 1px solid var(--color-border);
    border-radius: var(--border-radius-lg);
    padding: 40px 32px;
    position: relative;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
}

/* .pricing-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(30, 80, 255, 0.15);
} */

.pricing-card.popular {
    border: 2px solid var(--color-primary);
    box-shadow: var(--shadow-md);
}

.pricing-card.popular:hover {
    box-shadow: var(--shadow-lg);
}

.popular-badge {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    background: var(--grad-primary);
    color: #ffffff;
    font-size: 16px;
    font-weight: 600;
    line-height: 100%;
    text-transform: uppercase;
    text-align: center;
    padding: 6px 0;
    border-top-left-radius: 20px;
    border-top-right-radius: 20px;
    letter-spacing: 10%;
}

.pricing-header {
    text-align: center;
    margin-bottom: 24px;
}

.pricing-name {
    font-family: var(--font-heading);
    font-size: 20px;
    font-weight: 700;
    color: var(--color-text-main);
    margin-bottom: 12px;
}

.pricing-price {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 4px;
    font-size: 14px;
    color: var(--color-text-light);
    margin-bottom: 8px;
}

.price-val {
    font-family: var(--font-heading);
    font-size: 32px;
    font-weight: 800;
    color: var(--color-primary);
}

.pricing-subname {
    font-size: 13px;
    color: var(--color-text-light);
    font-style: italic;
}

.promo-tag {
    background: #FFF0F0;
    border: 1px dashed #FF4D4D;
    color: #FF4D4D;
    font-size: 12px;
    font-weight: 700;
    padding: 8px 12px;
    border-radius: var(--border-radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    margin-bottom: 20px;
}

.promo-tag::before {
    content: "🔥";
}

.duration-selector {
    border: 1px solid var(--color-border);
    border-radius: var(--border-radius-sm);
    padding: 8px 12px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 13px;
    color: var(--color-text-main);
    font-weight: 600;
    cursor: pointer;
    margin-bottom: 20px;
    transition: all 0.3s ease;
}

.duration-selector:hover {
    border-color: var(--color-primary);
}

.duration-arrow {
    font-size: 10px;
    color: var(--color-text-light);
}

.pricing-cta {
    margin-bottom: 28px;
}

.pricing-cta .btn {
    width: 100%;
}

.pricing-features-list {
    display: flex;
    flex-direction: column;
    gap: 14px;
    border-top: 1px solid var(--color-border);
    padding-top: 24px;
    margin-bottom: 24px;
}

.pricing-feature-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 13px;
    color: var(--color-text-muted);
}

.feature-title-wrap {
    display: flex;
    align-items: center;
    gap: 8px;
}

.feature-check {
    color: var(--color-primary);
    font-weight: bold;
}

.feature-val {
    font-weight: 600;
    color: var(--color-text-main);
}

.view-more-link {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    font-size: 13px;
    font-weight: 600;
    color: var(--color-primary);
    cursor: pointer;
    margin-top: auto;
}

.view-more-link:hover {
    color: var(--color-primary-dark);
}

.pricing-note {
    font-size: 12px;
    color: var(--color-text-light);
    text-align: center;
    margin-top: 32px;
    font-style: italic;
}

.pricing-note a {
    color: var(--color-primary);
    text-decoration: underline;
}

/* Nav arrows on Slider */
.slider-arrow {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--color-bg-white);
    border: 1px solid var(--color-border);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
    z-index: 10;
}

.slider-arrow:hover {
    background: var(--color-primary);
    border-color: var(--color-primary);
    color: #ffffff;
}

/* ==========================================================================
   PROMOTIONS SECTION
   ========================================================================== */
.promotions-section {
    padding: 100px 0px 20px 0px;
    background: var(--color-bg-white);
}

.promotions-tab-wrapper {
    display: flex;
    justify-content: center;
    width: 100%;
}

.promotions-tab-nav {
    display: inline-flex;
    gap: 10px;
    background: #F5F5F5;
    border-radius: 50px;
    padding: 4px;
    margin-bottom: 40px;
}

.promo-tab-btn {
    border-radius: 50px;
    padding: 12px 40px;
    font-size: 18px;
    line-height: 140%;
    font-weight: 500;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    background: transparent;
    color: #151515;
}

.promo-tab-btn.active {
    background: linear-gradient(80.05deg, #6648E9 -13.77%, #0BCAFF 115.49%);
    color: #FFFFFF;
    box-shadow: 0 4px 15px rgba(102, 72, 233, 0.2);
}

.promo-grid-border-wrapper {
    /* border: 1px solid #295EF1; */
    /* border-radius: var(--border-radius-xl); */
    /* padding: 40px; */
    background: #ffffff;
    box-shadow: 0 4px 20px rgba(41, 94, 241, 0.03);
}

.promo-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-bottom: 24px;
}

.promo-card {
    background-color: #578FFF;
    border: none;
    border-radius: 32px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    text-align: left;
}

.promo-card-header {
    background: transparent;
    background-color: #578FFF;
    border-bottom: none;
    padding: 20px 20px 14px 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    color: #FFFFFF;
    font-size: 14px;
    font-weight: 700;
}

.promo-card-header img {
    width: 24px;
    height: 24px;
    filter: brightness(0) invert(1);
}

.promo-card-header span {
    font-size: 20px;
    font-weight: 600;
    line-height: 140%;
    color: #FFFFFF;
}

.promo-card-body {
    background-color: #FFFFFF;
    border-radius: 30px;
    margin: 0 4px 4px 4px;
    padding: 24px 24px;
    display: flex;
    flex-direction: column;
    flex: 1;
}

/* Card 1 text alignment */
.promo-card:nth-child(1) .promo-card-price,
.promo-card:nth-child(1) .promo-card-badge {
    text-align: center;
    width: 100%;
}

/* Card 2 text alignment */
.promo-card:nth-child(2) .promo-sub-title,
.promo-card:nth-child(2) .promo-sub-desc {
    text-align: center;
    width: 100%;
}

/* Card 3 text alignment */
.promo-card:nth-child(3) .promo-sub-title {
    text-align: center;
    width: 100%;
}

.promo-card-price {
    font-size: 28px;
    font-weight: 700;
    line-height: 140%;
    color: #1A50EA;
    margin-bottom: 4px;
}

.promo-card-badge {
    font-size: 20px;
    font-weight: 500;
    font-style: italic;
    line-height: 140%;
    color: #151515;
    margin-bottom: 24px;
}

.promo-card.promo-item-title {
    font-size: 16px;
    font-weight: 600;
    line-height: 140%;
    color: #151515;
}

.promo-item-detail {
    margin-bottom: 16px;
}

.promo-item-detail:last-child {
    margin-bottom: 0;
}

.promo-item-title {
    font-weight: 600;
    font-size: 16px;
    color: #151515;
    margin-bottom: 12px;
}

.promo-item-text {
    font-size: 16px;
    font-weight: 400;
    color: #151515;
    line-height: 150%;
}

.promo-sub-section {
    margin-bottom: 20px;
    display: flex;
    flex-direction: column;
}

.promo-sub-section:last-child {
    margin-bottom: 0;
}

.promo-sub-title {
    font-size: 14px;
    font-weight: 600;
    color: #151515;
    margin-bottom: 4px;
}

.promo-sub-title span {
    font-weight: 700;
    color: #295EF1;
}

.promo-sub-title.font-normal {
    font-weight: 500;
}

.promo-sub-desc {
    font-weight: 400;
    line-height: 150%;
    font-size: 16px;
    font-style: italic;
    color: #151515;
    margin-bottom: 8px;
}

.promo-sub-title {
    font-size: 16px;
    font-weight: 500;
    line-height: 150%;

}

.promo-sub-title span {
    font-weight: 700;
    font-size: 28px;
    line-height: 140%;
}

.promo-code-box {
    background: #EDF3FF;
    border: none;
    border-radius: 8px;
    padding: 12px 16px 12px 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: all 0.2s ease;
}

.promo-code-val {
    font-size: 14px;
    font-weight: 600;
    line-height: 100%;
    color: #151515;
}

.promo-copy-icon {
    background: transparent;
    border: none;
    padding: 0;
    cursor: pointer;
    display: flex;
    align-items: center;
    transition: transform 0.2s ease;
    position: relative;
}

.promo-copy-icon:hover {
    transform: scale(1.15);
}

.promo-copy-icon img {
    width: 20px;
    height: 20px;
}

.promo-copy-icon::after {
    content: 'Đã sao chép';
    position: absolute;
    bottom: 100%;
    right: 50%;
    transform: translateX(50%) translateY(-4px);
    background: #151515;
    color: #ffffff;
    font-size: 10px;
    padding: 4px 8px;
    border-radius: 4px;
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.2s, transform 0.2s;
    white-space: nowrap;
    z-index: 10;
}

.promo-copy-icon.copied::after {
    opacity: 1;
    transform: translateX(50%) translateY(-8px);
}

.promo-footer-note {
    font-weight: 400;
    font-size: 16px;
    font-style: italic;
    color: #151515;
    text-align: center;
    margin: 16px 0 0 0;
    line-height: 140%;
}

.form-footer-note {
    font-weight: 400;
    font-size: 14px;
    font-style: italic;
    color: #151515;
    text-align: center;
    margin: 16px 0 0 0;
    line-height: 140%;
}
.promo-card-body-last .promo-sub-title {
    font-weight: 400;
    font-size: 18px;
    line-height: 150%;
}

.promo-card-body-last .promo-sub-title span {
    font-weight: 700;
    font-size: 18px;
}

.promo-sub-title-2 {
   margin-bottom: 0px; 
}
@media (max-width: 991px) {
    .promo-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .main-nav {
        display: flex;
        align-items: center;
        gap: 20px;
    }

    .promo-grid-border-wrapper {
        padding: 0px;
    }

    .promotions-tab-wrapper .promo-tab-btn {
        font-size: 16px;
    }
    .promotions-tab-nav {
        /* display: flex;
        flex-direction: column; */
        width: 80%;
        border-radius: 50px;
        gap: 8px;
        padding: 4px;
    }

    .promo-tab-btn {
        width: 100%;
    }
}

/* ==========================================================================
   8. WHY CHOOSE US SECTION (VÌ SAO CHỌN TENTEN.VN)
   ========================================================================== */
.why-choose-section {
    padding: 40px 0px 40px 0px;
    background: var(--color-bg-white);
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 40px;
}

.why-card {
    border: 1.5px solid #D6E8FD;
    border-radius: 24px;
    padding: 32px;
    text-align: center;
    background: #FFFFFF;
    transition: all 0.3s ease;
}

/* .why-card:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-4px);
} */

.why-icon-wrapper {
    width: 82px;
    height: 82px;
    border-radius: 50%;
    background: rgba(30, 80, 255, 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px auto;
    color: var(--color-primary);
}

.why-icon {
    width: 82px;
    height: 82px;
}

.why-card-title {
    font-size: 18px;
    font-weight: 600;
    color: #151515;
    line-height: 140%;
    margin-bottom: 16px;
    max-width: 330px;
}

.why-card-desc {
    font-size: 16px;
    font-weight: 400;
    color: #151515;
    line-height: 150%;
    letter-spacing: -0.5%;
}

/* ==========================================================================
   9. THREE STEPS BANNER (BẮT ĐẦU WEBSITE CỦA BẠN CHỈ VỚI 3 BƯỚC)
   ========================================================================== */
.three-steps-section {
    padding: 60px 0;
    background: var(--color-bg-white);
}

.three-steps-banner {
    background: url('/landing/wordpress_hosting_new/images/img-wordpress-hosting-hero.svg') no-repeat bottom center;
    border-radius: var(--border-radius-xl);
    padding: 60px 80px;
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 60px;
    align-items: center;
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
}

.three-steps-banner::before {
    content: '';
    position: absolute;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(30, 80, 255, 0.1) 0%, rgba(255, 255, 255, 0) 70%);
    top: -100px;
    right: -100px;
}

.steps-content {
    position: relative;
    z-index: 2;
}

.steps-title {
    font-size: 40px;
    font-weight: 500;
    color: #000000;
    line-height: 100%;
    margin-bottom: 32px;
}

.steps-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 16px;
}

.step-item {
    font-weight: 500;
    font-size: 18px;
    line-height: 140%;
    letter-spacing: 0%;
    color: #000000;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.02);
    display: flex;
    align-items: center;
    background: linear-gradient(90deg, #FFFFFF 0%, rgba(255, 255, 255, 0) 93.91%);
    /* backdrop-filter: blur(30px); */
    opacity: 1;
    gap: 12px;
    border-radius: 100px;
    padding-top: 12px;
    padding-right: 24px;
    padding-bottom: 12px;
    padding-left: 24px;
    max-width: 575px;
}

.step-item::before {
    background: linear-gradient(80.05deg, #6648E9 -13.77%, #0BCAFF 115.49%);
    content: "";
    width: 8px;
    height: 8px;
    border-radius: 50%;
    opacity: 60%;
}

.steps-note {
    font-size: 14px;
    font-weight: 400;
    line-height: 150%;
    color: #151515;
    opacity: 70%;
    font-style: italic;
    margin-bottom: 32px;
}

.steps-actions {
    display: flex;
    gap: 16px;
}

.steps-actions .btn {
    min-width: 185px;
}

.steps-illustration-wrapper {
    position: relative;
    width: 100%;
    aspect-ratio: 340 / 260;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
}

.steps-illustration {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

/* ==========================================================================
   10. TESTIMONIALS SECTION (KHÁCH HÀNG ĐÃ TIN TƯỞNG TENTEN.VN)
   ========================================================================== */
.testimonials-section {
    padding: 100px 0 265px 0;
    background: url('/landing/wordpress_hosting_new/images/background_customer.svg') no-repeat bottom center;
    background-size: 100% auto;
    position: relative;
}

.testimonials-container {
    max-width: 1392px;
    margin: 0 auto;
    text-align: center;
    padding: 0 16px;
    box-sizing: border-box;
}

.testimonials-title {
    font-size: 40px;
    font-weight: 500;
    line-height: 100%;
    color: #151515;
    margin-bottom: 16px;
}

.testimonials-title span {
    color: #1A50EA;
}

.testimonials-desc {
    font-size: 18px;
    font-weight: 400;
    line-height: 150%;
    color: #151515;
    margin-bottom: 40px;
}

.testimonials-slider-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    max-width: 1100px;
    margin: 0 auto;
    gap: 40px;
}

.testimonials-content-box {
    flex: 1;
    max-width: 800px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.testimonials-avatars {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin-bottom: 36px;
}

.avatar-active {
    width: 85px;
    height: 85px;
    border-radius: 50%;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    z-index: 2;
    transition: all 0.3s ease;
    margin: 0 -22px;
}

.avatar-inactive {
    width: 65px;
    height: 65px;
    border-radius: 50%;
    opacity: 0.5;
    z-index: 1;
    transition: all 0.3s ease;
    filter: blur(0.5px);
}

/* .testimonials-info-wrap {
    margin-bottom: 12px;
} */

.testimonials-author {
    font-size: 20px;
    font-weight: 600;
    line-height: 140%;
    color: #151515;
    margin-bottom: 8px;
}

.testimonials-role {
    font-size: 16px;
    font-weight: 400;
    line-height: 150%;
    color: #151515;
    margin: 0;
    margin-bottom: 16px;
}

.testimonials-divider {
    border-top: 2px dotted #295EF1;
    width: 100%;
    opacity: 0.3;
    margin: 20px 0;
}

.testimonials-text {
    font-size: 20px;
    font-weight: 400;
    line-height: 150%;
    color: #151515;
    max-width: 612px;
    margin: 0 auto 24px auto;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    box-sizing: border-box;
}

.testimonials-stars {
    display: flex;
    justify-content: center;
    gap: 6px;
}

.testimonials-stars img {
    width: 22px;
    height: 22px;
}

.testimonials-dots {
    display: none;
}

.testimonials-nav-btn {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: #ffffff;
    border: 1px solid #D6E8FD;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    flex-shrink: 0;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.02);
}

.testimonials-nav-btn:hover {
    transform: scale(1.08);
    background: #f3f7ff;
    box-shadow: 0 4px 12px rgba(41, 94, 241, 0.08);
    border-color: #295EF1;
}

.testimonials-nav-btn img {
    width: 52px;
    height: 52px;
}

.pricing-carousel-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 24px;
    margin-top: 40px;
}

.pricing-nav-btn {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    border: 1.5px solid #E4E7EC;
    /* background: white; */
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.pricing-nav-btn:hover {
    border-color: #1E50FF;
    background: #1E50FF;
}

.pricing-nav-btn:hover img {
    filter: brightness(0) invert(1);
}

.pricing-nav-btn img {
    width: 52px;
    height: 52px;
}

.pricing-carousel {
    flex: 1;
    overflow: hidden;
}

.pricing-cards-track {
    display: flex;
    align-items: flex-end;
    gap: 24px;
    transition: transform 0.3s ease;
    width: 100%;
}

.pricing-card-wrapper {
    min-width: calc(33.333% - 16px);
    flex: 0 0 calc(33.333% - 16px);
}

.pricing-card {
    background: white;
    border: 1.5px solid #E4E7EC;
    border-radius: 32px;
    padding: 20px 24px;
    height: auto;
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
}

.pricing-card-popular {
    background: linear-gradient(80.05deg, #6648E9 -13.77%, #0BCAFF 115.49%);
    border: none;
    border-radius: 32px;
    padding: 3px !important;
    position: relative;
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.pricing-card-popular .pricing-card-inner {
    background: white;
    border-radius: 29px;
    padding: 20px 24px 20px 24px;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.pricing-crown-badge {
    background: transparent;
    color: white;
    padding: 12px 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-weight: 600;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 10%;
    z-index: 5;
    width: 100%;
}

.pricing-crown-badge img {
    width: 29px;
    height: 30px;
}

.pricing-crown-badge span {
    font-size: 16px;
    line-height: 100%;
    font-weight: 600;
    letter-spacing: 10%;
}

.pricing-header {
    text-align: center;
    margin-bottom: 0px;
    margin-top: 0px;
}

.pricing-card-popular .pricing-header {
    margin-top: 0;
}

.pricing-name {
    font-family: Inter, sans-serif;
    font-weight: 600;
    font-size: 24px;
    line-height: 140%;
    color: #151515;
    margin-bottom: 8px;
}

.pricing-price {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-bottom: 8px;
}

.price-val {
    font-weight: 700;
    font-size: 32px;
    color: #295EF1;
    line-height: 100%;
}

.price-period {
    font-size: 18px;
    color: #151515;
    font-weight: 400;
    opacity: 0.5;
    line-height: 100%;
}

.pricing-description {
    font-family: Inter, sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;
    color: #151515;
    font-style: italic;
    opacity:80%;
    min-height: 48px;
}

.pricing-promo {
    background: transparent;
    border: none;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-bottom: 16px;
}

.promo-icon {
    width: 24px;
    height: 24px;
    flex-shrink: 0;
}

.pricing-promo span {
    font-weight: 600;
    font-size: 13px;
    line-height: 150%;
    color: #E80800;
}

.pricing-code-box {
    background: #EDF3FF;
    border-radius: 8px;
    border: none !important;
    padding: 8px 16px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 16px;
}

.pricing-code {
    font-weight: 600;
    font-size: 14px;
    line-height: 100%;
    color: #151515;
}

.pricing-copy-btn {
    background: none;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    transition: transform 0.2s ease;
    position: relative;
}

.pricing-copy-btn:hover {
    transform: scale(1.15);
}

.pricing-copy-btn::after {
    content: 'Đã sao chép';
    position: absolute;
    bottom: 100%;
    right: 50%;
    transform: translateX(50%) translateY(-4px);
    background: #151515;
    color: #ffffff;
    font-size: 10px;
    padding: 4px 8px;
    border-radius: 4px;
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.2s, transform 0.2s;
    white-space: nowrap;
    z-index: 10;
}

.pricing-copy-btn.copied::after {
    opacity: 1;
    transform: translateX(50%) translateY(-8px);
}

.pricing-copy-btn img {
    width: 18px;
    height: 18px;
}

.pricing-btn {
    width: 100%;
    padding: 10px 20px;
    border-radius: 100px;
    font-weight: 500;
    font-size: 16px;
    line-height: 1.2;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-bottom: 20px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
}

.pricing-btn-outline {
    border-radius: 100px;
    border: 1.5px solid transparent;
    background-image: linear-gradient(white, white), linear-gradient(80.05deg, #6648E9 -13.77%, #0BCAFF 115.49%);
    background-origin: border-box;
    background-clip: padding-box, border-box;
    padding: 13.42px 20px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.pricing-btn-outline span {
    background: linear-gradient(80.05deg, #6648E9 -13.77%, #0BCAFF 115.49%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 600;
}

.pricing-btn-outline:hover {
    opacity: 0.9;
}

.pricing-btn-primary {
    background: linear-gradient(80.05deg, #6648E9 -13.77%, #0BCAFF 115.49%);
    color: white;
    box-shadow: 0 4px 14px rgba(30, 80, 255, 0.3);
    padding: 15px 20px;
}

.pricing-btn-primary:hover {
    box-shadow: 0 6px 20px rgba(30, 80, 255, 0.45);
    transform: translateY(-2px);
}

.pricing-features {
    display: flex;
    flex-direction: column;
    gap: 12px;
    padding-top: 16px;
    margin-bottom: 9.42px;
}

.pricing-feature {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 14px;
}

.feature-name {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #151515;
    font-weight: 400;
    line-height: 150%;
}

.feature-name img {
    width: 14px;
    height: 10px;
}

.feature-value {
    font-weight: 600;
    font-size: 14px;
    color: #151515;
    line-height: 150%;
}

.pricing-show-more {
    background: none;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-weight: 500;
    font-size: 14px;
    color: #1A50EA;
    line-height: 150%;
    margin-top: auto;
    transition: all 0.3s ease;
}

.pricing-show-more:hover {
    color: #0033E6;
}

.pricing-show-more img {
    width: 30px;
    height: 30px;
}

.pricing-note {
    font-family: Inter, sans-serif;
    font-weight: 400;
    font-style: italic;
    font-size: 16px;
    line-height: 140%;
    text-align: center;
    color: #151515;
    margin-top: 32px;
}

.pricing-note a {
    color: #151515;
    text-decoration: underline;
}

.container-pricing {
    max-width: 1433.05px;
}

.pricing-carousel-dots {
    display: none;
}

/* .promotions-tab-nav-pc {
    display: block;
} */

.promotions-tab-nav-mb {
    display: none;
}

/* ==========================================================================
   11. FAQ SECTION (CÂU HỎI THƯỜNG GẶP)
   ========================================================================== */
.faq-section {
    padding: 80px 0;
    background: var(--color-bg-white);
}

.faq-container {
    max-width: 1106px;
    margin: 0 auto;
}

.faq-item {
    border: 1px solid #D6E8FD;
    border-radius: var(--border-radius-md);
    margin-bottom: 16px;
    background: #ffffff;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-header {
    width: 100%;
    padding: 20px 24px 18px 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 18px;
    font-weight: 600;
    line-height: 140%;
    color: #151515;
    text-align: left;
    background: #ffffff;
}

/* .faq-header:hover {
    color: var(--color-primary);
} */

.faq-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease;
    flex-shrink: 0;
}

.faq-icon img {
    width: 20px;
    height: 20px;
    transition: all 0.3s ease;
}

.faq-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
    background: #ffffff;
}

.faq-content-inner {
    padding: 0 24px 20px 24px;
    font-size: 16px;
    color: #151515;
    line-height: 150%;
    font-weight: 400;
}

.faq-item.active {
    border-color: #ECF3FF;
    background: #ECF3FF;
    box-shadow: 0 4px 12px rgba(30, 80, 255, 0.05);
}

.faq-item.active .faq-header {
    color: var(--color-text-main);
    background: #ECF3FF;
    border-bottom: none;
}

.faq-item.active .faq-content {
    background: #ECF3FF;
}

.faq-item.active .faq-icon {
    transform: none;
}

.faq-more-trigger {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: var(--color-bg-light);
    border: 1px solid var(--color-border);
    margin: 32px auto 0 auto;
    cursor: pointer;
    transition: all 0.3s ease;
}

.faq-more-trigger:hover {
    background: var(--color-primary);
    border-color: var(--color-primary);
    color: #ffffff;
}

/* ==========================================================================
   12. TRIAL / LEAD FORM SECTION (TRẢI NGHIỆM MIỄN PHÍ)
   ========================================================================== */
.trial-section {
    padding: 80px 0;
    background: var(--color-bg-white);
}

.trial-container {
    background: #EBF1FF;
    border-radius: var(--border-radius-xl);
    padding: 60px;
    display: grid;
    grid-template-columns: 1.09fr 1fr;
    gap: 0px;
    align-items: center;
}

.trial-info {
    display: flex;
    flex-direction: column;
}

.trial-title {
    font-size: 40px;
    font-weight: 500;
    color: #151515;
    line-height: 130%;
    margin-bottom: 16px;
}

.trial-desc {
    font-size: 16px;
    font-weight: 500;
    line-height: 150%;
    color: #151515;
    margin-bottom: 32px;
    max-width: 558px;
}

.trial-benefits-list {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.trial-benefit-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
}

.trial-benefit-icon-wrapper {
    width: 62px;
    height: 62px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-primary);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.03);
    flex-shrink: 0;
}

.trial-benefit-icon {
    width: 62px;
    height: 62px;
}

.trial-benefit-content {
    display: flex;
    flex-direction: column;
}

.trial-benefit-title {
    font-size: 18px;
    font-weight: 600;
    color: #151515;
    line-height: 100%;
    margin-bottom: 4px;
    margin-top: 8px;
}

.trial-benefit-desc {
    font-size: 16px;
    color: #151515;
    line-height: 140%;
    font-weight: 400;
}

.trial-form-card {
    background: var(--color-bg-white);
    border-radius: 32px;
    padding: 40px;
    box-shadow: var(--shadow-lg);
}

.form-title {
    font-size: 24px;
    font-weight: 600;
    line-height: 100%;
    color: #151515;
    text-align: center;
    margin-bottom: 16px;
}

.form-grid-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-bottom: 16px;
}

.form-group-full-last {
    margin-bottom: 24px !important;
}

.form-group {
    display: flex;
    flex-direction: column;
    margin-bottom: 16px;
}

.form-group-full {
    grid-column: span 2;
}

.form-label {
    font-size: 16px;
    font-weight: 500;
    line-height: 24px;
    color: #151515;
    margin-bottom: 8px;
}

.form-control {
    background: var(--color-bg-light);
    border: 1px solid var(--color-border);
    border-radius: var(--border-radius-sm);
    padding: 12px 16px;
    font-size: 13px;
    color: #151515;
    transition: all 0.3s ease;
    width: 100%;
}

/* Specific styling for the full-width textarea used in the consult form
   Matches the provided design: fixed height 80px, white background,
   1px light-grey border (#E5E8F0), 10px radius, padding 12px 16px, no resize */
.form-group-full textarea.form-control,
.form-group-full textarea {
    height: 80px;
    min-height: 80px;
    resize: none;
    border-radius: 10px;
    border: 1px solid #E5E8F0;
    background: #FFFFFF;
    padding: 12px 16px;
    box-sizing: border-box;
    font-family: var(--font-primary);
    /* Inter */
    font-size: 16px;
    /* per design */
    font-weight: 400;
    color: #151515 !important;
    line-height: 1.4;
    /* 140% */
}

/* placeholder styling matching: Inter, 400, 16px, 140%, color #151515 at 40% opacity */
.form-group-full textarea::placeholder {
    color: #15151566 !important;
    opacity: 1 !important;
    font-family: var(--font-primary);
    font-weight: 400;
    font-size: 16px;
    line-height: 1.4;
}

.form-group-full textarea::-webkit-input-placeholder {
    color: #15151566 !important;
    opacity: 1 !important;
    font-family: var(--font-primary);
    font-weight: 400;
    font-size: 16px;
    line-height: 1.4;
}

.form-group-full textarea::-moz-placeholder {
    color: #15151566 !important;
    opacity: 1 !important;
    font-family: var(--font-primary);
    font-weight: 400;
    font-size: 16px;
    line-height: 1.4;
}

.form-group-full textarea:-ms-input-placeholder {
    color: #15151566 !important;
    opacity: 1 !important;
    font-family: var(--font-primary);
    font-weight: 400;
    font-size: 16px;
    line-height: 1.4;
}

/* increase label spacing & weight for the field title */
.form-group-full .form-label {
    margin-bottom: 8px;
    font-weight: 500;
}

/* increase label spacing & weight for the field title */
.form-group-full .form-label {
    margin-bottom: 8px;
    font-weight: 500;
}


.ldp-form-title {
    font-size: 28px;
    font-weight: 500;
    text-align: center;
    margin-top: 0px;
    margin-bottom: 24px;
    color: #151515;
    line-height: 100%;
}

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

.ldp-form-group:last-of-type {
    margin-bottom: 24px;
}

.ldp-form-group label {
    display: block;
    font-size: 16px;
    font-weight: 400;
    color: #151515;
    margin-bottom: 6px;
    line-height: 24px;
}

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

.form-grid-row .ldp-form-field {
    width: 100%;
    max-width: 245px;
}

.form-grid-row .form-group {
    max-width: 245px;
    margin-bottom: 0px;
}

.ldp-form-field__icon {
    opacity: 40%;
    position: absolute;
    left: 14px;
    width: 30px;
    height: 30px;
    pointer-events: none;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-light);
    /* match placeholder color */
}

/* ensure inline svgs and paths use placeholder color */
.ldp-form-field__icon svg,
.ldp-form-field__icon svg path,
.ldp-form-field__icon svg circle {
    stroke: var(--text-light) !important;
    fill: var(--text-light) !important;
}

/* If icons are img files (png/svg), try to tint them via filter fallback */
.ldp-form-field__icon img {
    filter: grayscale(1) brightness(0.75) sepia(0) !important;
    opacity: 0.85;
}

.ldp-input {
    width: 100%;
    max-width: 506px;
    /* preserves desktop sizing but allows fluid shrink */
    height: 44px;
    border: 1px solid #E5E7EB;
    border-radius: 12px;
    padding: 14px 16px 12px 48px;
    font-size: 16px;
    color: #151515;
    outline: none;
    transition: border-color 0.2s, box-shadow 0.2s;
    box-sizing: border-box;
    background: #ffffff;
}

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

.ldp-input::placeholder {
    color: #9CA3AF;
}

.ldp-select {
    width: 100%;
    max-width: 506px;
    /* preserves desktop sizing but allows fluid shrink */
    height: 44px;
    border: 1px solid #15151526;
    border-radius: 12px;
    padding: 8px 48px 8px 16px;
    font-size: 16px;
    color: rgba(21, 21, 21, 0.4);
    outline: none;
    appearance: none;
    cursor: pointer;
    background: #fff url("/landing/wordpress_hosting_new/images/icon-park-outline_down.svg") no-repeat right 16px center;
    background-size: 24px;
    font-family: 'Inter';
    transition: border-color 0.2s;
    box-sizing: border-box;
}

.ldp-select option {
    color: #151515;
}


.form-control:focus {
    outline: none;
    border-color: var(--color-primary);
    background: var(--color-bg-white);
    box-shadow: 0 0 0 3px rgba(30, 80, 255, 0.1);
}

textarea.form-control {
    min-height: 80px;
    resize: none;
}

.form-submit-btn {
    width: 100%;
    /* stay responsive on very small screens */
    max-width: 278px;
    /* enforce design max width */
    margin: 8px auto 0;
    /* center horizontally and keep top spacing */
    background: var(--grad-primary);
    color: #ffffff;
    font-size: 16px;
    line-height: 140%;
    font-weight: 600;
    padding: 14px;
    height: 48px;
    /* match design height */
    border-radius: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    box-sizing: border-box;
}

.form-submit-btn:hover {
    box-shadow: var(--shadow-button-hover);
    transform: translateY(-2px);
    filter: brightness(1.05);
}

.form-submit-btn img {
    width: 24px;
    height: 24px;
}

/* ==========================================================================
   Bottom CTA Banner
   ========================================================================== */
/* ==========================================================================
   Hosting Survey Section
   ========================================================================== */
.hosting-survey-section {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 110px 0;
    background: #ffffff;
    overflow: hidden;
}

.survey-spiro-left {
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    pointer-events: none;
    z-index: 1;
}

.survey-spiro-right {
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    pointer-events: none;
    z-index: 1;
}

.survey-container {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    width: 100%;
}

.survey-banner-wrapper {
    position: relative;
    width: 100%;
}

.survey-vector-top {
    max-width: 838px;
    max-height: 209px;
    position: absolute;
    top: -30px;
    left: -20px;
    width: calc(100% + 24px);
    pointer-events: none;
    z-index: 1999;
}

.survey-vector-bottom {
    position: absolute;
    bottom: -30px;
    left: 335px;
    width: calc(100% + 24px);
    pointer-events: none;
    z-index: 999;
    max-width: 838px;
    max-height: 209px;
}

.survey-banner-main {
    background-image: url('/landing/wordpress_hosting_new/images/bg-hosting-survey.png');
    background-size: cover;
    background-position: right center;
    background-repeat: no-repeat;
    border-radius: 24px;
    padding: 40px 64px;
    display: flex;
    align-items: center;
    position: relative;
    z-index: 2;
}

.survey-content {
    max-width: 65%;
    text-align: left;
}

.survey-title {
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    font-size: 32px;
    line-height: 130%;
    letter-spacing: 0%;
    vertical-align: middle;
    color: #001A4B;
    margin-bottom: 8px;
}

.survey-desc {
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    font-style: italic;
    font-size: 20px;
    line-height: 130%;
    letter-spacing: 0%;
    vertical-align: middle;
    color: #001A4B;
    margin-bottom: 24px;
}

.survey-btn-2 {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #FFFFFF;
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    font-size: 16px;
    opacity: 1;
    gap: 8px;
    border-radius: 99px;
    padding: 14px 41px;
    background: linear-gradient(80.05deg, #6648E9 -13.77%, #0BCAFF 115.49%);
    border: none;
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.survey-btn-2:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(102, 72, 233, 0.3);
}

.section-title-pc, .ldp-modal-text-pc{
    display: block;
}
.section-title-mb, .ldp-modal-text-mb{
    display:none;
}

/* Pricing Show More/Less Functionality */
.pricing-features.collapsed {
    max-height: 180px;
    overflow: hidden;
}



.pricing-card {
    position: relative;
}

.pricing-show-more {
    width: 100%;
    padding: 12px;
    text-align: center;
}

.pricing-show-more.expanded img {
    transform: rotate(180deg);
}

.pricing-show-more img {
    transition: transform 0.3s ease;
}

/* ==========================================================================
   Hosting Survey Modal
   ========================================================================== */
.survey-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 99999;
}

.survey-modal-overlay.active {
    display: flex;
}

.survey-modal-box {
    background: #ffffff;
    border-radius: 16px;
    width: 90%;
    max-width: 940px;
    padding: 40px;
    position: relative;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    transition: max-width 0.3s ease;
}

.survey-modal-box.result-mode {
    max-width: 568px;
}

.survey-modal-close {
    position: absolute;
    top: -16px;
    right: -16px;
    width: 48px;
    height: 48px;
    background: #ffffff;
    border: none;
    border-radius: 50%;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.2s ease;
    z-index: 10;
}

.survey-modal-close:hover {
    transform: scale(1.1);
}

.survey-modal-title {
    font-size: 36px;
    font-weight: 500;
    line-height: 100%;
    color: #151515;
    text-align: center;
    margin-bottom: 24px;
}

.survey-modal-title-result {
    font-size: 36px;
    font-weight: 500;
    line-height: 100%;
    color: #151515;
    text-align: center;
    margin-bottom: 32px;
}

.survey-progress-wrap {
    margin-bottom: 30px;
}

.survey-progress-text {
    display: flex;
    justify-content: space-between;
    font-size: 18px;
    font-weight: 500;
    line-height: 140%;
    color: #000000;
    margin-bottom: 8px;
}

.survey-progress-bar-bg {
    background: #F0F4FA;
    height: 5px;
    border-radius: 30px;
    overflow: hidden;
}

#surveyPercentText {
    color: #7B7B7B;
}

.survey-progress-bar-fill {
    background: linear-gradient(80.05deg, #6648E9 -13.77%, #0BCAFF 115.49%);
    height: 100%;
    border-radius: 30px;
    transition: width 0.3s ease;
}

.survey-question-block {
    margin-bottom: 30px;
}

.survey-question-title {
    font-size: 24px;
    font-weight: 600;
    color: #151515;
    line-height: 150%;
    margin-bottom: 20px;
}

.survey-options-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.survey-option-box {
    border: 1px solid #AECCFF;
    border-radius: 16px;
    padding: 14px 18px;
    font-weight: 400;
    font-size: 20px;
    line-height: 150%;
    color: #151515;
    cursor: pointer;
    transition: all 0.2s ease;
    text-align: left;
    background: #ffffff;
}

.features-section .section-desc {
    display: none !important;
}

.survey-option-box:hover {
    border-color: #1A50EA;
    /* background: #F4F7FF; */
}

.survey-option-box.selected {
    border-color: #1A50EA;
    /* background: #ECF3FF; */
    font-weight: 400;
    font-size: 20px;
    line-height: 150%;
    color: #1A50EA;

}

.survey-navigation {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 24px;
    margin-top: 30px;
}

.survey-nav-back-btn {
    background: transparent;
    border: none;
    color: #2755EE;
    font-weight: 600;
    font-size: 16px;
    line-height: 150%;
    cursor: pointer;
    transition: opacity 0.2s;
}

.survey-nav-back-btn:hover {
    opacity: 0.8;
}

.text_sub_title_steps {
    display:none;
}

.survey-nav-next-btn {
    background: linear-gradient(80.05deg, #6648E9 -13.77%, #0BCAFF 115.49%);
    color: #FFFFFF;
    font-family: var(--font-primary);
    font-weight: 600;
    font-size: 16px;
    padding: 12px 41px;
    border-radius: 99px;
    line-height: 150%;
    border: none;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(102, 72, 233, 0.2);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.survey-nav-next-btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 6px 20px rgba(102, 72, 233, 0.3);
}

/* Result View Styling */
.survey-result-card {
    border: 1.5px solid #D6E8FD;
    border-radius: 16px;
    padding: 24px;
    background: #ffffff;
    margin-bottom: 24px;
}

.survey-result-package {
    font-size: 24px;
    font-weight: 600;
    line-height: 140%;
    color: #151515;
    text-align: center;
    margin-bottom: 16px;
}

.survey-result-price-wrap {
    text-align: center;
    margin-bottom: 4px;
}

.survey-result-price-val {
    font-size: 32px;
    font-weight: 700;
    color: #295EF1;
    line-height: 100%;
}

.survey-result-price-unit {
    font-size: 18px;
    font-weight: 400;
    line-height: 100%;
    opacity: 50%;
    color: #151515;
}

.survey-result-desc {
    font-style: italic;
    text-align: center;
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
    opacity: 80%;
    color: #151515;
    margin-bottom: 16px;
}

.survey-result-gift-box {
    background: #EDF3FF;
    border-radius: 8px;
    padding: 9px 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-bottom: 20px;
}

.survey-result-gift-box img {
    width: 24px;
    height: 24px;
}

.survey-result-gift-box span {
    color: #E80800;
    font-weight: 600;
    font-size: 13px;
    line-height: 150%;
}

/* .survey-result-checklist {
    display: flex;
    flex-wrap: wrap;
    gap: 12px 24px;
} */

.survey-checklist-row {
    flex: 0 0 calc(50% - 12px);
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 6px 0;
    /* border-bottom: 1px dashed #EAF0FA; */
}

.survey-checklist-left {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 16px;
    font-weight: 400;
    line-height: 150%;
    color: #151515;
    opacity: 80%;
}

.survey-checklist-left img {
    width: 14px;
    height: 14px;
}

.survey-checklist-right {
    font-weight: 600;
    font-size: 16px;
    line-height: 150%;
    color: #151515;
}

.survey-result-actions {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 24px;
}

@media (max-width: 1300px) {
    .features-illustration-wrapper{
        width: 500px;
        height: auto;
    }
    .features-box{
        gap: 24px;
        padding: 0px;
        grid-template-columns: 500px minmax(0, 1fr);
    }
    .accordion-item.active .accordion-header {
        font-size: 16px;
        margin-bottom: 8px;
    }

    .accordion-list-item {
        font-size: 14px;
    }

    .accordion-content-inner p {
        font-size: 14px;
    }
    .accordion-header {
        font-size: 16px;
        padding: 10px 0px 10px 0px;
    }
}
@media (max-width: 1200px) {
    .feature-bar-inner {
        background: #FFFFFF !important;
        border-radius: 16px !important;
        padding: 24px 16px !important;
        /* width: 90% !important; */
        margin: 0 auto !important;
        box-shadow: 0px 4px 20px rgba(0, 0, 0, 0.05) !important;
        display: grid !important;
        grid-template-columns: 1fr 1fr !important;
        gap: 20px 2px !important;
        align-items: start !important;
    }
    .hero-flow-arrow {
        position: absolute;
        left: 355px;
        top: 315px;
        width: 236px;
        height: 75px;
    }
    .feature-bar-item::after {
        display: none !important;
    }

    .trial-container {
        grid-template-columns: 1fr;
        gap: 40px;
        background: #F5F9FC;
        padding: 40px;
    }

    .trial-info {
        align-items: center;
        text-align: center;
    }

    .trial-title {
        text-align: center;
    }

    .trial-desc {
        text-align: center;
        margin-left: auto;
        margin-right: auto;
    }

    .trial-benefits-list {
        max-width: 558px;
        margin-left: auto;
        margin-right: auto;
        text-align: left;
    }

    .trial-form-card {
        max-width: 600px;
        margin-left: auto;
        margin-right: auto;
        width: 100%;
        box-sizing: border-box;
    }
}

@media (max-width: 1024px) {
    .pricing-card-wrapper {
        min-width: calc(50% - 12px);
        flex: 0 0 calc(50% - 12px);
    }
    .accordion-header{
        padding: 16px 0px 16px 0px;
    }
    .features-illustration-wrapper {
        display: none !important;
    }

    .features-box {
        grid-template-columns: 1fr !important;
        order: 3 !important;
    }

    .section-title {
        font-size: 32px;
        line-height: 140%;
    }

    #tinh-nang .container {
        display: flex !important;
        flex-direction: column !important;
    }

    #tinh-nang .section-title {
        order: 1 !important;
    }

    #tinh-nang .section-desc {
        order: 2 !important;
    }

    #tinh-nang .features-actions {
        order: 3 !important;
        display: flex !important;
        flex-direction: row !important;
        justify-content: center !important;
        align-items: center !important;
        gap: 12px !important;
        margin-top: 0 !important;
        margin-bottom: 24px !important;
    }

    #tinh-nang .features-box {
        order: 4 !important;
    }

    #tinh-nang .features-actions .btn-features-outline-pc,
    #tinh-nang .features-actions .btn-features-primary-pc {
        display: none !important;
    }

    #tinh-nang .features-actions .btn-features-outline-mb,
    #tinh-nang .features-actions .btn-features-primary-mb {
        display: inline-flex !important;
    }

    #tinh-nang .features-actions .btn {
        width: 165px !important;
        height: 40px !important;
        min-width: 165px !important;
        max-width: 165px !important;
        padding: 0 !important;
        font-size: 14px !important;
        font-weight: 500 !important;
        border-radius: 20px !important;
        align-items: center !important;
        justify-content: center !important;
    }

    .theme-filter-nav {
        gap: 8px;
    }
}


@media (max-width: 768px) {
    .testimonials-section {
        padding: 60px 0 100px 0;
    }

    .testimonials-slider-wrapper {
        flex-direction: column;
        gap: 24px;
    }

    .testimonials-nav-btn {
        display: none;
        /* or style them below if needed, but on mobile dời down or hide since it is drag/swipe */
    }
}

/* ==========================================================================
   RESPONSIVE DESIGN (MEDIA QUERIES)
   ========================================================================== */
@media (max-width: 1199px) {
    .container {
        padding: 0 20px;
    }

    .hero-title-badge {
        font-size: 46px;
    }

    .hero-heading {
        font-size: 34px;
    }

    /* .features-box {
        gap: 40px;
        padding: 40px;
    } */

    .three-steps-banner {
        padding: 48px;
        gap: 40px;
    }
}

@media (max-width: 991px) {


    /* .main-nav {
        display: none;
    } */

    /* .hero-inner {
        grid-template-columns: 1fr;
        gap: 60px;
        text-align: center;
    }

    .hero-content {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .hero-desc {
        margin-left: auto;
        margin-right: auto;
    } */

    /* .hero-pricing {
        justify-content: center;
    } */

    .nav-link {
        font-size: 14px; 
    }
    .feature-bar-inner {
        grid-template-columns: repeat(2, 1fr);
        padding: 24px;
    }

    .feature-bar-item:nth-child(2)::after {
        display: none;
    }

    .pain-grid {
        grid-template-columns: 1fr;
        max-width: 500px;
        margin: 0 auto;
    }


    .features-illustration-wrapper {
        width: 100%;
        height: auto;
    }

    .features-illustration {
        width: 100%;
        height: auto;
        object-fit: contain;
    }

    .pricing-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin: 0 auto;
    }

    .promo-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin: 0 auto;
    }

    .why-grid {
        grid-template-columns: 1fr;
        max-width: 500px;
        margin: 0 auto;
    }

    .three-steps-banner {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .steps-content {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    /* .step-item {
        justify-content: center;
    } */

    .steps-actions {
        justify-content: center;
    }

    .trial-container {
        grid-template-columns: 1fr;
        gap: 40px;
        background: #F5F9FC;
    }

    .hosting-survey-section {
        padding: 40px 0;
    }

    .survey-banner-main {
        padding: 32px 24px;
        background-position: right center;
    }

    .survey-content {
        max-width: 100%;
    }

    .survey-title {
        font-size: 24px;
    }

    .survey-desc {
        font-size: 16px;
        margin-bottom: 20px;
    }

    .survey-spiro-left,
    .survey-spiro-right {
        display: none;
    }

    .survey-vector-top,
    .survey-vector-bottom {
        display: none;
    }
}

@media (max-width: 920px) {
    .nav-link {
        font-size: 12px;
    }
    .main-nav {
        gap: 8px;
    }

}
@media (max-width: 768px) {
    .survey-title {
        font-size: 22px;
        font-weight: 500;
        line-height: 130%;
    }

    .survey-desc {
        font-size: 12px;
    }

    .survey-btn-2 {
        font-size: 14px;
        padding: 11.5px 36.5px;
    }

    .main-header {
        padding: 16px 0;
    }
    .survey-progress-text {
        font-size: 16px;  
    }
    .survey-progress-wrap {
        margin-bottom: 16px;
    }
    .survey-question-title {
        font-size: 16px;
    }

    .survey-result-card {
        padding: 12px;
        margin-bottom: 12px;
    }
    .survey-result-gift-box {
        margin-bottom: 12px; 
    }
    .survey-modal-close {
        width: 40px;
        height: 40px;
    }
    .survey-question-block {
       margin-bottom: 16px; 
    }
    .survey-option-box {
        font-size: 12px;
    }
    .survey-modal-title-result {
        font-size: 28px;
        margin-bottom: 16px;
    }
    .survey-modal-title {
        font-size: 28px;
    }

    .survey-modal-box {
        padding: 12px;
    }
    .survey-navigation {
        margin-top: 16px;
    }
    .survey-result-price-val {
        font-size: 28px;  
    }
    .survey-result-desc,.survey-checklist-left,.survey-checklist-right {
        font-size: 14px;
        margin-bottom: 8px;
    }

    .survey-result-package {
        margin-bottom: 8px;
    }
    .logo-main {
        height: 30px;
    }
    .survey-modal-title {
        margin-bottom: 12px;
    }
    .survey-question-title {
        margin-bottom: 12px;
    }
    .survey-option-box.selected {
        font-size: 12px;
    }
    .survey-option-box {
        padding: 8px 12px;
    }
    .logo-divider,
    .logo-badges {
        display: none;
    }

    .hero-section {
        padding-top: 120px;
        padding-bottom: 60px;
    }

    .hero-title-badge {
        font-size: 36px;
    }

    .hero-heading {
        font-size: 26px;
    }

    .hero-actions {
        flex-direction: column;
        width: 100%;
    }

    .hero-actions .btn {
        width: 100%;
    }

    .hero-pricing-flow {
        margin-left: 0;
        margin-top: 10px;
    }

    .hero-flow-arrow {
        display: none;
    }

    .floating-badge {
        padding: 6px 12px;
    }

    .badge-redis {
        left: 0;
        bottom: 10%;
    }

    .badge-security {
        right: 0;
        top: 10%;
    }

    .feature-bar-inner {
        grid-template-columns: 1fr;
    }

    .feature-bar-item::after {
        display: none !important;
    }

    .section-title {
        font-size: 22px;
        line-height: 130%;
        font-weight: 500;
        margin-bottom: 12px;
    }

    .section-desc {
        font-size: 14px;
        line-height: 150%;
        font-weight: 400;
        color:  #666666;
    }
    .accordion-header {
        padding: 16px 0px 16px 0px;
        font-size: 16px;
    }
    .features-section .features-box {
        padding-bottom: 40px;
    }
    .features-actions {
        flex-direction: column;
        gap: 12px;
    }

    .features-actions .btn {
        width: 100%;
    }

    .three-steps-banner::before {
        display:none;
    }
    .three-steps-banner {
        padding: 40px 16px;
        background: #EDF6FF;
    }

    .steps-title {
        font-size: 22px;
        line-height: 130%;
        margin-bottom: 0px;
    }

    .step-item {
        font-size: 14px; 
        line-height: 150%;
        padding-left: 12px;
    }
    .steps-title br {
        display: none !important;
    }

    .steps-note {
        font-size: 12px;
        margin-bottom: 0px;
        width: 96%;
    }
    .steps-actions {
        display:none;
    }
    .hide_mb {
        display:none;
    }
    .testimonials-title{
        font-size: 22px;
        line-height: 130%;
        font-weight: 500;
    }
    .testimonials-desc {
        font-size: 14px;
        line-height: 150%;
        font-weight: 400;  
        margin-bottom: 16px;
        color:#666666;
    }
    .avatar-active {
        width: 100px;
        height: 100px;
    }
    .avatar-inactive {
        width: 77px;
        height: 77px;
        gap: 0px;
    }
    .text_sub_title_steps {
        font-weight: 400;
        font-size: 14px;
        line-height: 150%;
        color:#666666;
        display:block;
        padding: 12px 0px;
    }

    .testimonials-author {
        font-size: 16px;
        font-weight: 700;
    }
    .steps-actions {
        flex-direction: column;
        width: 100%;
    }

    .steps-actions .btn {
        width: 100%;
    }

    .trial-container {
        padding: 16px;
    }

    .trial-title {
        font-size: 24px;
    }

    .trial-form-card {
        padding: 16px;
    }
    

    .form-grid-row {
        grid-template-columns: 1fr;
        gap: 0px;
        margin-bottom: 0px;
    }

    .ldp-form-group {
        margin-bottom: 12px;
    }
    .form-submit-btn {
        margin: 13px auto 0;
    }
    .form-grid-row .ldp-form-field {
        max-width: 100%;
    }

    .form-grid-row .form-group {
        max-width: 100%;
    }
    .form-group-full {
        grid-column: auto;
    }

    .pain-points-section {
        padding: 20px 0px 40px 16px;
    }
    .pain-title {
        font-size: 16px;
        line-height: 150%;
        margin-bottom: 12px;
    }
    .pain-list {
        gap: 12px;
    }
    .pain-icon {
        width: 48px;
        height: 48px;
    }
    .pain-icon-wrapper {
        width: 48px;
        height: 48px;
        margin: 0 auto 12px auto;
    }
    .pain-item{
        font-size: 14px;
        line-height: 140%;
        padding-left: 15px;
    }

    #tinh-nang .section-title {
        margin-bottom: 12px;
    }
    .features-section {
        padding:0px;
    }

    .promotions-section {
        padding: 40px 0;
    }
    .pricing-section {
        background: url('');
        background-color: #EDF6FF;
    }
    .pricing-section {
       padding: 40px 0; 
    }

    #bang-gia .section-desc {
        font-size: 14px;
        margin: 0 auto 24px auto;
    }

    .pricing-carousel-wrapper {
        margin-top: 24px!important;
    }

    .pricing-crown-badge span {
        font-size: 14px;
    }

    .pricing-crown-badge img {
        width: 25px;
        height: 25px;
    }

    .pricing-name {
        font-size: 20px; 
    }

    .price-val {
        font-size: 28px;
    }
    .price-period {
        font-size: 16px;
    }
    .pricing-description {
        font-weight: 400;
        font-size: 14px;
        line-height: 20.84px;
        min-height: 42px;
    }
    .promo-icon {
        width: 20px;
        height: 20px;
    }
    .pricing-promo span {
        font-size: 16px;
    }

    .pricing-code {
        font-size: 16px;
    }
    /* .pain-grid {
        max-width: 100%;
    } */
    .promotions-section .section-title {
        margin: 0px 24px 12px 24px;
    }

    .why-choose-section .section-title {
        margin-bottom: 24px;
    }

    .why-icon {
        width: 44px;
        height: 44px;
    }

    .why-icon-wrapper {
        width: 44px;
        height: 44px;
    }
    .why-card-title {
        font-size: 18px;
        margin-bottom: 8px;
        max-width: 100% !important;
    }
    .why-card-desc {
        font-size: 12px; 
    }
    .why-card {
        padding: 16px;
    }
    .why-icon-wrapper {
        margin: 0 auto 8px auto;
    }
    .three-steps-section {
        padding: 0px;
    }


    .promotions-tab-nav-pc {
        display: none;
    }

    .promotions-tab-nav-mb {
        display: flex;
        flex-direction: row !important;
    }
    .promo-tab-btn {
       font-size: 14px; 
       padding: 10px 20px;
    }

    .btn-mien-phi-giao-dien {
      min-width: 218px;  
    }

    .promo-card-header img {
        width: 20px;
        height: 20px;
    }

    .promo-card-header span {
        font-size: 14px;  
    }

    .promo-card-header {
        gap: 4px;
    }

    .promo-card {
      border-radius: 20px;  
    }
    .promo-card-body {
      border-radius: 18px;    
    }
    .promo-card-price {
        font-size: 20px; 
    }
    .promo-card-badge {
        font-size: 14px;
        font-weight: 400;
        margin-bottom: 8px;
    }
    .promo-item-title {
        margin-bottom: 8px;
        font-weight: 600;
        font-size: 14px;
    }
    .promo-sub-desc{
        font-size: 16px;
    }
    .promo-sub-title span{
        font-size: 26px;
    }
    .promo-card-body-last .promo-sub-title {
        font-size: 15px;
    }

    .promo-footer-note,.form-footer-note {
        font-size: 12px;
    }

    .promo-item-text {
        font-size: 12px;
    }
    .promo-card-header {
        padding: 10px 20px 10px 20px;
    }
    .promo-card-body {
        padding: 16px 16px;  
    }
    .promo-item-detail {
        margin-bottom: 8px;
    }
}


@media (max-width: 768px) {
    
    .features-section .section-desc {
        display: block !important;
        margin-bottom: 16px;
    }

    /* Header mobile override */
    .main-header {
        top: 0 !important;
        left: 0 !important;
        right: 0 !important;
        padding: 10px 15px !important;
        z-index: 1000 !important;
        height: 60px !important;
        display: flex !important;
        align-items: center !important;
    }

    .header-inner {
        display: flex !important;
        justify-content: space-between !important;
        align-items: center !important;
        width: 100% !important;
        max-width: 100% !important;
        padding: 0 !important;
    }

    .logo-wrapper {
        display: flex !important;
        align-items: center !important;
        flex-grow: 1 !important;
        margin-right: 15px !important;
    }

    .logo-main {
        width: 110px !important;
        height: 24px !important;
        object-fit: contain !important;
        display: block !important;
    }

    .icon-thanh-doc {
        display: none !important;
    }

    .logo-badges {
        display: flex !important;
        gap: 5px !important;
        align-items: center !important;
    }

    .brand-badges {
        display: flex !important;
        gap: 5px !important;
        align-items: center !important;
    }

    .brand-badge {
        height: 20px !important;
        width: auto !important;
    }

    .menu-toggle {
        display: block !important;
        width: 24px !important;
        height: 24px !important;
        cursor: pointer !important;
    }

    .header-cta {
        display: none !important;
    }

    .main-nav {
        position: fixed !important;
        top: 0 !important;
        left: 0 !important;
        width: 100vw !important;
        height: 100vh !important;
        background: linear-gradient(180deg, #E5F0FF 0%, #FFFFFF 100%) !important;
        flex-direction: column !important;
        justify-content: flex-start !important;
        align-items: flex-start !important;
        gap: 0 !important;
        padding: 0px !important;
        display: none !important;
        z-index: 999999 !important;
        border: none !important;
        box-shadow: none !important;
        box-sizing: border-box !important;
        margin: 0 !important;
    }

    .main-nav.open {
        display: flex !important;
    }

    .mobile-menu-header-row {
        display: flex !important;
        justify-content: space-between !important;
        align-items: center !important;
        width: 100% !important;
        margin-bottom: 30px !important;
        padding: 18px 15px 5px 15px !important;
        box-sizing: border-box !important;
        gap: 12px;
    }

    .mobile-menu-logo {
        width: 110px !important;
        height: 24px !important;
        object-fit: contain !important;
        display: block !important;
    }

    .mobile-menu-header-row .logo-badges {
        display: flex !important;
        gap: 5px !important;
        align-items: center !important;
        margin-right: auto !important;
    }

    .mobile-menu-header-row .logo-badges .brand-badges {
        display: flex !important;
        gap: 5px !important;
        align-items: center !important;
    }

    .mobile-menu-close-btn {
        cursor: pointer !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        width: 24px !important;
        height: 24px !important;
    }

    .main-nav .nav-link {
        display: block !important;
        width: 100% !important;
        font-size: 18px !important;
        font-weight: 500 !important;
        color: #0F172A !important;
        text-align: left !important;
        padding: 10px 15px !important;
        text-decoration: none !important;
        border-bottom: none !important;
        position: relative !important;
    }

    .main-nav .nav-link::after {
        content: '' !important;
        position: absolute !important;
        bottom: 4px !important;
        left: 15px !important;
        width: 0 !important;
        height: 2px !important;
        background-color: #1A50EA !important;
        transition: width 0.3s ease !important;
    }

    .main-nav .nav-link.active {
        color: #1A50EA !important;
    }

    .main-nav .nav-link.active::after {
        width: 40px !important;
    }

    /* Hero section overrides */
    .hero-section {
        background-image: url('/landing/wordpress_hosting_new/images/background_wordpress_hosting_mobile.png') !important;
        background-size: 100% auto !important;
        background-position: center top !important;
        background-repeat: no-repeat !important;
        padding-top: 100px !important;
        /* push down because header is fixed */
        padding-bottom: 75% !important;
        /* aspect-ratio padding to show mobile background illustration */
        position: relative !important;
    }

    /* The mobile PNG already contains its Figma gradient and lighting. */
    .hero-section::before{
        display: none !important;
    }
    
    /* @media (max-width: 420px) {
        .hero-section {
             background-image: url('/landing/wordpress_hosting_new/images/background_wordpress_hosting_mobile.png') !important;
        }
    }
    @media (min-width: 421px) and (max-width: 500px) {
        .hero-section {
            background-image: url('/landing/wordpress_hosting_new/images/background_wordpress_hosting_mobile.png') !important;
        }
    }
    @media (min-width: 501px) and (max-width: 600px) {
        .hero-section {
            background-image: url('/landing/wordpress_hosting_new/images/background_wordpress_hosting_mobile.png') !important;
        }
    }
    @media (min-width: 601px) and (max-width: 768px) {
        .hero-section {
             background-image: url('/landing/wordpress_hosting_new/images/background_wordpress_hosting_mobile.png') !important;
        }
    } */

    .floating-badge,
    .hero-pricing-flow,
    .hero-flow-arrow,
    .space-while {
        display: none !important;
    }

    .hero-desc {
        display: none !important;
    }

    .hero-title-badge {
        font-weight: 700 !important;
        font-size: 28px !important;
        line-height: 130% !important;
        text-align: center !important;
        color: #1A50EA !important;
        display: block !important;
        margin: 0 auto 10px auto !important;
        text-transform: uppercase !important;
    }

    .hero-heading {
        font-weight: 500 !important;
        font-size: 20px !important;
        line-height: 130% !important;
        text-align: center !important;
        color: #111111 !important;
        margin-bottom: 16px !important;
        letter-spacing: 0 !important;
    }

    .hero-heading br {
        display: block !important;
        /* match Figma line break */
    }

    .hero-heading span {
        font-weight: inherit !important;
        font-size: inherit !important;
        color: inherit !important;
        line-height: inherit !important;
        letter-spacing: inherit !important;
    }

    /* Price Block */
    .hero-pricing {
        display: flex !important;
        justify-content: center !important;
        align-items: baseline !important;
        gap: 0px !important;
        margin-bottom: 16px !important;
    }

    .hero-pricing span:first-child {
        margin-right: 6px !important;
    }

    .hero-pricing span:last-child {
        margin-left: 2px !important;
    }

    .hero-pricing span:not(.hero-price-amount) {
        font-family: 'Inter', sans-serif !important;
        font-weight: 400 !important;
        font-size: 14px !important;
        line-height: 150% !important;
        color: #333333 !important;
    }

    .hero-price-amount {
        font-weight: 600 !important;
        font-size: 20px !important;
        line-height: 120% !important;
        color: #1A50EA !important;
    }

    .container {
        padding: 0 16px;
    }

    /* CTA Buttons */
    .hero-actions {
        display: flex !important;
        flex-direction: row !important;
        justify-content: center !important;
        align-items: center !important;
        gap: 8px !important;
        margin-top: 16px !important;
        flex-wrap: nowrap !important;
    }

    .hero-actions .btn-outline {
        width: 185px !important;
        height: 40px !important;
        font-weight: 500 !important;
        font-size: 14px !important;
        line-height: 100% !important;
    }

    .hero-actions .btn {
        min-width: 150px;
    }

    .hero-actions .btn-primary {
        width: 150px !important;
        height: 40px !important;
        font-weight: 500 !important;
        font-size: 14px !important;
        line-height: 150% !important;
        border-radius: 20px !important;
    }

    /* Feature Bar Section Grid layout */
    .feature-bar-section {
        margin-top: 0 !important;
        padding: 0px 0px 20px 0px !important;
    }

    .feature-bar-inner {
        background: #FFFFFF !important;
        border-radius: 16px !important;
        padding: 24px 16px !important;
        /* width: 90% !important; */
        margin: 0 auto !important;
        box-shadow: 0px 4px 20px rgba(0, 0, 0, 0.05) !important;
        display: grid !important;
        grid-template-columns: 1fr 1fr !important;
        gap: 20px 2px !important;
        align-items: start !important;
    }

    .feature-bar-item {
        display: flex !important;
        flex-direction: row !important;
        gap: 8px !important;
        align-items: flex-start !important;
    }

    .feature-bar-item::after {
        display: none !important;
    }

    .feature-icon-wrapper {
        background: transparent !important;
        width: 46px !important;
        height: 46px !important;
        min-width: 46px !important;
        min-height: 46px !important;
        max-width: 46px !important;
        max-height: 46px !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
    }

    .feature-icon {
        width: 46px !important;
        height: 46px !important;
        object-fit: contain !important;
    }

    .feature-bar-value {
        font-weight: 600 !important;
        font-size: 16px !important;
        line-height: 140% !important;
        color: #1A50EA !important;
    }

    .feature-bar-label {
        font-family: 'Inter', sans-serif !important;
        font-weight: 400 !important;
        font-size: 12px !important;
        line-height: 140% !important;
        color: #333333 !important;
        margin-top: 0 !important;
    }

    /* Pain points slider custom styling */
    .pain-grid {
        display: flex !important;
        flex-direction: row !important;
        overflow-x: auto !important;
        scroll-snap-type: x mandatory !important;
        scroll-behavior: smooth !important;
        gap: 16px !important;
        padding: 10px 0px !important;
        margin: 0px 2px !important;
        -webkit-overflow-scrolling: touch !important;
        scrollbar-width: none !important;
    }
    .pain-grid::-webkit-scrollbar {
        display: none !important;
    }
    .pain-card {
        border-radius: 16px;
        padding: 16px;
        flex: 0 0 84.8% !important;
        scroll-snap-align: center !important;
        margin: 0 !important;
    }
    
    .pain-carousel-dots {
        display: flex !important;
        justify-content: center !important;
        align-items: center !important;
        gap: 8px !important;
        margin-top: 24px !important;
    }
    .pain-dot {
        display: inline-block !important;
        width: 6px !important;
        height: 6px !important;
        border-radius: 50% !important;
        background: #DFEAFF !important;
        opacity: 1 !important;
        transition: all 0.3s ease !important;
        cursor: pointer !important;
    }
    .pain-dot.active {
        width: 8px !important;
        height: 8px !important;
        background: linear-gradient(80.05deg, #0BCAFF -13.77%, #6648E9 115.49%) !important;
    }

    .form-group-full textarea::placeholder,.form-group-full textarea::-webkit-input-placeholder,.form-group-full textarea::-moz-placeholder {
        font-size: 14px!important;
    }
}

/* Pricing Carousel Styles */

@media (max-width: 768px) {
    .pricing-carousel-wrapper {
        gap: 16px;
    }

    .pricing-nav-btn {
        display: none !important;
    }

    .pricing-carousel-dots {
        display: flex !important;
        justify-content: center !important;
        align-items: center !important;
        gap: 8px !important;
        margin-top: 24px !important;
        margin-bottom: 24px !important;
    }

    .pricing-dot {
        display: inline-block !important;
        border-radius: 50% !important;
        opacity: 1 !important;
        transition: all 0.3s ease !important;
        cursor: pointer !important;
    }

    .pricing-dot.active {
        width: 8px !important;
        height: 8px !important;
        background: linear-gradient(80.05deg, #0BCAFF -13.77%, #6648E9 115.49%) !important;
    }

    .pricing-dot.neighbor {
        width: 6px !important;
        height: 6px !important;
        background: #DFEAFF !important;
    }

    .pricing-dot.outer {
        width: 4px !important;
        height: 4px !important;
        background: #DFEAFF !important;
    }

    .pricing-card-wrapper {
        min-width: calc(100% - 0px);
        flex: 0 0 100%;
    }

    .pricing-card {
        padding: 24px 18px;
    }
    .pricing-card-popular .pricing-card-inner {
        padding: 40px 16px 20px 16px;
    }

    .pricing-btn-primary {
        padding: 12px 20px;
    }
    .pricing-btn-outline {
        padding: 11px 20px;
    }
    .pricing-btn {
        font-size: 14px;
    }
    .pricing-note {
        font-size: 12px;
    }

    .testimonials-dots {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 8px;
        margin-top: 16px;
    }

    .testimonial-dot {
        width: 6px;
        height: 6px;
        opacity: 1;
        background: #DFEAFF;
        border-radius: 50%;
        cursor: pointer;
        transition: all 0.3s ease;
        display: inline-block;
    }

    .testimonial-dot.active {
        width: 8px;
        height: 8px;
        opacity: 1;
        background: linear-gradient(80.05deg, #0BCAFF -13.77%, #6648E9 115.49%);
        border-radius: 50%;
    }



    .testimonials-section {
        padding: 40px 0px 100px 0px;
        background: url('/landing/wordpress_hosting_new/images/background_customer_mobile.svg') no-repeat bottom center;
        background-size: 100% auto;
        position: relative;
    }

    .testimonials-text {
        font-size: 14px;
        line-height: 150%;
        font-weight: 500;
        margin-bottom: 12px;
    }

    .testimonials-stars img {
        width: 16px;
        height: 16px;
    }

    .testimonials-role {
        font-size: 16px;
        line-height: 140%;
        font-weight: 400;
        margin-bottom: 12px;
    }

    .testimonials-avatars {
        margin-bottom: 16px;
    }
    .testimonials-dots {
        margin-top: 12px;
    }

    .faq-section {
        padding: 40px 0;
    }

    .faq-header {
        font-size: 16px;
        line-height: 150%;
        font-weight: 500;
        padding: 16px 16px 12px 16px;
    }

    .faq-content-inner {
        font-size: 14px;
        line-height: 150%;
        font-weight: 400;
    }
    .faq-icon img {
        width: 17px;
        height: 17px;
    }

    .faq-more-trigger,.faq-more-trigger img {
        width: 42px;
        height: 42px;
    }

    .trial-section {
        padding: 0px 0px 40px 0px;
    }

    .trial-title {
        font-weight: 500;
        font-size: 22px;
        line-height: 130%;
        letter-spacing: 0%;
        text-align: center;
    }
    .trial-desc {
        font-weight: 400;
        font-size: 14px;
        line-height: 150%;
        letter-spacing: 0%;
        text-align: center;
        margin-bottom: 0px;
        color: #666666;
    }
    .trial-container {
        border-radius: 16px;
        gap: 0px;
    }

    .trial-benefits-list {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 16px 12px;
        margin-top: 24px;
        margin-bottom: 24px;
    }

    .trial-benefit-item {
        display: flex;
        align-items: center;
        gap: 8px;
    }

    .trial-benefit-icon-wrapper {
        width: 40px;
        height: 40px;
        min-width: 40px;
        min-height: 40px;
        max-width: 40px;
        max-height: 40px;
    }

    .trial-benefit-icon {
        width: 40px;
        height: 40px;
    }

    .trial-benefit-title {
        font-family: 'Inter', sans-serif;
        font-weight: 400;
        font-style: normal;
        font-size: 14px;
        line-height: 140%;
        letter-spacing: 0;
        color: #151515;
        margin: 0;
    }

    .trial-benefit-desc {
        display: none;
    }

    .form-title {
        font-size: 16px;
        line-height: 100%;
        font-weight: 500;
    }

    .form-label {
        font-size: 14px;
        line-height: 20px;
        font-weight: 400;
    }

    .ldp-input {
        font-size: 14px;
        line-height: 24px;
        font-weight: 400;
        height: 40px;
        max-width: 100%;
    }

    .ldp-form-field__icon {
        width: 24px;
        height: 24px;
    }

    .ldp-form-group label {
        font-size: 14px;
        line-height: 20px;
        font-weight: 400;
    }
    .ldp-select {
        font-size: 14px;
        line-height: 24px;
        font-weight: 400;
        height: 40px;
        padding: 8px 36px 8px 16px;
        max-width: 100%;
    }

    .form-group-full textarea.form-control, .form-group-full textarea {
        font-size: 14px;
        line-height: 24px;
        font-weight: 400;
        height: 80px;
        min-height: 80px;
        padding: 12px 16px;
        box-sizing: border-box;
    }

    .form-group-full textarea::placeholder {
        font-size: 14px !important;
    }
    .form-group-full textarea::-webkit-input-placeholder {
        font-size: 14px !important;
    }
    .form-group-full textarea::-moz-placeholder {
        font-size: 14px !important;
    }
    .form-group-full textarea:-ms-input-placeholder {
        font-size: 14px !important;
    }

    .form-group {
        margin-bottom: 8px!important;
    }
    .form-group-full .form-label {
        margin-bottom: 4px;
        font-weight: 400;
    }

    .pain-points-section .container {
        padding: 0px!important;
    }

    .pain-points-section .section-desc {
        margin: 0 16px 40px 0px;
    }
}


@media (max-width: 575px) {

    .survey-result-checklist {
        flex-direction: column;
        gap: 0;
    }

    .survey-checklist-row {
        flex: 0 0 100%;
    }

    .survey-result-actions {
        flex-direction: column;
        gap: 16px;
    }

    .survey-navigation {
        gap: 8px;
    }
    .survey-nav-back-btn {
        font-size: 12px;
    }
    .survey-nav-next-btn{
        font-size: 14px;    
    }
    .survey-nav-next-btn {
        width: 62%;
    }
}

/* Wordpress Themes Tab Styles */
.theme-filter-nav {
    display: flex;
    justify-content: center;
    gap: 24px;
    margin-bottom: 32px;
    flex-wrap: wrap;
    /* border-bottom: 1px solid #E4E7EC; */
    padding-bottom: 8px;
}

.theme-filter-btn {
    color: #475467;
    font-weight: 400;
    font-size: 16px;
    border-bottom: 3px solid transparent;
    padding: 8px 12px;
    background: transparent;
    cursor: pointer;
    transition: all 0.3s ease;
    border-radius: 0;
}

.theme-filter-btn.active {
    color: #295EF1 !important;
    font-weight: 500 !important;
    border-bottom: 3px solid #295EF1 !important;
}

.theme-carousel-container {
    overflow: hidden !important;
    width: 100% !important;
    padding: 4px;
}

.theme-carousel-track {
    display: flex !important;
    gap: 24px !important;
    transition: transform 0.3s ease !important;
    width: 100% !important;
    cursor: grab !important;
}

.theme-card-wrapper {
    flex: 0 0 calc((100% - (3 * 24px)) / 4) !important;
    min-width: calc((100% - (3 * 24px)) / 4) !important;
    max-width: 300px !important;
    box-sizing: border-box !important;
}

.theme-card {
    background-color: #FFFFFF !important;
    border-radius: 16px !important;
    overflow: hidden !important;
    display: flex !important;
    flex-direction: column !important;
    height: 100% !important;
    border: 1px solid #E4E7EC !important;
    box-shadow: 0 4px 20px rgba(65, 137, 221, 0.08) !important;
    transition: transform 0.2s ease, box-shadow 0.2s ease !important;
}

.theme-card:hover {
    transform: translateY(-4px) !important;
    box-shadow: 0 8px 30px rgba(65, 137, 221, 0.15) !important;
}

.theme-img-link {
    display: block !important;
    width: 100% !important;
    height: 180px !important;
    overflow: hidden !important;
    background: linear-gradient(135deg, #E6F0FA 0%, #F6FAFF 100%) !important;
}

.theme-card img.theme-img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    transition: transform 0.3s ease !important;
}

.theme-card:hover img.theme-img {
    transform: scale(1.04) !important;
}

.theme-card-body {
    padding: 16px !important;
    display: flex !important;
    flex-direction: column !important;
    flex-grow: 1 !important;
}

.theme-badges {
    display: flex !important;
    flex-wrap: wrap !important;
    gap: 6px !important;
    margin-bottom: 12px !important;
}

.theme-badge {
    font-size: 11px !important;
    font-weight: 700 !important;
    padding: 4px 8px !important;
    border-radius: 20px !important;
    text-transform: uppercase !important;
    letter-spacing: 0.5px !important;
    display: inline-block !important;
}

.badge-free {
    background-color: #E8F5E9 !important;
    color: #2E7D32 !important;
}

.badge-hot, .badge-trending {
    background-color: #FFEBEE !important;
    color: #C62828 !important;
}

.badge-responsive, .badge-minhat {
    background-color: #E3F2FD !important;
    color: #1565C0 !important;
}

.theme-title-link {
    text-decoration: none !important;
}

.theme-title {
    font-weight: 600 !important;
    font-size: 15px !important;
    line-height: 140% !important;
    color: #151515 !important;
    margin-bottom: 8px !important;
    transition: color 0.2s ease !important;
}

.theme-title-link:hover .theme-title {
    color: #1A50EA !important;
}

.theme-rating-row {
    margin-top: auto !important;
    display: flex !important;
    align-items: center !important;
    gap: 6px !important;
    font-size: 13px !important;
}

.theme-stars-outer {
    position: relative !important;
    display: inline-block !important;
    width: 78px !important; /* 5 * 14px + 4 * 2px gap = 78px */
    height: 14px !important;
    user-select: none !important;
}

.theme-stars-empty {
    display: flex !important;
    gap: 2px !important;
    fill: #E4E7EC !important;
}

.theme-stars-inner {
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
    display: flex !important;
    gap: 2px !important;
    height: 100% !important;
    overflow: hidden !important;
    fill: #FF9800 !important;
    z-index: 1 !important;
}

.star-svg {
    width: 14px !important;
    height: 14px !important;
    flex-shrink: 0 !important;
}

.theme-rating-desc {
    color: #666666 !important;
}

.theme-pagination {
    display: flex !important;
    gap: 8px !important;
    align-items: center !important;
    justify-content: center !important;
    margin-top: 32px !important;
}

.theme-dot {
    cursor: pointer !important;
    transition: all 0.3s ease !important;
}

.theme-dot.active {
    width: 50px !important;
    height: 10px !important;
    border-radius: 99px !important;
    background: linear-gradient(80.05deg, #6648E9 -13.77%, #0BCAFF 115.49%) !important;
}

.theme-dot.inactive {
    width: 10px !important;
    height: 10px !important;
    border-radius: 99px !important;
    background: #C4C4C4 !important;
}

@media (max-width: 991px) {
    .theme-card-wrapper {
        flex: 0 0 calc((100% - (1 * 24px)) / 2) !important;
        min-width: calc((100% - (1 * 24px)) / 2) !important;
        max-width: 300px !important;
    }
    .theme-filter-nav {
        gap: 16px;

    }
    .theme-filter-btn{
        font-size: 14px;
    }
}

@media (max-width: 768px) {
    .theme-card-wrapper {
        flex: 0 0 100% !important;
        min-width: 100% !important;
        max-width: 300px !important;
    }
}
@media (max-width: 554px) {
    .promotions-tab-nav {
        width: 100%;
    }
}

/* Promotions Slider for Mobile */
.promo-slider-pagination {
    display: none;
    justify-content: center;
    align-items: center;
    gap: 8px;
    margin-top: 16px;
    margin-bottom: 16px;
}

@media (max-width: 768px) {
    .promo-slider-container {
        overflow: hidden !important;
        width: 100% !important;
        position: relative !important;
    }
    
    .promo-grid {
        display: flex !important;
        flex-direction: row !important;
        flex-wrap: nowrap !important;
        width: max-content !important;
        gap: 24px !important;
        transition: transform 0.3s ease !important;
        margin: 0 !important;
        /* align-items: flex-start !important; */
    }
    
    .promo-slider-pagination {
        display: flex !important;
    }
    .promo-sub-section {
        margin-bottom: 8px;
    }
}

.promo-dot {
    cursor: pointer;
    border-radius: 50% !important;
    transition: all 0.3s ease !important;
}

.promo-dot.active {
    width: 8px !important;
    height: 8px !important;
    opacity: 1 !important;
    background: linear-gradient(80.05deg, #0BCAFF -13.77%, #6648E9 115.49%) !important;
}

.promo-dot.inactive {
    width: 6px !important;
    height: 6px !important;
    opacity: 1 !important;
    background: #DFEAFF !important;
}

@media (max-width: 768px) {
    .theme-filter-nav {
        flex-wrap: nowrap !important;
        overflow-x: auto !important;
        justify-content: flex-start !important;
        white-space: nowrap !important;
        -webkit-overflow-scrolling: touch !important;
        padding-left: 16px !important;
        padding-right: 16px !important;
        scrollbar-width: none !important; /* Hide scrollbar Firefox */
    }
    
    .theme-filter-nav::-webkit-scrollbar {
        display: none !important; /* Hide scrollbar Chrome/Safari */
    }
    
    .theme-filter-btn {
        flex: 0 0 auto !important;
    }

    .section-title-pc, .ldp-modal-text-pc {
        display: none;
    }
    .section-title-mb, .ldp-modal-text-mb {
        display:block;
    }

    .ldp-modal-text {
        font-size: 14px !important;
    }

}

/* Why Choose Us Slider for Mobile */
.why-slider-pagination {
    display: none;
    justify-content: center;
    align-items: center;
    gap: 8px;
    margin-top: 20px;
    margin-bottom: 20px;
}

/* Keep all six benefits visible as a balanced 3 x 2 grid on tablets. */
@media (min-width: 769px) and (max-width: 1024px) {
    .why-grid {
        display: grid !important;
        grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
        gap: 16px !important;
        width: auto !important;
        max-width: none !important;
        margin-top: 32px !important;
        transform: none !important;
    }

    .why-card {
        width: auto !important;
        min-width: 0 !important;
        flex: none !important;
        padding: 20px !important;
    }

    .why-icon-wrapper,
    .why-icon {
        width: 56px !important;
        height: 56px !important;
    }

    .why-icon-wrapper {
        margin-bottom: 16px !important;
    }

    .why-card-title {
        font-size: 16px !important;
        margin-bottom: 10px !important;
    }

    .why-card-desc {
        font-size: 13px !important;
    }
}

@media (max-width: 768px) {
    .why-card-title {
        font-size: 16px !important;
        margin-bottom: 8px !important;
    }
    .why-slider-container {
        overflow: hidden !important;
        width: 100% !important;
        position: relative !important;
        box-sizing: border-box !important;
    }
    
    .why-grid {
        display: flex !important;
        flex-direction: row !important;
        flex-wrap: nowrap !important;
        width: 100% !important;
        gap: 24px !important;
        transition: transform 0.3s ease !important;
        margin: 0 !important;
        align-items: stretch !important;
    }
    
    .why-card {
        box-sizing: border-box !important;
        /* Leave a preview of the following card to indicate this is swipeable. */
        flex: 0 0 calc(100% - 64px) !important;
        min-width: calc(100% - 64px) !important;
        width: calc(100% - 64px) !important;
    }
    
    .why-slider-pagination {
        display: flex !important;
    }
}

.why-dot {
    cursor: pointer;
    border-radius: 50% !important;
    transition: all 0.3s ease !important;
    background: #DFEAFF !important;
}

.why-dot.active {
    width: 8px !important;
    height: 8px !important;
    opacity: 1 !important;
    background: linear-gradient(80.05deg, #0BCAFF -13.77%, #6648E9 115.49%) !important;
}

.why-dot.sibling {
    width: 6px !important;
    height: 6px !important;
    opacity: 0.7 !important;
}

.why-dot.far {
    width: 4px !important;
    height: 4px !important;
    opacity: 0.4 !important;
}

/* Tablet landscape: retain the desktop three-card layout without oversized content. */
@media (min-width: 769px) and (max-width: 991px) {
    .pain-grid,
    .promo-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
        max-width: none !important;
        gap: 16px !important;
    }

    .pain-card {
        border-radius: 24px;
        padding: 24px 16px;
    }

    .pain-icon-wrapper,
    .pain-icon {
        width: 56px;
        height: 56px;
    }

    .pain-icon-wrapper {
        margin-bottom: 16px;
    }

    .pain-title {
        min-height: 63px;
        height: auto;
        font-size: 16px;
        margin-bottom: 14px;
    }

    .pain-list {
        gap: 10px;
    }

    .pain-item {
        font-size: 14px;
        padding-left: 16px;
    }

    .pain-item::before {
        left: 2px;
        font-size: 16px;
    }

    .promo-card {
        border-radius: 24px;
    }

    .promo-card-header {
        gap: 8px;
        padding: 14px 12px 10px;
    }

    .promo-card-header img {
        width: 20px;
        height: 20px;
    }

    .promo-card-header span {
        font-size: 14px;
    }

    .promo-card-body {
        border-radius: 22px;
        padding: 18px 16px;
    }

    .promo-card-price {
        font-size: 20px;
    }

    .promo-card-badge {
        font-size: 14px;
        margin-bottom: 16px;
    }

    .promo-item-detail {
        margin-bottom: 12px;
    }

    .promo-item-title,
    .promo-item-text,
    .promo-sub-title {
        font-size: 12px;
    }

    .promo-item-title {
        margin-bottom: 8px;
    }

    .promo-sub-desc,
    .promo-footer-note {
        font-size: 13px;
    }

    .promo-sub-title span {
        font-size: 22px;
    }

    .promo-card-body-last .promo-sub-title,
    .promo-card-body-last .promo-sub-title span {
        font-size: 14px;
    }

    .promo-sub-section {
        margin-bottom: 14px;
    }

    .promo-code-box {
        padding: 10px 12px 10px 16px;
    }

    .promo-code-val {
        font-size: 13px;
    }

    .promo-copy-icon img {
        width: 18px;
        height: 18px;
    }
}

/* Mid-size mobile: let both carousels use the available container width. */
@media (min-width: 501px) and (max-width: 768px) {
    .pain-grid {
        width: calc(100% - 40px) !important;
        max-width: none !important;
        margin: 0 auto !important;
    }

    .why-grid {
        max-width: none !important;
    }

    .pain-title{
        max-width: 100% !important;
    }
}

/* Keep the original artwork at a stable size while extending only its backdrop. */
@media (min-width: 421px) and (max-width: 600px) {
    .hero-section {
        background-image: url('/landing/wordpress_hosting_new/images/background_600_600.png') !important;
        background-size: 600px auto !important;
        padding-bottom: 210px !important;
    }
}

@media (min-width: 601px) and (max-width: 768px) {
    .hero-section {
        background-image: url('/landing/wordpress_hosting_new/images/background_768_600.png') !important;
        background-size: 768px auto !important;
        padding-bottom: 210px !important;
    }
}
