/* ==========================================================================
   LAYER HOME - SECTION 1 (HERO BANNER)
   ========================================================================== */
.layer-home .section-1 {
    position: relative;
    padding-top: 16px;
}
.layer-home .section-1 .hero-visual-wrapper {
    position: relative;
    width: 100%;
    min-height: 712px; 
}
.layer-home .section-1 .background-1 {
    position: absolute;
    top: 0;
    left: -124px;
    z-index: 0;
    pointer-events: none;
}
.layer-home .section-1 .card-rating {
    position: absolute;
    top: 52px;
    left: 120px;
    z-index: -2;
}
.layer-home .section-1 .card-speed {
    position: absolute;
    top: 52px;
    right: -200px;
    z-index: -1;
}
.layer-home .section-1 .card-features {
    position: absolute;
    top: 47%;
    right: -60px;
    z-index: 1;
}
.layer-home .section-1 .card-speed .speed-divider {
    position: relative;
}
.layer-home .section-1 .card-speed .speed-divider::after {
    content: "";
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 1px;
    height: 60%;
    background-color: #E2E8F0;
}
.layer-home .section-1 .card-speed .border-end {
    border-color: #E2E8F0 !important;
}

.layer-home .section-1 .hero-badge {
    background-color: #ede8fe;
    color: #5a28fa;
}

.layer-home .section-1 .discount-bg {
    background-color: #e6f2db;
}

.layer-home .section-1 .discount-text {
    color: #488015;
}
.layer-home .section-1 .hero-features {
    color: #4b5563;
}

.layer-home .section-1 .hero-actions .btn-consultant:hover {
    background-color: #f5f5f5;
    border-color: #d1d1d1;
}

.layer-home .section-1 .hero-metrics {
    border-color: #e5e7eb !important;
}

.layer-home .section-1 .hero-partners-marquee {
    position: relative;
    width: 100%;
    overflow: hidden;
    padding-top: 4px;
}
.layer-home .section-1 .hero-partners-marquee::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 1px;
    z-index: 2;
    background: linear-gradient(
        90deg, 
        rgba(226, 232, 240, 0) 0%, 
        rgba(226, 232, 240, 0.8) 20%, 
        rgba(226, 232, 240, 0.8) 80%, 
        rgba(226, 232, 240, 0) 100%
    );
}

.layer-home .section-1 .hero-partners-marquee .marquee-fade {
    pointer-events: none;
}

.layer-home .section-1 .hero-partners-marquee .marquee-fade.fade-start {
    left: -200px !important;
}
.layer-home .section-1 .hero-partners-marquee .marquee-fade.fade-end {
    right: -200px !important;
}

.layer-home .section-1 .marquee-wrapper {
    display: flex !important;
    width: max-content !important;
}

.layer-home .section-1 .marquee-track {
    display: flex !important;
    align-items: center !important;
    flex-shrink: 0 !important;
    animation: marqueeSeamless 25s linear infinite !important;
    will-change: transform;
}

.layer-home .section-1 .partner-item {
    flex-shrink: 0 !important;
    padding-right: 45px;
    display: flex;
    align-items: center;
}

.layer-home .section-1 .partner-item img {
    display: block;
    max-width: none !important;
    height: auto;
}
/* Di chuyển mượt mà theo con trỏ chuột cho Section 1 */
.layer-home .section-1 .hero-floating-card {
  will-change: transform;
  transition: transform 0.1s ease-out;
}

/* Khi rê chuột ra ngoài khu vực visual, card lướt về vị trí cũ */
.layer-home .section-1 .hero-visual-wrapper:not(:hover) .hero-floating-card {
  transition: transform 0.4s ease-in-out;
  transform: translate(0px, 0px) !important;
}

@keyframes marqueeSeamless {
    0% {
        transform: translateX(0%);
    }
    100% {
        transform: translateX(-100%);
    }
}

/* SECTION 2 */
.layer-home .section-2 {
  background: #fafafa;
  padding: 72px 0 64px;
}

.layer-home .section-2 .ask {
    background-image: url('../img/home/bg-q.png');
    background-size: cover;      
    background-position: center;  
    background-repeat: no-repeat;

    border: 1px solid #e5e7eb;
    border-radius: 16px;

    padding: 1px 0;
}

