/* â”€â”€ REVEAL â”€â”€ */
.reveal {
    opacity: 0;
    transform: translateY(36px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

/* â”€â”€ URGENCY BAR â”€â”€ */
.urgency-bar {
    background: #EE0033;
    color: #FFF;
    padding: 9px 0;
    overflow: hidden;
}

.urgency-bar span {
    display: inline-block;
    white-space: nowrap;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 1.5px;
    animation: marquee 22s linear infinite;
}

@keyframes marquee {
    0% {
        transform: translateX(100vw);
    }

    100% {
        transform: translateX(-100%);
    }
}

.title-wrap {
    text-align: center;
    margin-bottom: 40px;
}

.title-page-des {
    font-size: 15px;
    font-weight: 700;
    letter-spacing: 2px;
    color: #EE0033;
    text-transform: uppercase;
    margin-bottom: 12px;
}

.title-wrap h2 {
    font-size: clamp(28px, 4vw, 48px);
    font-weight: 700;
}

.title-wrap h2 strong {
    color: #EE0033;
    font-weight: 700;
}

/* â”€â”€ PROBLEMS â”€â”€ */
.problems {
    background: #F7F7F7;
    padding: 50px 0px;
}

.prob-card {
    background: #FFF;
    padding: 40px 28px;
    position: relative;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
    border-radius: 0;
    border-color: transparent;
}

.prob-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(135deg, #EE0033 0%, #FF1744 60%, #FF4D6D 100%);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s;
}

.prob-card:hover::before {
    transform: scaleX(1);
}

.prob-num {
    position: absolute;
    top: 12px;
    right: 20px;
    font-family: 'Bebas Neue', sans-serif;
    font-size: 55px;
    /* color: rgba(238, 0, 51, 0.1); */
    color: #EE0033;
    line-height: 1;
}

.prob-icon {
    /* font-size: 42px; */
    margin-bottom: 16px;
    display: block;
    animation: bounce-icon 3s ease-in-out infinite;
}

.prob-icon img {
    height: 60px;
}

.prob-who {
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 2px;
    color: #EE0033;
    text-transform: uppercase;
    margin-bottom: 8px;
}

.prob-need {
    font-size: 20px;
    font-weight: 800;
    margin-bottom: 20px;
}

.prob-row {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 15px;
    line-height: 1.5;
    margin-bottom: 10px;
}

.prob-row.before {
    color: #999999;
}

.prob-row.before .dot {
    color: #ccc;
    font-size: 18px;
    margin-top: -2px;
}

.prob-row.after {
    font-weight: 700;
}

.prob-row.after .dot {
    color: #EE0033;
    font-size: 18px;
    margin-top: -2px;
}

/* â”€â”€ FEATURES â”€â”€ */
.features {
    background: #FFF;
    padding: 50px 0px;
}

.feat-card {
    border: 1.5px solid #EBEBEB;
    padding: 44px 32px 40px;
    position: relative;
    overflow: hidden;
    background: #fff;
    transition: border-color 0.3s, box-shadow 0.3s;
}

.feat-card:hover {
    border-color: #EE0033;
    box-shadow: 0 8px 48px rgba(238, 0, 51, 0.08);
}

.feat-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(135deg, #EE0033 0%, #FF1744 60%, #FF4D6D 100%);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s;
}

.feat-card:hover::after {
    transform: scaleX(1);
}

.feat-num {
    position: absolute;
    top: 20px;
    right: 24px;
    font-family: 'Bebas Neue', sans-serif;
    font-size: 64px;
    /* color: rgba(238, 0, 51, 0.1); */
    color: #EE0033;
    line-height: 1;
}

.feat-icon {
    /* font-size: 52px; */
    margin-bottom: 20px;
    display: block;
    animation: bounce-icon 3s ease-in-out infinite;
}

.feat-icon img {
    height: 52px;
}

.feat-card:nth-child(2) .feat-icon {
    animation-delay: 1s;
}

.feat-card:nth-child(3) .feat-icon {
    animation-delay: 2s;
}

@keyframes bounce-icon {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-8px);
    }
}

.feat-name {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 28px;
    letter-spacing: 2px;
    margin-bottom: 6px;
}

