/* ── 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: 30px;
}

.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: 11px;
    font-weight: 700;
    letter-spacing: 2px;
    color: #EE0033;
    text-transform: uppercase;
    margin-bottom: 8px;
}

.prob-need {
    font-size: 22px;
    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;
    position: relative;
    overflow: hidden;
    background: #fff;
    transition: border-color 0.3s, box-shadow 0.3s;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.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-card .top {
    padding: 44px 32px 40px;
}

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

.feat-icon img {
    height: 80px;
    max-width: 180px;
    object-fit: contain;
}

.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: 15px;
    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;
}

.feat-card .see-now {
    padding: 8px 25px;
    border-radius: 50px;
    background-color: #EE0033;
    color: #FFF;
    font-weight: 600;
    font-size: 18px;
    text-transform: uppercase;
    display: inline-block;
    margin-top: 20px;
    transition: .3s;
    animation: color4 1.4s ease-in-out infinite;
}

.feat-card .wrap-img {
    /* padding-bottom: 125%; */
    display: flex;
}

@keyframes color4 {
    0%, 100% {
        background: #ff2252;
    }
    50% {
        background: #a10023;
    }
}
/* ── 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;
    background-color: #EE0033;
    color: #FFF;
}

.pkg-card.best .pkg-id {
    color: #FFF;
}

.pkg-card.best .pkg-price,
.pkg-card.best .pkg-price span,
.pkg-card.best .pkg-fit {
    color: #FFF;
}

.pkg-card.best ul li,
.pkg-card.best ul li::before {
    color: #FFF;
}

.pkg-card.best .pkg-divider {
    background-color: #FFF;
}

.pkg-ribbon {
    position: absolute;
    top: 18px;
    right: -30px;
    background: #FFF;
    color: #EE0033;
    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: 15px;
    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 {
    background: #EE0033;
    color: #FFF;
}

.pkg-card.best .pkg-btn {
    color: #FFF;
    border: 2px solid #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;
        color: #000;
    height: 47px;
}

.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;
}

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

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

.hero-title {
    font-size: clamp(34px, 4vw, 90px);
    line-height: 1.2;
    letter-spacing: 3px;
    position: relative;
    z-index: 1;
    animation: fade-up 0.6s 0.55s both;
    color: #EE0033;
}

.hero-title .line-small {
    display: block;
    font-size: clamp(24px, 4vw, 38px);
    letter-spacing: 5px;
    color: #999;
    font-weight: 800;
    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);
    color: #555;
    max-width: 560px;
    line-height: 1.7;
    margin: 32px 0 40px;
    position: relative;
    z-index: 1;
    animation: fade-up 0.6s 0.7s both;
}

.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;
}

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

.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: linear-gradient(135deg, #EE0033 0%, #FF1744 60%, #FF4D6D 100%);
}

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

/* hero feature list */
.hero-tag {
    display: inline-block;
    background: #EE0033;
    color: #FFF;
    font-size: 13px;
    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 {
    width: 36px;
    height: 36px;
    background: #FFF0F3;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    flex-shrink: 0;
}

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

.hero-feat-list li .ft small {
    font-size: 12px;
    color: #999;
    font-weight: 400;
    margin-top: 2px;
}

.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: 80px;
}

.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;
    /* border-top: 1px solid #EE0033; */
}

.package-data .notes-section .notes-title {
    font-size: 18px;
    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;
    font-size: 15px;
}

.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;
}

.banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
     background: linear-gradient(
        to bottom,
        rgba(238, 0, 51, 0.85),
        rgba(255, 255, 255, 0.2)
    );
}

/* 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;
    padding: 0 15px;
}

/* 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 #EE0033;
    background-color: #EE0033;
    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: 12px;
    font-weight: 700;
    padding-bottom: 110px;
    line-height: 2;
    font-size: 17px;
    letter-spacing: 1px;
    text-shadow:
        0 1px 2px rgba(0,0,0,0.4),
        0 4px 12px rgba(0,0,0,0.25);
}


/* Card giá chính */
.promo-main {
    background: #fff;
    border-radius: 12px;
    padding: 32px 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: #e1e5e8;
    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;
}

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

.listImage-grid .item {
    display: flex;
}

.list-image {
    padding-bottom: 80px;
}

.countdown {
    color: #FFF;
    font-size: 24px;
    font-weight: 700;
    margin-top: 30px;
     text-shadow:
        0 1px 2px rgba(0,0,0,0.4),
        0 4px 12px rgba(0,0,0,0.25);
}

#timer {
    padding: 6px 20px 8px;
    border-radius: 40px;
    display: inline-block;
    margin-left: 8px;
    border: 2px solid #FFF;
    background-color: #FFF;
    color: #EE0033;
    text-shadow: none;
}



@media (max-width: 992px) {
    .hero-right {
        display: none;
    }

    .hero-body {
        grid-template-columns: 1fr;
    }

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

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

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

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

    .banner-slider .item img {
        min-height: 500px;
    }

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

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

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

    .register {
        padding: 40px 0px;
    }

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

    .feat p {
        font-size: 11px;
        font-weight: 400;
    }

    .feat h3 {
            font-size: 12px;
            font-weight: 600;
    }

    .banner {
        padding: 30px 0;
    }

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

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

    .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;
    }

    .package-wrap {
        padding-bottom: 30px;
    }

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

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

    .text-uudai {
        padding: 0 30px;
    }

    .title-page-des {
        font-size: 13px;
    }

    .promo-main h3 strong{
        font-size: 28px;
    }

    .list-image {
        padding-bottom: 30px;
    }

    .countdown {
        font-size: 22px;
    }

    .feat-card {
        height: auto;
    }

    .banner {
        background-size: contain !important;
        background-position: bottom !important;
    }
}