.explore-links-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
}
.explore-links-grid .explore-card {
    display: flex;
    height: auto;
    min-height: 64px;
    align-items: center;
    gap: 12px;
    padding: 14px 15px;
    border: 1px solid #dce6f1;
    border-radius: 6px;
    background: #fff;
    box-shadow: 0 6px 14px rgba(31, 67, 107, .06);
}
.explore-links-grid .explore-icon {
    display: flex;
    width: 36px;
    height: 36px;
    flex: 0 0 36px;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    background: #edf6ff;
    font-size: 14px;
}
.explore-links-grid .explore-overlay {
    position: static;
    width: auto;
    height: auto;
    padding: 0;
    background: none;
    color: var(--secondary-color);
    text-shadow: none;
}
.explore-links-grid .explore-overlay h3 {
    margin: 0 0 4px;
    color: var(--secondary-color);
    font-size: 14px;
    font-weight: 700;
    line-height: 1.3;
}
.explore-links-grid .explore-overlay .explore-desc {
    margin: 0;
    color: var(--text-light);
    font-size: 12px;
    line-height: 1.3;
}
.explore-links-grid .explore-card:hover {
    border-color: #c4d8ec;
    box-shadow: 0 8px 18px rgba(31, 67, 107, .1);
    transform: translateY(-2px);
}
.explore-grid .product-card-toolbar {
    display: flex;
    min-height: 36px;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    margin-bottom: 8px;
}
.explore-grid .product-label {
    position: static;
    padding: 7px 14px;
    border-radius: 999px;
    background: #edf6ff;
    color: #0874ce;
    font-size: 13px;
    line-height: 1;
}
.explore-grid .product-label.label-sold {
    background: #f0f2f5;
    color: #6b7280;
}
.explore-grid .favorite-btn {
    width: 32px;
    height: 32px;
    margin-left: auto;
    border-radius: 0;
    background: transparent;
    color: #0b4e89;
}
.explore-grid .favorite-btn:hover {
    background: transparent;
    color: var(--primary-color);
}
.explore-grid .favorite-btn svg {
    width: 25px;
    height: 25px;
}

.focus-region-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
}
.focus-region-card {
    display: flex;
    min-width: 0;
    overflow: hidden;
    flex-direction: column;
    border: 1px solid #dce6f1;
    border-radius: 6px;
    background: #fff;
    box-shadow: 0 6px 14px rgba(31, 67, 107, .06);
    color: var(--secondary-color);
    transition: box-shadow .25s ease, transform .25s ease;
}
.focus-region-card:hover {
    color: var(--secondary-color);
    text-decoration: none;
    transform: translateY(-4px);
    box-shadow: 0 10px 22px rgba(31, 67, 107, .12);
}
.focus-region-image {
    overflow: hidden;
    aspect-ratio: 16 / 9;
}
.focus-region-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .35s ease;
}
.focus-region-card:hover .focus-region-image img {
    transform: scale(1.04);
}
.focus-region-content {
    display: flex;
    flex: 1;
    align-items: flex-start;
    flex-direction: column;
    padding: 14px 16px 16px;
}
.focus-region-label {
    margin-bottom: 10px;
    padding: 6px 11px;
    border-radius: 999px;
    background: #edf6ff;
    color: #0874ce;
    font-size: 12px;
    font-weight: 700;
    line-height: 1;
}
.focus-region-label.thue {
    background: #ecf9ef;
    color: #159447;
}
.focus-region-content h3 {
    margin: 0 0 5px;
    color: var(--secondary-color);
    font-size: 18px;
    font-weight: 700;
    line-height: 1.35;
}
.focus-region-content p {
    margin: 0 0 6px;
    color: var(--text-light);
    font-size: 13px;
    line-height: 1.45;
}
.focus-region-button {
    align-self: flex-end;
    margin-top: auto;
    padding: 9px 14px;
    border: 1px solid #b9d9fb;
    border-radius: 8px;
    color: #0874ce;
    font-size: 12px;
    font-weight: 700;
}