.feat-spec {
    font-size: 22px;
    font-weight: 700;
    color: #EE0033;
    margin-bottom: 20px;
}

.feat-card ul li {
    font-size: 14px;
    color: #555;
    padding: 8px 0;
    border-bottom: 1px solid #F0F0F0;
    display: flex;
    align-items: center;
    gap: 10px;
    line-height: 1.5;
}

.feat-card ul li::before {
    content: '';
    width: 6px;
    height: 6px;
    background: #EE0033;
    border-radius: 50%;
    flex-shrink: 0;
}

/* â”€â”€ PACKAGES â”€â”€ */
.packages {
    background: #F7F7F7;
    padding: 50px 0px 20px;
    position: relative;
}

.packages-grid {
    margin-top: 35px;
    position: relative;
    z-index: 1;
}

.pkg-card {
    background: #FFF;
    border: 1.5px solid #E8E8E8;
    padding: 36px 22px 20px;
    display: flex;
    flex-direction: column;
    position: relative;
    transition: border-color 0.3s;
    overflow: hidden;
}

.pkg-card:hover {
    border-color: #EE0033;
}

.pkg-card.best {
    border-color: #EE0033;
}

.pkg-ribbon {
    position: absolute;
    top: 18px;
    right: -30px;
    background: #EE0033;
    color: #FFF;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 1px;
    text-transform: uppercase;
    padding: 5px 44px;
    transform: rotate(35deg);
}

.pkg-id {
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 2px;
    color: #666;
    text-transform: uppercase;
    margin-bottom: 6px;
}

.pkg-price {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 64px;
    color: #EE0033;
    line-height: 1;
    margin-bottom: 2px;
}

.pkg-price span {
    color: #666;
    font-size: 30px;
}

.pkg-unit {
    font-size: 12px;
    color: #999;
    font-weight: 600;
    letter-spacing: 1px;
    margin-bottom: 16px;
    text-transform: uppercase;
}

.pkg-divider {
    width: 40px;
    height: 3px;
    background: #EE0033;
    margin-bottom: 20px;
}

.pkg-speed {
    font-size: 25px;
    font-weight: 900;
    margin-bottom: 15px;
}

.pkg-card ul {
    flex: 1;
    margin-bottom: 24px;
}

.pkg-card ul li {
    font-size: 14px;
    color: #555;
    padding: 8px 0;
    border-bottom: 1px solid #F3F3F3;
    display: flex;
    align-items: center;
    gap: 10px;
}

.pkg-card ul li::before {
    content: 'âœ“';
    color: #EE0033;
    font-weight: 900;
    font-size: 13px;
    flex-shrink: 0;
}

.pkg-fit {
    font-size: 13px;
    color: #999;
    font-style: italic;
    margin-bottom: 20px;
}

.pkg-btn {
    display: block;
    text-align: center;
    background: transparent;
    border: 2px solid #EE0033;
    color: #EE0033;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 1.5px;
    padding: 13px;
    text-decoration: none;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.2s;
}

.pkg-btn:hover,
.pkg-card.best .pkg-btn {
    background: #EE0033;
    color: #FFF;
}

/* â”€â”€ REGISTER â”€â”€ */
.register {
    background: #FFF;
    padding: 80px 0px;
    position: relative;
}

.register-inner {
    position: relative;
    z-index: 1;
}

.reg-box {
    background: #FFF;
    border: 1.5px solid #E8E8E8;
    padding: 40px 48px 40px;
    box-shadow: 0 2px 16px rgba(0, 0, 0, .08);
    border-radius: 12px;
}

.reg-box-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 32px;
    padding-bottom: 24px;
    border-bottom: 1px solid #F0F0F0;
}

.reg-icon {
    /* width: 48px;
    height: 48px; */
    /* background: #EE0033; */
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    flex-shrink: 0;
}

.reg-box-title {
    font-size: 23px;
    font-weight: 900;
    line-height: 1.3;
}

.reg-box-sub {
    font-size: 15px;
    color: #999;
    margin-top: 5px;
}

.form-group {
    margin-bottom: 18px;
}

.form-group label {
    display: block;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 1px;
    color: #555;
    text-transform: uppercase;
    margin-bottom: 8px;
}