.layer-home .section-2 .col-md-3 {
    display: flex;
}

.layer-home .section-2 .card-item {
    padding: 48px 24px;
    border: 1px solid transparent; /* cố định 3px luôn, không đổi -> không giật */
    border-radius: 22px;
    position: relative;
    width: 100%;
    margin-bottom: 30px;
}

/* Giả lập viền mỏng 1px, nằm đè khớp lên viền thật lúc bình thường */
.layer-home .section-2 .card-item::after {
    content: '';
    position: absolute;
    inset: 0;
    border: 1px solid #e5e7eb;
    border-radius: 22px;
    pointer-events: none;
    transition: opacity 0.15s ease;
}

/* Hover: hiện viền thật 3px xanh, ẩn viền giả 1px đi */
.layer-home .section-2 .card-item:hover {
    background: rgba(33, 37, 41, 0.02);
    border-color: #e5e7eb;
}
.layer-home .section-2 .card-item:hover::after {
    opacity: 0;
}

.layer-home .section-2 .card-item:hover .btn-buy-now {
    background: #457bff;
    color: #fff;
}

/* Card phổ biến: viền 3px xanh cố định, không cần viền giả 1px */
.layer-home .section-2 .card-item.featured {
    border-width: 4px;
    border-color: #457bff;
}
.layer-home .section-2 .card-item.featured::after {
    display: none;
}
.layer-home .section-2 .card-item.featured .btn-buy-now {
    background: #457bff;
    color: #fff;
}
.layer-home .section-2 .percent-badge {
    background-color: #e6f2db;
    color: #538822;
    border-radius: 999px;
    padding: 4px 6px;
}
.layer-home .section-2 .is-most-popular {
    position: absolute;
    bottom: 100%;
    background-color: #457bff;
    color: #fff;
    text-align: center;
    left: -4px;
    right: -4px;
    padding: 10px 42px;
    border-radius: 22px 22px 0 0;
    box-sizing: border-box;
    white-space: nowrap;
    width: auto;
    min-width: max-content;
    z-index: 2;
}
.layer-home .section-2 .is-most-popular:before {
    content: "";
    position: absolute;
    bottom: -25px;
    left: 0;
    width: 30px;
    height: 30px;
    background: radial-gradient(circle at bottom right, transparent 28px, #457bff 30px);
}
.layer-home .section-2 .is-most-popular:after {
    content: "";
    position: absolute;
    bottom: -25px;
    right: 0;
    width: 30px;
    height: 30px;
    background: radial-gradient(circle at bottom left, transparent 28px, #457bff 30px);
}
.layer-home .section-2 .btn-buy-now {
    border: 1px solid #457bff;
    color: #457bff;
    width: 100%;
    padding: 12px;
    border-radius: 16px;
    background: none;
}
/* SECTION 3 */
.layer-home .section-3 {
  padding: 80px 0;
}
.layer-home .section-3 .hero-badge {
    background-color: #e8efff;
    color: #1e5fff;
}
.layer-home .section-3 .btn-buynow {
    border-color: #2563eb;
    color: #000;
    transition: all 0.2s ease-in-out;
}
.layer-home .section-3 .btn-buynow::after {
    content: "";
    display: block;
    width: 10px;
    height: 16px;

    background-image: url('../img/home/right-arrow-black.png');
    background-size: contain; 
    background-position: center;
    background-repeat: no-repeat;

    transition: all 0.2s ease-in-out;
}
.layer-home .section-3 .btn-buynow:hover {
    background-color: #2563eb;
    color: #fff;
}
.layer-home .section-3 .btn-buynow:hover::after {
    background-image: url('../img/home/right-arrow.png'); 
}

/* Spacing cho Swiper chứa 4 chấm bên dưới */
.layer-home .section-3 .myDomainSwiper {
  position: relative;
  padding-bottom: 45px !important;
}

.layer-home .section-3 .myDomainSwiper .card.is-active {
  border-color: #2563eb;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
}

.layer-home .section-3 .myDomainSwiper .swiper-pagination-lock {
  display: flex !important;
}

.layer-home .section-3 .myDomainSwiper .swiper-pagination {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 2px !important;
  display: flex !important;
  justify-content: center;
  align-items: center;
  width: 100%;
  z-index: 10;
}

/* Kiểu dáng 4 chấm chưa active (Tròn viền xanh, nền trong suốt) */
.layer-home .section-3 .myDomainSwiper .swiper-pagination-bullet {
  width: 15px;
  height: 15px;
  border-radius: 50%;
  background-color: transparent;
  border: 1.5px solid #2563eb;
  opacity: 1;
  margin: 0 5px !important;
  transition: all 0.25s ease-in-out;
  cursor: pointer;
}

/* Kiểu dáng chấm khi active (Lấp đầy màu xanh) */
.layer-home .section-3 .myDomainSwiper .swiper-pagination-bullet-active {
  background-color: #2563eb;
}

/* Đảm bảo chiều cao các Card bằng nhau và nút bấm luôn nằm sát đáy */
.layer-home .section-3 .myDomainSwiper .swiper-slide {
  height: auto;
  display: flex;
}

.layer-home .section-3 .myDomainSwiper .card {
  width: 100%;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.layer-home .section-3 .myDomainSwiper .card:hover {
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
}

.layer-home .section-3 .domain-check .title {
    line-height: 1.2;
}

.layer-home .section-3 .domain-check {
    background-image: url('../img/home/bg-2.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.layer-home .section-3 .domain-check .domain-check-form {
    max-width: 80%;
}

.layer-home .section-3 .domain-check .search-icon {
    position: absolute;
    left: 16px;
    top: 50%;
    transform: translateY(-50%);
}

.layer-home .section-3 .domain-check .submit-btn {
    position: absolute;
    right: 8px;
    top: 50%;
    transform: translateY(-50%);
    background-color: #b5caff;
    border-radius: 50%;
    padding: 5px 6px;
    border: none;
}
.layer-home .section-3 .domain-check .submit-btn:hover {
    background-color: #2563eb;
}
.layer-home .section-3 .domain-check .submit-btn img {
    padding: 2px;
}

.layer-home .section-4 .title {
    align-self: flex-start;
    color: #457bff;
    background: #f0f4ff;
    padding: 8px 24px;
    border-radius: 999px;
}
.layer-home .section-4 .image-1 {
    background-image: url('../img/home/right-bg.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    height: 610px;
    border-radius: 24px;
}

.layer-home .section-4 .block-1 {
    position: absolute;
    background: #fff;
    border-radius: 27px;
    top: 86px;
    left: 14%;
    padding: 36px 42px 12px 42px;
}
.layer-home .section-4 .block-2 {
    position: absolute;
    background: #fff;
    border-radius: 27px;
    top: 48%;
    left: 14%;
    padding: 36px 48px 12px 48px;
}
.layer-home .section-4 .block-3 {
    position: absolute;
    background: #fff;
    border-radius: 27px;
    top: 56%;
    right: 3%;
    padding: 36px 48px 12px 48px;
}
.layer-home .section-4 .image-2 {
    background-image: url('../img/home/bg-im-2.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    height: 610px;
    border-radius: 24px;
}
.layer-home .section-4 .image-3 {
    background-image: url('../img/home/bg-im-3.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    height: 610px;
    border-radius: 24px;
}

.layer-home .section-4 .description {
    padding-bottom: 30px;
}
.layer-home .section-4 .block-5 {
    position: absolute;
    background: #fff;
    border-radius: 22px;
    top: 45%;
    left: 7%;
    padding: 16px 32px 12px 20px;
}
.layer-home .section-4 .block-6 {
    position: absolute;
    background: #fff;
    border-radius: 22px;
    top: 69%;
    left: 34%;
    padding: 18px 24px 12px 20px;
}

.layer-home .section-4 .bento-grid {
  display: grid;
  grid-template-columns: repeat(24, 1fr);
  grid-template-rows: auto auto;
  gap: 24px;
}

.layer-home .section-4 .user-1 {
    position: absolute;
    top: 74px;
    left: 40px;
}
.layer-home .section-4 .user-2 {
    position: absolute;
    top: 173px;
    left: 72px;
}
.layer-home .section-4 .requirement-confirmed {
    position: absolute;
    top: 267px;
    left: 136px;
}

.layer-home .section-4 .bento-card {
  position: relative;
  border-radius: 24px;
  border: 1px solid #e5e7eb;
  padding: 187px 32px 32px;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: top center;
}

.layer-home .section-4 .card-support {
  grid-column: 1 / 9;
  grid-row: 1 / 3;
  background-image: url('../img/home/bg-support.png');
  height: 687px;
}

.layer-home .section-4 .card-refund {
  grid-column: 9 / 19;
  grid-row: 1;
  background-image: url('../img/home/bg-refund.png');
}

.layer-home .section-4 .card-uptime {
  grid-column: 19 / 25;
  grid-row: 1;
  background-image: url('../img/home/time-ac.png');
}

.layer-home .section-4 .card-domain {
  grid-column: 9 / 15;
  grid-row: 2;
  background-image: url('../img/home/bg-free-domain.png');
}

.layer-home .section-4 .card-ssl {
  grid-column: 15 / 25;
  grid-row: 2;
  background-image: url('../img/home/bg-free-ssl.png');
}

.layer-home .section-4 .chat-preview {
    position: absolute;
    top: 24px;
    left: 50%;
    transform: translateX(-50%);
    background-image: url("../img/home/home-bento-1.png");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: top center;
    margin-bottom: 24px;
    width: 395px;
    height: 362px;
}

.layer-home .section-5 {
    background: #fafafa;
}
.layer-home .section-5 .col-md-3 {
    display: flex;
}
.layer-home .section-5 .card-item {
    background: #ffffff;
    padding: 54px 32px;
    border-radius: 22px;
    border: 1px solid #ebebeb;
    width: 100%;
    margin-bottom: 24px;
}
.layer-home .section-5 .card-item:hover {
    border-color: #a4bbf6;
}

.layer-home .section-6 .tab-panel .col-md-4 {
    display: flex;
}
.layer-home .section-6 .card-item {
    background: #ffffff;
    padding: 32px 32px 54px;
    border-radius: 22px;
    border: 1px solid #ebebeb;
    width: 100%;
    margin-bottom: 24px;
}
.layer-home .section-6 .card-item:hover {
    border-color: #a4bbf6;
}
.layer-home .section-6 .background-1 {
    background-image: url("../img/home/bg-promote.png");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    height: 267px;
    border-radius: 30px;
    padding: 60px 80px 60px 72px;
}

.layer-home .section-6 .hosting-tab-switch {
  background: #f1f3fb;
  border-radius: 999px;
  padding: 6px;
  gap: 4px;
  display: inline-flex;
}

.layer-home .section-6 .tab-panel.d-none {
  display: none;
}
.layer-home .section-6 .hosting-tab-switch {
  border-radius: 999px;
  padding: 6px;
  gap: 4px;
}
 
.layer-home .section-6 .tab-switch-btn {
  border: none;
  background: transparent;
  padding: 12px 24px;
  border-radius: 999px;
  font-size: 16px;
  font-family: inherit;
  font-weight: 500;
  white-space: nowrap;
  cursor: pointer;
  transition: background-color .2s ease, color .2s ease;
}
 
.layer-home .section-6 .tab-switch-btn:hover {
  color: #1A1F36;
}
 
.layer-home .section-6 .tab-switch-btn.active {
  background: #457bff;
  color: #FFFFFF;
  box-shadow: 0 4px 10px rgba(79, 109, 245, 0.25);
}
 
/* Panel content */
.layer-home .section-6 .tab-panel {
  animation: sectionSixFadeIn .25s ease;
}
 
.layer-home .section-6 .tab-panel.d-none {
  display: none;
}

.layer-home .section-7 .badge-pill {
  display: inline-block;
  background: #eee7ff;
  color: #5a28fa;
  padding: 8px 24px;
  border-radius: 999px;
}
 
.layer-home .section-7 .testimonial-card {
  background: #FFFFFF;
  border: 1px solid #E7E9F2;
  border-radius: 20px;
  padding: 48px 36px;
  height: 100%;
  box-shadow: 0 6px 20px rgba(16, 24, 64, 0.04);
   display: flex;
  flex-direction: column;
}

.layer-home .section-7 .testimonial-card.is-active {
  border-color: #2563eb;
}

.layer-home .section-7 .testimonial-stars {
  height: 18px;
  width: auto;
  align-self: flex-start;
  flex-shrink: 0;
}

.layer-home .section-7 .testimonial-content {
  flex-grow: 1;
}

.layer-home .section-7 .testimonial-author {
  margin-top: auto;
}
 
.layer-home .section-7 .testimonial-stars {
  height: 18px;
  width: auto;
}
 
.layer-home .section-7 .testimonial-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
}
 
.layer-home .section-7 .testimonial-role {
  color: #8A94A6;
}
 
/* Swiper wrapper - không cắt shadow của card */
.layer-home .section-7 .myTestimonialSwiper {
  overflow: hidden;
  padding: 4px 4px 8px;
}
 
.layer-home .section-7 .myTestimonialSwiper .swiper-slide {
  height: auto;
}
 
/* Pagination dots */
.layer-home .section-7 .testimonial-pagination {
  position: static;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
}
 
.layer-home .section-7 .testimonial-pagination .swiper-pagination-bullet {
  width: 15px;
  height: 15px;
  border-radius: 50%;
  background-color: transparent;
  border: 1.5px solid #2563eb;
  opacity: 1;
  margin: 0 5px !important;
  transition: all 0.25s ease-in-out;
  cursor: pointer;
}

.layer-home .section-7 .testimonial-pagination .swiper-pagination-bullet-active {
  background-color: #2563eb;
  transform: none;
}

.layer-home .section-8 .background-1 {
    background-image: url("../img/home/bg-3.png");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    height: 267px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.layer-home .section-8 .btn-contact {
    background-color: #5586f7;
}
.layer-home .btn-start-now {
    background-color: #fbd801;
}
 
@keyframes sectionSixFadeIn {
  from { opacity: 0; transform: translateY(6px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Responsive */
@media (max-width: 1599.98px) {
    .layer-home .section-1 .background-1 {
        left: -256px;
    }
    .layer-home .section-1 .card-rating {
        left: -12px;
    }
    .layer-home .section-1 .card-speed {
        right: -72px;
    }
    .layer-home .section-1 .card-features{
        right: 52px;
    }
}

@media (max-width: 1399.98px) {
    .layer-home .section-1 .card-speed {
        right: -100px;
    }
}


@media (max-width: 1199.98px) {
    .layer-home .section-1 .background-1 {
        display: none;
    }
    .layer-home .section-1 .card-rating {
        right: -20px;
    }
    .layer-home .section-1 .card-features {
        right: -20px;
        top: 50%;
    }
    .layer-home .section-1 .card-speed {
        right: -20px;
        top: 194px;
    }
    .layer-home .section-1 .col-lg-5 {
        width: 60%;
    }
    .layer-home .section-1 .col-lg-7 {
        width: 40%;
    }
    .layer-home .section-4 .block-6 {
        left: 22%;
    }
    .layer-home .section-6 .background-1 {
        height: 242px;
        padding: 60px 42px 60px 42px;
    }
    .layer-home .section-8 .col-md-7 {
        width: 100%;
    }
    .layer-home .section-8 .col-md-7 .text-1 {
        text-align: center;
        margin-bottom: 32px;
    }
    .layer-home .section-8 .col-md-5 {
        width: 100%;
    }
}

@media (max-width: 991.98px) {
    .layer-home .section-1 .hero-visual-wrapper {
        min-height: auto;
    }

    .layer-home .section-1 .hero-floating-card {
        position: static !important;
        width: 100% !important;
        margin-top: 15px;
    }

    .layer-home .section-3 .domain-check .col-md-6 {
        width: 100%;
    }

    .layer-home .section-2 .col-md-3, 
    .layer-home .section-5 .col-md-3,
    .layer-home .section-6 .tab-panel .col-md-4
     {
        width: 50%;
    }
    .layer-home .section-2 .card-item:has(.is-most-popular) {
        margin-top: 30px;
    }
    .layer-home .section-4 .bento-grid {
        grid-template-columns: repeat(8, 1fr);
        grid-template-rows: auto auto auto;
    }

    .layer-home .section-4 .card-support {
        grid-column: 1 / 9;
        grid-row: 1;
        height: auto;
    }

    .layer-home .section-4 .card-refund {
        grid-column: 1 / 6;   /* 5/8 */
        grid-row: 2;
    }

    .layer-home .section-4 .card-uptime {
        grid-column: 6 / 9;   /* 3/8 */
        grid-row: 2;
    }

    .layer-home .section-4 .card-domain {
        grid-column: 1 / 4;   /* 3/8 */
        grid-row: 3;
    }

    .layer-home .section-4 .card-ssl {
        grid-column: 4 / 9;   /* 5/8 */
        grid-row: 3;
    }

    .layer-home .section-4 .image-1 {
        height: 300px;
    }
    .layer-home .section-4 .image-2 {
        height: 333px;
        background-position: right;
    }
    .layer-home .section-4 .image-3 {
        height: 333px;
    }
    .layer-home .section-4 .block-1 {
        top: 12px;
        left: 4%;
        padding: 20px 24px 4px 24px;
    }
    .layer-home .section-4 .block-1 img {
        width: 42px;
    }
    .layer-home .section-4 .block-2 {
        top: 45%;
        left: 4%;
        padding: 20px 42px 16px 42px;
    }
    .layer-home .section-4 .block-2 .meter {
        width: 78px;
    }
    .layer-home .section-4 .block-2 .text-1 {
        margin-top: 0.5rem !important;
    }
    .layer-home .section-4 .block-2 .text-2 {
        margin-bottom: 0 !important;
    }
    .layer-home .section-4 .block-3 {
        top: 51%;
        right: 3%;
        padding: 16px 32px 4px 32px;
    }
    .layer-home .section-4 .block-6 {
        left: 12%;
        top: 73%;
        padding: 12px 24px 8px 20px;
    }
}

@media (max-width: 767.98px) {
    .layer-home .section-1 .card-rating, .layer-home .section-1 .card-features, .layer-home .section-1 .card-speed {
        display: none !important;
    }
    .layer-home .section-1 .col-lg-5 {
        width: 100%;
    }
    .layer-home .section-3 .domain-check .domain-check-form {
        max-width: 100%;
    }
    .layer-home .section-3 .domain-check {
        background-position: left;
    }
    .layer-home .section-3 .domain-check .title {
        font-size: 24px !important;
    }
    .layer-home .section-2 .col-md-3, 
    .layer-home .section-5 .col-md-3,
    .layer-home .section-6 .tab-panel .col-md-4
    {
        width: 100%;
    }
    .layer-home .section-4 .image-1,
    .layer-home .section-4 .image-2,
    .layer-home .section-4 .image-3 {
        margin-left: 12px !important;
        margin-right: 12px !important;
        width: calc(100% - 24px) !important;
        margin-top: 20px;
    }
    .layer-home .section-6 .background-1 {
        height: 354px !important;
    }
    .layer-home .section-6 .background-1 .text-1 {
        text-align: center;
    }
    .layer-home .section-6 .background-1 .text-2 {
        margin-top: 24px;
        align-items: center !important;
    }
    .promote .b-2 {
        display: none !important;
    }
}

@media (max-width: 575.98px) {
    .layer-home .section-6 .hosting-tab-switch {
        display: flex;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
        -ms-overflow-style: none;
        max-width: 100%;
    }

    .layer-home .section-6 .tab-switch-btn {
        flex: 0 0 auto;
    }

    .layer-home .section-1 .marquee-wrapper {
        height: 90px;
    }

    .layer-home .section-4 .bento-grid {
        grid-template-columns: 1fr;
        grid-template-rows: auto;
    }

    .layer-home .section-4 .card-support {
        grid-column: 1;
        grid-row: auto;
        height: auto;
    }

    .layer-home .section-4 .card-refund {
        grid-column: 1;
        grid-row: auto;
    }

    .layer-home .section-4 .card-uptime {
        grid-column: 1;
        grid-row: auto;
    }

    .layer-home .section-4 .card-domain {
        grid-column: 1;
        grid-row: auto;
    }

    .layer-home .section-4 .card-ssl {
        grid-column: 1;
        grid-row: auto;
    }
    .layer-home .section-4 .content.pe-8 {
        padding-right: 0 !important;
    }
    .layer-home .section-4 .content.ps-8 {
        padding-left: 0 !important;
    }
    .layer-home .section-6 .background-1 .text-1 {
        font-size: 28px !important;
    }
    .layer-home .section-7 .text-1 {
        text-align: center;
    }
    
    .layer-home .section-3 .swp {
        border: none !important;
        padding: 0 !important;
    }

}