.home-blog-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
}
.home-blog-card {
    display: flex;
    min-width: 0;
    overflow: hidden;
    flex-direction: column;
    border: 1px solid #dce6f1;
    border-radius: 6px;
    background: #fff;
    box-shadow: 0 6px 14px rgba(31, 67, 107, .06);
    transition: box-shadow .25s ease, transform .25s ease;
}
.home-blog-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 22px rgba(31, 67, 107, .12);
}
.home-blog-image {
    display: block;
    overflow: hidden;
    aspect-ratio: 16 / 9;
}
.home-blog-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .35s ease;
}
.home-blog-card:hover .home-blog-image img {
    transform: scale(1.04);
}
.home-blog-content {
    display: flex;
    flex: 1;
    align-items: flex-start;
    flex-direction: column;
    padding: 14px 16px 16px;
}
.home-blog-category {
    margin-bottom: 12px;
    padding: 6px 11px;
    border-radius: 999px;
    background: #edf6ff;
    color: #0874ce;
    font-size: 12px;
    font-weight: 700;
    line-height: 1;
}
.home-blog-content h3 {
    margin: 0 0 10px;
    font-size: 18px;
    font-weight: 700;
    line-height: 1.35;
}
.home-blog-content h3 a {
    overflow: hidden;
    color: var(--secondary-color);
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
}
.home-blog-content h3 a:hover {
    color: var(--primary-color);
    text-decoration: none;
}
.home-blog-content p {
    overflow: hidden;
    margin: 0 0 14px;
    color: var(--text-light);
    display: -webkit-box;
    font-size: 13px;
    line-height: 1.5;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
}
.home-blog-meta {
    display: flex;
    gap: 4px;
    margin-top: auto;
    color: var(--text-light);
    font-size: 13px;
    line-height: 1.4;
}
.home-blog-meta a {
    color: var(--text-light);
}
.home-blog-meta a:hover {
    color: var(--primary-color);
}

.home-project-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
}
.home-project-card {
    display: flex;
    min-width: 0;
    overflow: hidden;
    flex-direction: column;
    border: 1px solid #dce6f1;
    border-radius: 6px;
    background: #fff;
    box-shadow: 0 6px 14px rgba(31, 67, 107, .06);
    color: var(--secondary-color);
    transition: box-shadow .25s ease, transform .25s ease;
}
.home-project-card:hover {
    color: var(--secondary-color);
    text-decoration: none;
    transform: translateY(-4px);
    box-shadow: 0 10px 22px rgba(31, 67, 107, .12);
}
.home-project-image {
    overflow: hidden;
    aspect-ratio: 16 / 8;
}
.home-project-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .35s ease;
}
.home-project-card:hover .home-project-image img {
    transform: scale(1.04);
}
.home-project-content {
    display: flex;
    flex: 1;
    flex-direction: column;
    padding: 12px 16px 20px;
}
.home-project-labels {
    display: flex;
    flex-wrap: wrap;
    gap: 7px;
    margin-bottom: 10px;
}
.home-project-labels span {
    padding: 6px 10px;
    border-radius: 999px;
    background: #edf6ff;
    color: #0874ce;
    font-size: 11px;
    font-weight: 700;
    line-height: 1;
}
.home-project-content h3 {
    margin: 0 0 7px;
    color: var(--secondary-color);
    font-size: 17px;
    font-weight: 700;
    line-height: 1.35;
}
.home-project-meta {
    overflow: hidden;
    margin: 0 0 12px;
    color: var(--text-light);
    font-size: 12px;
    line-height: 1.45;
    text-overflow: ellipsis;
    white-space: nowrap;
}
.home-project-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-top: auto;
}
.home-project-price {
    margin: 0;
    color: var(--primary-color);
    font-size: 20px;
    font-weight: 700;
    line-height: 1.2;
}
.home-project-button {
    flex: 0 0 auto;
    margin-left: auto;
    padding: 9px 14px;
    border: 1px solid #b9d9fb;
    border-radius: 8px;
    color: #0874ce;
    font-size: 12px;
    font-weight: 700;
}