.form-group input,
.form-group select {
    width: 100%;
    border: 1.5px solid #E0E0E0;
    background: #FFF;
    font-size: 15px;
    padding: 13px 16px;
    outline: none;
    border-radius: 2px;
    transition: border-color 0.2s;
}

.form-group input:focus {
    border-color: #EE0033;
}

.form-group input::placeholder {
    color: #C0C0C0;
}

.form-submit {
    width: 100%;
    background: #EE0033;
    border: none;
    color: #FFF;
    font-size: 16px;
    font-weight: 900;
    letter-spacing: 1.5px;
    padding: 18px;
    text-transform: uppercase;
    margin-top: 8px;
    border-radius: 2px;
    transition: background 0.2s;
}

.form-submit:hover {
    background: #C20028;
}

.form-fine {
    text-align: center;
    font-size: 13px;
    color: #999999;
    margin-top: 14px;
    line-height: 1.6;
}

/* â”€â”€ HERO â”€â”€ */
.hero {
    position: relative;
    padding: 60px 0;
    color: #FFF;
}

.hero:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(238, 0, 51, .7);
}

.banner-slider .item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.banner-slider {
    aspect-ratio: 1920 / 960;
    overflow: hidden;
}

/* .hero-body {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    max-width: 1270px;
    padding: 0 15px;
} */

.floating-icon {
    position: absolute;
    font-size: 28px;
    /* opacity: 0.75; */
    animation: floatAround linear infinite;
    pointer-events: none;
    filter: drop-shadow(0 2px 6px rgba(0, 0, 0, 0.15));
    z-index: 1;
}

@keyframes floatAround {
    0% {
        transform: translateY(0px) rotate(0deg);
    }

    25% {
        transform: translateY(-14px) rotate(8deg);
    }

    50% {
        transform: translateY(-6px) rotate(-4deg);
    }

    75% {
        transform: translateY(-18px) rotate(6deg);
    }

    100% {
        transform: translateY(0px) rotate(0deg);
    }
}

@keyframes floatB {
    0% {
        transform: translateY(0px) rotate(0deg) scale(1);
    }

    33% {
        transform: translateY(-20px) rotate(-10deg) scale(1.08);
    }

    66% {
        transform: translateY(-8px) rotate(5deg) scale(0.95);
    }

    100% {
        transform: translateY(0px) rotate(0deg) scale(1);
    }
}

@keyframes orbit {
    0% {
        transform: translateY(0px) translateX(0px) rotate(0deg);
    }

    20% {
        transform: translateY(-22px) translateX(10px) rotate(12deg);
    }

    40% {
        transform: translateY(-10px) translateX(20px) rotate(-6deg);
    }

    60% {
        transform: translateY(-18px) translateX(-8px) rotate(9deg);
    }

    80% {
        transform: translateY(-4px) translateX(12px) rotate(-12deg);
    }

    100% {
        transform: translateY(0px) translateX(0px) rotate(0deg);
    }
}

.floating-icon img {
    width: 65px;
    /* height: 65px; */
}

.floating-icon.fb {
    bottom: -20px;
    left: 50%;
    animation-name: floatAround;
    animation-duration: 4.2s;
    animation-delay: 0s;
    animation-timing-function: ease-in-out;
    animation-iteration-count: infinite;
}

.floating-icon.zalo {
    bottom: -20px;
    right: 10%;
    animation-name: floatB;
    animation-duration: 5.1s;
    animation-delay: 0.8s;
    animation-timing-function: ease-in-out;
    animation-iteration-count: infinite;
}

.floating-icon.toptop {
    top: 30%;
    right: 24%;
    animation-name: orbit;
    animation-duration: 4.7s;
    animation-delay: 0.3s;
    animation-timing-function: ease-in-out;
    animation-iteration-count: infinite;
}

.floating-icon.wifi {
    top: 2%;
    right: 10%;
    animation-name: orbit;
    animation-duration: 5.8s;
    animation-delay: 0.7s;
    animation-timing-function: ease-in-out;
    animation-iteration-count: infinite;
}

.car-run {
    bottom: 0;
    right: 0;
    position: absolute;
    animation: move-rtl 8s linear infinite;
    animation-delay: -1s;
}

.car-run img {
    max-width: 200px;
    width: 100%;
}

@keyframes move-rtl {
    0% {
        transform: translateX(0vw);
    }

    100% {
        transform: translateX(-100vw);
    }
}


.hero-title strong {
    font-size: clamp(50px, 6vw, 90px);
    line-height: 1.2;
    letter-spacing: 3px;
    position: relative;
    z-index: 1;
    /* animation: fade-up 0.6s 0.55s both; */
    color: #FFF;
    animation: color4 1.4s ease-in-out infinite;
    font-family: "Magistral", sans-serif;
    text-shadow: -2px -2px 0 white, 2px -2px 0 white, -2px 2px 0 white, 2px 2px 0 white;
}

.hero-title p {
    font-size: clamp(16px, 4vw, 30px);
}

.hero-title .line-small {
    display: block;
    font-size: clamp(22px, 4vw, 30px);
    letter-spacing: 2px;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 6px;
}

/* .hero-title .line-big {
    display: block;
    color: #EE0033;
    position: relative;
}

.hero-title .line-big::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 50%;
    transform: translateX(-50%);
    width: 120px;
    height: 5px;
    background: #EE0033;
} */

.hero-sub {
    font-size: clamp(15px, 2.5vw, 19px);
    line-height: 1.7;
    margin: 32px 0 0px;
    position: relative;
    z-index: 1;
    color: #FFF;
    animation: fade-up 0.6s 0.7s both;
}

.hero-sub ul {
    margin-left: 20px;
}

.hero-sub strong {
    /* color: #EE0033; */
    /* font-weight: 900; */
    /* font-size: 21px; */
}

.hero-countdown {
    display: flex;
    align-items: center;
    gap: 16px;
    background: #FFF0F3;
    border-left: 4px solid #EE0033;
    padding: 14px 28px;
    position: relative;
    z-index: 1;
    animation: fade-up 0.6s 0.85s both;
}

.countdown-label {
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 2px;
    color: #EE0033;
    text-transform: uppercase;
    margin-bottom: 12px;
}

.countdown-digits {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 36px;
    color: var(--dark);
    letter-spacing: 4px;
    line-height: 1;
}

/* hero layout 2 cá»™t */
.hero-body {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 60px;
    align-items: center;
    z-index: 1;
    position: relative;
    overflow: hidden;
    padding-bottom: 65px;
}

.hero-left {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    position: relative;
}

.hero-right {
    background: #FFF;
    border: 1.5px solid #E8E8E8;
    padding: 36px 32px 40px;
    box-shadow: 0 16px 60px rgba(238, 0, 51, 0.08);
    position: relative;
}

.hero-right::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: #333;
}

/* reset hero-title alignment */
.hero-title .line-big::after {
    left: 0;
    transform: none;
}

/* hero feature list */
.hero-tag {
    display: inline-block;
    background: #333;
    color: #FFF;
    font-size: 15px;
    font-weight: 700;
    letter-spacing: 2px;
    padding: 10px 14px;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.hero-box-title {
    font-size: 20px;
    margin-bottom: 20px;
    line-height: 1.2;
    text-transform: uppercase;
    font-weight: 700;
}

.hero-box-title span {
    color: #EE0033;
}

.hero-feat-list {
    list-style: none;
    margin-bottom: 28px;
}

.hero-feat-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 15px;
    font-weight: 600;
    padding: 11px 0;
    border-bottom: 1px solid #F0F0F0;
    line-height: 1.4;
}

.hero-feat-list li:last-child {
    border-bottom: none;
}

.hero-feat-list li .fi img {
    width: 36px;
    height: 36px;
    object-fit: contain;
}

.hero-feat-list li .ft {
    display: flex;
    flex-direction: column;
}

.hero-feat-list li .ft h3 {
    font-size: 18px;
    color: #000;
}

.hero-feat-list li .ft p {
    font-size: 14px;
    color: #999;
    font-weight: 400;
    margin-top: 5px;
}

.hero-right-cta {
    display: block;
    text-align: center;
    background: #EE0033;
    color: #FFF !important;
    font-size: 15px;
    font-weight: 800;
    letter-spacing: 1.5px;
    padding: 16px;
    text-decoration: none;
    text-transform: uppercase;
    border-radius: 2px;
    transition: background 0.2s, transform 0.2s;
    animation: btn-glow 2.5s ease-in-out infinite;
}