.home-business-slider {
    padding-bottom: 6px;
}
.home-business-slider .swiper-slide {
    height: auto;
}
.home-business-card {
    display: flex;
    height: 100%;
    min-width: 0;
    overflow: hidden;
    flex-direction: column;
    border: 1px solid #dce6f1;
    border-radius: 6px;
    background: #fff;
    box-shadow: 0 6px 14px rgba(31, 67, 107, .06);
    transition: box-shadow .25s ease, transform .25s ease;
}
.home-business-card:hover {
    text-decoration: none;
    transform: translateY(-4px);
    box-shadow: 0 10px 22px rgba(31, 67, 107, .12);
}
.home-business-cover {
    position: relative;
    overflow: hidden;
    aspect-ratio: 16 / 8;
    background: #edf3f8;
}
.home-business-cover > img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: .72;
    transition: transform .35s ease;
}
.home-business-card:hover .home-business-cover > img {
    transform: scale(1.04);
}
.home-business-logo {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 56px;
    height: 56px;
    overflow: hidden;
    padding: 8px;
    border-radius: 12px;
    background: #fff;
    box-shadow: 0 4px 12px rgba(31, 67, 107, .12);
    transform: translate(-50%, -50%);
}
.home-business-logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}
.home-business-content {
    display: flex;
    flex: 1;
    flex-direction: column;
    padding: 12px 16px 16px;
}
.home-business-content h3 {
    margin: 0 0 8px;
    color: var(--secondary-color);
    font-size: 17px;
    font-weight: 700;
    line-height: 1.35;
}
.home-business-content p {
    margin: 0 0 5px;
    color: var(--text-light);
    font-size: 13px;
    line-height: 1.4;
}
.home-business-content span {
    align-self: flex-start;
    margin-top: auto;
    padding-top: 10px;
    color: var(--primary-color);
    font-size: 13px;
    font-weight: 700;
}

.home-fengshui-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 18px;
}
.home-fengshui-card {
    display: flex;
    min-width: 0;
    overflow: hidden;
    flex-direction: column;
    border: 1px solid #dce6f1;
    border-radius: 6px;
    background: #fff;
    box-shadow: 0 6px 14px rgba(31, 67, 107, .06);
    transition: box-shadow .25s ease, transform .25s ease;
}
.home-fengshui-card:hover {
    text-decoration: none;
    transform: translateY(-4px);
    box-shadow: 0 10px 22px rgba(31, 67, 107, .12);
}
.home-fengshui-image {
    overflow: hidden;
    aspect-ratio: 16 / 8;
}
.home-fengshui-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .35s ease;
}
.home-fengshui-card:hover .home-fengshui-image img {
    transform: scale(1.04);
}
.home-fengshui-content {
    display: flex;
    flex: 1;
    flex-direction: column;
    padding: 14px 16px 18px;
}
.home-fengshui-content h3 {
    margin: 0 0 8px;
    color: var(--secondary-color);
    font-size: 17px;
    font-weight: 700;
    line-height: 1.35;
}
.home-fengshui-content p {
    overflow: hidden;
    margin: 0 0 14px;
    color: var(--text-light);
    display: -webkit-box;
    font-size: 13px;
    line-height: 1.45;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
}
.home-fengshui-content span {
    margin-top: auto;
    color: var(--primary-color);
    font-size: 13px;
    font-weight: 700;
}

.home-hero-section {
    padding: 54px 0;
    background: var(--body-bg);
}
.home-hero {
    position: relative;
    min-height: 385px;
    overflow: hidden;
    border-radius: 6px;
    background: var(--primary-color);
    display: flex;
    align-items: center;
}
.home-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 1;
    background: linear-gradient(90deg, rgba(0, 112, 213, .98) 0%, rgba(0, 132, 225, .88) 43%, rgba(64, 161, 225, .64) 100%);
}
.home-hero-bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.home-hero-content {
    position: relative;
    z-index: 2;
    width: min(620px, 64%);
    padding: 48px 56px;
    color: #fff;
}
.home-hero-content h1 {
    max-width: 600px;
    margin: 0 0 14px;
    color: #fff;
    font-size: clamp(29px, 2.35vw, 40px);
    font-weight: 800;
    line-height: 1.3;
    letter-spacing: -1.4px;
}
.home-hero-content p {
    max-width: 560px;
    margin: 0;
    color: rgba(255, 255, 255, .94);
    font-size: 15px;
    line-height: 1.5;
}
.home-hero-actions,
.home-hero-trust {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}
.home-hero-actions {
    margin-top: 24px;
}
.home-hero-button {
    padding: 10px 18px;
    border-radius: 999px;
    background: #fff;
    color: #0874ce;
    font-size: 13px;
    font-weight: 700;
    transition: transform .2s ease, box-shadow .2s ease;
}
.home-hero-button:hover {
    color: #0874ce;
    text-decoration: none;
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(0, 74, 151, .2);
}
.home-hero-trust {
    margin-top: 20px;
}
.home-hero-trust span {
    padding: 7px 13px;
    border: 1px solid rgba(255, 255, 255, .28);
    border-radius: 999px;
    background: rgba(255, 255, 255, .12);
    color: #fff;
    font-size: 11px;
    font-weight: 600;
}
.home-hero-trust i {
    margin-right: 3px;
    font-size: 9px;
}
.home-hero-preview {
    position: absolute;
    top: 102px;
    right: 7%;
    z-index: 2;
    width: 205px;
    height: 142px;
    overflow: hidden;
    border-radius: 0 0 15px 15px;
    opacity: .58;
}
.home-hero-preview::before {
    content: "";
    position: absolute;
    top: -27px;
    left: 50%;
    width: 66px;
    height: 66px;
    transform: translateX(-50%);
    background: rgba(255, 255, 255, .28);
}
.home-hero-preview img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.home-quick-search-section {
    padding: 0 0 54px;
    background: var(--body-bg);
}
.home-quick-search {
    padding: 20px 18px 21px;
    border-radius: 6px;
    background: #fff;
    box-shadow: 0 10px 24px rgba(31, 67, 107, .08);
}
.home-quick-search h2 {
    margin: 0 0 14px;
    color: #173d68;
    font-size: 18px;
    font-weight: 700;
}
.home-quick-search-tabs {
    display: flex;
    gap: 8px;
    margin-bottom: 15px;
}
.home-quick-search-tabs button {
    min-width: 64px;
    padding: 9px 16px;
    border: 0;
    border-radius: 999px;
    background: #edf5ff;
    color: #0874ce;
    cursor: pointer;
    font-size: 13px;
    font-weight: 700;
}
.home-quick-search-tabs button.active {
    background: var(--primary-color);
    box-shadow: 0 6px 12px rgba(0, 116, 213, .2);
    color: #fff;
}
.home-quick-search-fields {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr)) 172px;
    gap: 12px;
}
.home-quick-search-fields select,
.home-quick-search-submit {
    width: 100%;
    min-height: 39px;
    border-radius: 8px;
    font-size: 13px;
}
.home-quick-search-fields select {
    padding: 0 16px;
    border: 1px solid #d8e3ef;
    background: #fff;
    color: #617188;
}
.home-quick-search-fields select:disabled {
    cursor: default;
    opacity: 1;
}
.home-quick-search-submit {
    padding: 9px 18px;
}

@media (max-width: 768px) {
    .explore-links-grid {
        grid-template-columns: 1fr;
        gap: 10px;
    }
    .focus-region-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 16px;
    }
    .home-blog-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 16px;
    }
    .home-project-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 16px;
    }
    .home-fengshui-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 16px;
    }
}

@media (max-width: 767px) {
    .focus-region-grid {
        grid-template-columns: 1fr;
    }
    .home-blog-grid {
        grid-template-columns: 1fr;
    }
    .home-project-grid {
        grid-template-columns: 1fr;
    }
    .home-fengshui-grid {
        grid-template-columns: 1fr;
    }
    .home-hero-section {
        padding: 20px 0;
    }
    .home-hero {
        min-height: 440px;
        align-items: flex-end;
    }
    .home-hero::before {
        background: linear-gradient(180deg, rgba(0, 112, 213, .54) 0%, rgba(0, 122, 215, .96) 49%, rgba(0, 112, 213, 1) 100%);
    }
    .home-hero-content {
        width: 100%;
        padding: 36px 22px 28px;
    }
    .home-hero-content h1 {
        max-width: 390px;
        font-size: 32px;
    }
    .home-hero-content p {
        font-size: 14px;
    }
    .home-hero-actions {
        margin-top: 20px;
    }
    .home-hero-trust {
        gap: 7px;
        margin-top: 18px;
    }
    .home-hero-trust span {
        padding: 6px 9px;
        font-size: 10px;
    }
    .home-hero-preview {
        display: none;
    }
    .home-quick-search-section {
        padding: 0 0 20px;
    }
    .home-quick-search {
        padding: 18px 16px;
    }
    .home-quick-search-fields {
        grid-template-columns: 1fr;
        gap: 10px;
    }
}