.hero-right-cta:hover {
    background: #C20028;
}

@keyframes fade-up {
    from {
        opacity: 0;
        transform: translateY(28px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.package-wrap {
    /* padding-top: 80px; */
    background-color: #F7F7F7;
    padding-bottom: 10px;
    margin-top: 20px;
}

.package-data {
    background: #fff;
    border: 1px solid #E8E8E8;
    border-radius: 0;
    overflow: hidden;
}

.package-data .price-table {
    width: 100%;
    border-collapse: collapse;
    border: 1px solid #EE0033;
}

/* Header row 1 â€“ TÃNH NÄ‚NG banner */
.package-data .price-table th {
    background: #EE0033;
    color: #fff;
    font-size: 18px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    text-align: center;
    padding: 10px;
    width: 20%;
}

.package-data .price-table .row-feature-banner th:first-child {
    border-right: 1px solid #FFF;
}

.package-data .price-table .row-feature-banner th:last-child {
    border-left: 1px solid #FFF;
}

/* Header row 2 â€“ Column labels */
.package-data .price-table .row-col-labels th {
    font-size: 14px;
    border: 1px solid #FFF;
    vertical-align: middle;
    line-height: 1.4;
}

/* Data rows */
.package-data .price-table .data-row td {
    border: 1px solid #e0e0e0;
    text-align: center;
    padding: 10px;
    font-size: 14px;
    vertical-align: middle;
    line-height: 1.5;
}

.package-data .price-table .data-row .td-goi {
    font-weight: 800;
    font-size: 14px;
}


.package-data .price-table .data-row .td-truyen ul {
    list-style: disc;
    padding-left: 14px;
    text-align: left;
}

.package-data .price-table .data-row .td-gia {
    color: #EE0033;
    white-space: nowrap;
    font-weight: 800;
}

/* Alternating row bg */
.package-data .price-table tbody tr:nth-child(even) {
    background: #f9f9f9;
}

/* â”€â”€ Notes section â”€â”€ */
.package-data .notes-section {
    padding: 16px 18px 14px;
    font-size: 23px;
    /* border-top: 1px solid #EE0033; */
}

.package-data .notes-section .notes-title {
    font-size: 30px;
    font-weight: 800;
    color: #EE0033;
    letter-spacing: 1px;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 8px;
    font-style: italic;
}

.package-data .notes-section .notes-title::after {
    content: '';
    flex: 1;
    height: 1.5px;
    background: #EE0033;
    opacity: 0.4;
}

.package-data .notes-section ul {
    list-style: disc;
    padding-left: 16px;
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.package-data .notes-section ul li {
    line-height: 1.6;
}

/* â”€â”€ Footer contact strip â”€â”€ */
.package-data .footer-strip {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    border-top: 1.5px solid #e0e0e0;
    padding: 14px 16px;
    gap: 12px;
    align-items: center;
}

/* Zalo QR block */
.package-data .footer-strip .block-zalo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.package-data .footer-strip .block-zalo .qr-placeholder {
    width: 90px;
    height: 90px;
}

.package-data .footer-strip .block-zalo .zalo-text {
    flex: 1;
}


.package-data .footer-strip .block-zalo .zalo-text strong {
    background: #EE0033;
    color: #fff;
    font-size: 13px;
    font-weight: 800;
    padding: 5px 15px;
    border-radius: 3px;
    display: inline-block;
    width: fit-content;
    margin-bottom: 10px;
}

/* Contact links block */
.package-data .footer-strip .block-contact {
    display: flex;
    flex-direction: column;
    gap: 7px;
    border-left: 1px solid #ddd;
    padding-left: 20px;
}

.package-data .footer-strip .block-contact ul {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.package-data .footer-strip .block-contact li {
    list-style: none;
    display: flex;
    align-items: center;
    gap: 10px;
}

.package-data .footer-strip .block-contact li img {
    width: 25px !important;
    filter: brightness(0) saturate(100%) invert(18%) sepia(99%) saturate(5213%) hue-rotate(339deg) brightness(96%) contrast(105%);
}


/* Viettel logo block */
.package-data .footer-strip .block-logo {
    text-align: right;
}

.package-data .footer-strip .block-logo img {
    width: 100%;
    max-width: 200px;
}

.banner {
    background: #EE0033;
    padding: 45px 0;
    text-align: center;
    position: relative;
}

/* arc SVG block */
.banner-arc {
    position: relative;
    z-index: 1;
    margin-bottom: 20px;
}

.arc-svg {
    width: 100%;
    max-width: 820px;
    display: block;
    margin: 0 auto;
    overflow: visible;
}

/* features row */
.banner-features {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 60px 20px;
    position: relative;
    z-index: 1
}

.feat {
    flex: 1;
    position: relative;
    background-color: #FFF;
    border-radius: 25px;
    padding: 40px 15px 15px;
    box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
}

.feat-icon-wrap {
    background: #FFF;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    top: 0;
    left: 50%;
    transform: translate(-50%, -50%);
    padding: 5px;
    width: 115px;
    height: 80px;
}

.feat-icon-wrap img {
    width: 53px;
    object-fit: contain;
}

.feat h3 {
    font-size: 18px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 6px;
    color: #EE0033;
}

.feat p {
    font-size: 15px;
    font-weight: 600;
    color: #333;
    line-height: 1.4;
    text-align: center;
}

.dangky-ngay {
    margin-top: 40px;
}

.dangky-ngay a {
    border: 3px solid #FFF;
    color: #FFF;
    display: inline-flex;
    align-items: center;
    font-size: 20px;
    font-weight: 900;
    letter-spacing: 1.5px;
    padding: 15px 25px;
    text-transform: uppercase;
    border-radius: 30px;
    gap: 15px;
}

.dangky-ngay a svg {
    width: 30px;
    height: 30px;
    fill: #FFF;
}

.text-uudai {
    color: #FFF;
    margin-top: 20px;
    font-weight: 700;
    line-height: 2;
    font-size: 14px;
    letter-spacing: 1px;
}


/* Card giÃ¡ chÃ­nh */
.promo-main {
    background: #fff;
    border-radius: 12px;
    padding: 40px 24px;
    box-shadow: 0 2px 16px rgba(0, 0, 0, .08);
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.promo-main p {
    font-size: 22px;
    font-weight: 500;
}

.promo-main strong {
    font-size: 40px;
    font-weight: 800;
    color: #EE0033;
    line-height: 1;
}

/* Urgency */
.promo-urgency {
    background: #fff8e1;
    border-radius: 10px;
    padding: 30px 24px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-top: 25px;
}

.promo-urgency p {
    font-size: 22px;
    font-weight: 500;
}

.video-gioithieu iframe {
    width: 100%;
    aspect-ratio: 1455 / 728;
}

/* FAQ  */
.faq-wrap {
    padding: 60px 0;
}

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
    max-width: 860px;
    margin: 0 auto;
}

.faq-item {
    border: 1px solid rgba(31, 30, 29, 0.15);
    border-radius: 12px;
    overflow: hidden;
    background: #FFF;
    transition: border-color .2s, box-shadow .2s;
}

.faq-item.open {
    border-color: rgba(238, 0, 51, .25);
    box-shadow: 0 2px 16px rgba(238, 0, 51, .07);
}

.faq-q {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 18px 20px;
    cursor: pointer;
    user-select: none;
}

.faq-q:hover .faq-q-text {
    color: #EE0033;
}

.faq-icon {
    width: 32px;
    height: 32px;
    border-radius: 8px;
    background: #FFF0F3;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 15px;
}

.faq-item.open .faq-icon {
    background: #EE0033;
}

.faq-q-text {
    flex: 1;
    font-size: 18px;
    font-weight: 700;
    line-height: 1.4;
    transition: color .18s;
}

.faq-item.open .faq-q-text {
    color: #EE0033;
}

.faq-arrow {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform .25s;
}

.faq-item.open .faq-arrow {
    transform: rotate(180deg);
}

.faq-arrow svg {
    width: 16px;
    height: 16px;
    stroke: currentColor;
}

.faq-a {
    max-height: 0;
    overflow: hidden;
    transition: max-height .32s cubic-bezier(.4, 0, .2, 1);
}

.faq-a-inner {
    padding: 0 20px 20px 40px;
    font-size: 16px;
    line-height: 1.75;
}

.faq-a-inner strong {
    color: #EE0033;
    font-weight: 700;
}

.faq-a-inner ul {
    margin: 8px 0 0 16px;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.faq-a-inner li::marker {
    color: #EE0033;
}

/* Info data  */
.info-data {
    padding-top: 30px;
}

.data-grid {
    display: grid;
    grid-template-columns: 40% auto;
    gap: 40px;
}

.id-heading {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 28px;
    padding-bottom: 20px;
    border-bottom: 2px solid #EBEBEB;
}

.id-heading-icon {
    width: 38px;
    height: 38px;
    background: #EE0033;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 4px 14px rgba(238, 0, 51, 0.3);
}

.id-heading-icon svg {
    width: 18px;
    height: 18px;
}

.id-heading h2 {
    font-size: 22px;
    font-weight: 900;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.id-info table {
    width: 100%;
    border-collapse: collapse;
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.08);
    background: white;
}

.id-info tr {
    transition: background 0.2s ease;
}

.id-info tr:hover {
    background: #f6f9ff;
}

.id-info td {
    padding: 14px 18px;
    border-bottom: 1px solid #eee;
    font-size: 19px;
}

.id-info tr:last-child td {
    border-bottom: none;
}

.id-info td:first-child {
    font-weight: 600;
    color: #555;
    width: 40%;
    background: #fafbff;
}

.id-info td:last-child {
    font-weight: 500;
    font-size: 22px;
}

.id-info td:first-child {
    background: #fff5f5;
    color: #d70018;
    font-size: 24px;
    width: 25%;
}

.video-gioithieu {
    padding: 40px 0;
}

@keyframes color4 {

    0%,
    100% {
        color: #FFF;
    }

    50% {
        color: #EE0033;
    }
}

@media (max-width: 992px) {
    .hero-body {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .prob-card,
    .feat-card,
    .pkg-card {
        margin-bottom: 20px;
    }

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

    .data-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
}

@media (max-width: 768px) {
    .package-data .footer-strip {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 575px) {
    .urgency-bar span {
        font-size: 12px;
    }

    .problems,
    .features {
        padding: 30px 0px 20px;
    }

    .packages {
        padding: 40px 0px 0px;
    }

    .reg-box {
        padding: 40px 30px 40px;
        margin-bottom: 20px;
    }

    .register {
        padding: 30px 0px;
    }

    .banner-features {
        margin-top: 45px;
    }

    .feat p {
        font-size: 13px;
    }

    .feat h3 {
        font-size: 16px;
    }

    .banner {
        padding: 30px 0;
    }

    .title-wrap h2 strong {
        display: block;
    }

    .title-wrap {
        margin-bottom: 30px;
    }

    .prob-card {
        padding: 25px 28px 15px;
    }

    .pkg-card {
        padding: 30px 22px 20px;
    }

    .package-data .footer-strip {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .package-data .footer-strip .block-contact {
        border-left: 0px solid #ddd;
        padding-left: 0px;
    }

    .hero {
        padding: 40px 0;
    }

    .hero-right {
        padding: 30px 25px;
    }

    .hero-feat-list {
        margin-bottom: 20px;
    }

    .hero-right-cta {
        padding: 16px 5px;
        font-size: 13px;
    }

    .id-heading {
        margin-bottom: 20px;
        padding-bottom: 12px;
    }

    .id-heading h2 {
        font-size: 19px;
    }

    .id-info td:first-child {
        font-size: 17px;
        width: 33%;
    }

    .id-info td:last-child {
        font-size: 18px;
    }

    .info-data {
        padding-top: 0;
    }

    .package-data .notes-section .notes-title {
        font-size: 22px;
    }

    .package-data .notes-section {
        font-size: 18px;
    }

    .package-data .footer-strip .block-logo img {
        max-width: 150px;
    }

    .video-gioithieu {
        padding: 20px 0;
    }

    .promo-main p,
    .promo-urgency p {
        font-size: 17px;
    }

    .faq-wrap {
        padding: 30px 0 30px;
    }

    .floating-icon {
        display: none;
    }
}