@charset "UTF-8";

/* ==========================================================================
   Home Banner
   ========================================================================== */
.home-banner {
    width: 100%;
    position: relative;
}

.banner-slider {
    position: relative;
    height: 680px;
    overflow: hidden;
}

.banner-slide {
    height: 100%;
    width: 100%;
    background-size: cover;
    background-position: center;
    position: absolute;
    top: 0;
    left: 0;
    display: flex;
    align-items: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.8s ease-in-out, visibility 0.8s;
    z-index: 1;
}

.banner-slide.active {
    opacity: 1;
    visibility: visible;
    z-index: 2;
}

.banner-slide::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgba(16, 42, 74, 0.92) 0%, rgba(16, 42, 74, 0.5) 55%, rgba(0,0,0,0.1) 100%);
    z-index: 0;
}

.banner-content {
    position: relative;
    z-index: 10;
    color: var(--white);
    max-width: 700px;
    margin-top: -80px;
    opacity: 0;
}

.banner-slide.active .banner-content {
    animation: fadeInUp 0.8s ease forwards;
    animation-delay: 0.3s;
}

/* 轮播切换箭头 */
.banner-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    width: 60px;
    height: 60px;
    background-color: rgba(255, 255, 255, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    cursor: pointer;
    transition: all 0.3s ease;
    backdrop-filter: blur(4px);
}

.banner-arrow:hover {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    transform: translateY(-50%) scale(1.1);
}

.prev-arrow {
    left: 40px;
}

.next-arrow {
    right: 40px;
}

.banner-content .banner-title {
    font-size: clamp(32px, 5vw, 41px);
    font-weight: 700;
    line-height: 1.25;
    margin-bottom: 20px;
}

.banner-content p {
    font-size: 18px;
    margin-bottom: 35px;
    opacity: 0.85;
    line-height: 1.8;
}

.banner-actions {
    display: flex;
    gap: 15px;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ==========================================================================
   About Section
   ========================================================================== */
.about-section {
    background-color: var(--white);
}

.about-layout {
    gap: 50px;
}

.about-text {
    flex: 1;
    max-width: 580px;
}

.about-desc p {
    color: var(--text-gray);
    line-height: 1.8;
    margin-bottom: 15px;
}

.about-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    margin-top: 30px;
}

.about-features li {
    position: relative;
    padding: 15px 15px 15px 45px;
    background: var(--bg-light);
    border-radius: 6px;
    margin-bottom: 0;
    border-left: 3px solid var(--primary-color);
    color: var(--text-dark);
    font-weight: 500;
    transition: var(--transition);
}

.about-features li:hover {
    background: var(--white);
    box-shadow: var(--shadow-sm);
    transform: translateY(-2px);
}

.about-features li::before {
    content: '✓';
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    width: 20px;
    height: 20px;
    background: var(--primary-color);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: bold;
}

.about-img-group {
    flex: 1;
    position: relative;
    padding: 25px 25px 35px 25px; /* Leave space for decorations */
    z-index: 1;
}

.img-main {
    position: relative;
    z-index: 2;
}

/* 现代装饰：右下方浮动色块 */
.img-main::after {
    content: '';
    position: absolute;
    bottom: -25px;
    right: -25px;
    width: 70%;
    height: 70%;
    background-color: var(--primary-light);
    border-radius: 8px;
    z-index: -1;
    transition: transform 0.5s ease;
}

/* 现代装饰：左上方镂空线框 */
.img-main::before {
    content: '';
    position: absolute;
    top: -25px;
    left: -25px;
    width: 60%;
    height: 60%;
    border: 3px solid var(--secondary-color);
    border-radius: 8px;
    z-index: -2;
    transition: transform 0.5s ease;
}

.img-main img {
    width: 100%;
    display: block;
    border-radius: 8px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.12);
    position: relative;
    z-index: 10;
    transition: transform 0.5s ease;
}

.about-img-group:hover .img-main img {
    transform: translateY(-5px);
}

.about-img-group:hover .img-main::after {
    transform: translate(15px, 15px);
}

.about-img-group:hover .img-main::before {
    transform: translate(-15px, -15px);
}

/* Clean up old classes unused in html */
.img-sub, .bg-shape, .about-exp { display: none; }

/* ==========================================================================
   Stats Section
   ========================================================================== */
.stats-section {
    background-color: var(--bg-light);
    padding: 0;
    position: relative;
    z-index: 20;
}

.stats-grid {
    transform: translateY(-70px);
    margin-bottom: -70px;
    display: flex;
    background: var(--white);
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.1);
    border-radius: 6px;
    overflow: hidden;
}

.stat-item {
    flex: 1;
    text-align: center;
    padding: 45px 20px 40px;
    position: relative;
}

.stat-item::before {
    content: '';
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: 0;
    width: 1px;
    height: 50px;
    background-color: var(--border-color);
}

.stat-item:last-child::before {
    display: none;
}

/* 滚动喜报 */
.stat-news-ticker {
    flex: 2;
    display: flex;
    align-items: center;
    padding: 0 30px;
    
    overflow: hidden;
}

.ticker-header {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--primary-color);
    font-weight: 600;
    font-size: 18px;
    margin-right: 20px;
    flex-shrink: 0;
    padding-right: 20px;
    border-right: 1px solid var(--border-color);
}

.ticker-wrap {
    flex: 1;
    height: 120px;
    overflow: hidden;
    position: relative;
}

.ticker-list {
    list-style: none;
    margin: 0;
    padding: 0;
    animation: tickerUp 25s linear infinite;
}

.ticker-list:hover {
    animation-play-state: paused;
}

.ticker-list li {
    height: 40px;
    line-height: 40px;
    font-size: 15px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.ticker-list li a {
    color: var(--text-dark);
    text-decoration: none;
    display: block;
    width: 100%;
    overflow: hidden;
    text-overflow: ellipsis;
    transition: color 0.3s ease;
}

.ticker-list li a:hover {
    color: var(--primary-color);
}

@keyframes tickerUp {
    0% {
        transform: translateY(0);
    }
    100% {
        transform: translateY(-50%);
    }
}

.stat-num {
    font-size: 44px;
    font-weight: 700;
    color: var(--primary-color);
    line-height: 1;
    font-family: Arial, Helvetica, sans-serif;
    display: inline-block;
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.stat-item:hover .stat-num {
    transform: scale(1.15);
}

.stat-unit {
    font-size: 22px;
    font-weight: 500;
    color: var(--secondary-color);
    margin-left: 2px;
    display: inline-block;
}

.stat-desc {
    color: var(--text-gray);
    font-size: 15px;
    margin-top: 12px;
    letter-spacing: 1px;
    transition: transform 0.3s ease;
}

.stat-item:hover .stat-desc {
    transform: translateY(4px);
}

/* ==========================================================================
   Region Section
   ========================================================================== */
.region-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: clamp(20px, 3vw, 30px);
}

.region-card {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    transition: all 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
    min-height: 340px;
    cursor: pointer;
}

.region-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.18);
}

.region-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.region-img::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 70%;
    background: linear-gradient(to top, rgba(16,42,74,0.95) 0%, rgba(16,42,74,0.4) 60%, transparent 100%);
    z-index: 2;
    transition: all 0.5s ease;
}

.region-card:hover .region-img::after {
    height: 85%;
    background: linear-gradient(to top, rgba(16,42,74,0.98) 0%, rgba(16,42,74,0.6) 50%, transparent 100%);
}

.region-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.region-card:hover .region-img img {
    transform: scale(1.12);
}

.region-tag {
    position: absolute;
    top: 15px;
    right: 15px;
    background-color: var(--primary-color);
    color: var(--white);
    padding: 6px 16px;
    font-size: 12px;
    border-radius: 20px;
    font-weight: 600;
    z-index: 4;
    box-shadow: 0 4px 10px rgba(0,0,0,0.2);
}

.region-info {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 30px 25px;
    z-index: 3;
    color: var(--white);
    transform: translateY(20px);
    transition: transform 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.region-card:hover .region-info {
    transform: translateY(0);
}

.region-info h3 {
    font-size: 26px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 12px;
    text-shadow: 0 2px 4px rgba(0,0,0,0.3);
}

.region-info p {
    color: rgba(255,255,255,0.85);
    margin-bottom: 0;
    font-size: 14px;
    line-height: 1.6;
    opacity: 0.6;
    transition: opacity 0.5s ease;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.region-card:hover .region-info p {
    opacity: 1;
}

/* ==========================================================================
   Advantage Section
   ========================================================================== */
.advantage-section {
    background: linear-gradient(135deg, #102A4A 0%, #1B4F8F 100%);
}

.advantage-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: clamp(20px, 3vw, 30px);

}

.adv-item {
    flex: 1;
    text-align: center;
    padding: 40px 25px 35px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 6px;
    transition: var(--transition);
}

.adv-item:hover {
    background: rgba(255, 255, 255, 0.12);
    transform: translateY(-6px);
}

.adv-icon {
    color: var(--secondary-color);
    margin-bottom: 22px;
}

.adv-title {
    font-size: 19px;
    margin-bottom: 12px;
    font-weight: 600;
}

.adv-desc {
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
    line-height: 1.8;
}

/* ==========================================================================
   Process Section
   ========================================================================== */
.process-section {
    background-color: var(--white);
}

.process-steps {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;

    position: relative;
}

.step-item {
    text-align: center;
    flex: 1;
    position: relative;
    z-index: 2;
}

.step-icon-wrap {
    width: 100px;
    height: 100px;
    margin: 0 auto 20px;
    position: relative;
}

.step-icon {
    width: 100%;
    height: 100%;
    background-color: var(--primary-light);
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    transition: var(--transition);
}

.step-item:hover .step-icon {
    background-color: var(--primary-color);
    color: var(--white);
    transform: scale(1.05);
}

.step-number {
    position: absolute;
    top: 0;
    right: 0;
    width: 30px;
    height: 30px;
    background-color: var(--secondary-color);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 14px;
}

.step-title {
    font-size: 18px;
    color: var(--text-dark);
    font-weight: 600;
    margin-bottom: 10px;
    transition: var(--transition);
}

.step-item:hover .step-title {
    color: var(--primary-color);
}

.step-desc {
    color: var(--text-gray);
    font-size: 14px;
    padding: 0 15px;
    transition: var(--transition);
}

.step-item:hover .step-desc {
    transform: translateY(-2px);
    color: var(--text-body);
}

.step-connector {
    flex: 1;
    min-width: 20px;
    max-width: 80px;
    height: 2px;
    background-color: var(--border-color);
    margin-top: 50px;
    position: relative;
}

.step-connector::after {
    content: '';
    position: absolute;
    right: 0;
    top: -4px;
    border-top: 5px solid transparent;
    border-bottom: 5px solid transparent;
    border-left: 8px solid var(--border-color);
}

/* ==========================================================================
   Cases Section
   ========================================================================== */
.cases-section {
    background-color: var(--bg-light);
}

.case-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: clamp(15px, 2vw, 25px);
}

.case-item {
    flex: 0 0 calc(25% - 15px);
    background: var(--white);
    border-radius: 6px;
    overflow: hidden;
    transition: var(--transition);
    display: block;
    box-shadow: var(--shadow-sm);
}

.case-item:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
}

.case-img {
    height: 170px;
    overflow: hidden;
    position: relative;
}

.case-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.case-item:hover .case-img img {
    transform: scale(1.05);
}

.case-info {
    padding: 18px 20px;
}

.case-meta {
    font-size: 13px;
    color: var(--secondary-color);
    margin-bottom: 6px;
    font-weight: 500;
}

.case-info h3 {
    font-size: 16px;
    color: var(--text-dark);
    font-weight: 500;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* ==========================================================================
   News Section
   ========================================================================== */
.news-section {
    background-color: var(--white);
}

.news-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    width: 100%;
    box-sizing: border-box;
}

.news-list-item {
    display: flex;
    align-items: center;
    padding: 22px;
    background: var(--bg-light);
    border-radius: 6px;
    transition: var(--transition);
    text-decoration: none;
    min-width: 0;
    max-width: 100%;
    overflow: hidden;
}

.news-list-item:hover {
    box-shadow: var(--shadow-md);
    background: var(--white);
    transform: translateY(-5px);
}

.news-list-date {
    flex-shrink: 0;
    width: 72px;
    height: 72px;
    background: var(--primary-color);
    color: var(--white);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border-radius: 6px;
    margin-right: 20px;
    transition: var(--transition);
}

.news-list-item:hover .news-list-date {
    background: var(--secondary-color);
}

.news-list-date .day {
    font-size: 26px;
    font-weight: 700;
    line-height: 1;
}

.news-list-date .year-month {
    font-size: 11px;
    margin-top: 4px;
    opacity: 0.8;
}

.news-list-info {
    flex: 1;
    min-width: 0;
    width: 100%;
    overflow: hidden;
}

.news-list-info h4 {
    font-size: 16px;
    margin-bottom: 8px;
    color: var(--text-dark);
    font-weight: 500;
    line-height: 1.4;
    transition: var(--transition);
    max-width: 100%;
    display: block;
}

.news-list-item:hover .news-list-info h4 {
    color: var(--primary-color);
}

.news-list-info p {
    color: var(--text-gray);
    font-size: 14px;
    margin: 0;
    line-height: 1.6;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    word-break: break-word;
}
/* ==========================================================================
   CTA Section
   ========================================================================== */
.cta-section {
    background: linear-gradient(135deg, var(--primary-color) 0%, #174a8c 100%);
    padding: 70px 0;
    color: var(--white);

}

.cta-section .flex-between {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.cta-text h2 {
    font-size: 30px;
    margin-bottom: 10px;
    font-weight: 600;
}

.cta-text p {
    font-size: 16px;
    opacity: 0.75;
}

.cta-action {
    display: flex;
    align-items: center;
    gap: 20px;
}

.cta-hotline-box {
    display: flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50px;
    padding: 10px 30px 10px 15px;
    backdrop-filter: blur(5px);
    transition: var(--transition);
}

.cta-hotline-box:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}

.hotline-icon {
    width: 46px;
    height: 46px;
    background: var(--secondary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    color: var(--white);
    box-shadow: 0 4px 10px rgba(212, 168, 75, 0.4);
}

.hotline-text {
    display: flex;
    flex-direction: column;
}

.hotline-label {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 3px;
}

.hotline-number {
    font-size: 24px;
    font-weight: 700;
    color: var(--white);
    line-height: 1;
    font-family: Arial, Helvetica, sans-serif;
}
/* ==========================================================================
   Background Decorations
   ========================================================================== */
.about-section,
.region-section,
.process-section,
.cases-section,
.news-section,
.advantage-section {
    position: relative;
    overflow: hidden;
}

.about-section::before,
.region-section::before,
.process-section::before,
.cases-section::before,
.news-section::before,
.advantage-section::before,
.about-section::after,
.region-section::after,
.process-section::after,
.cases-section::after,
.news-section::after,
.advantage-section::after {
    content: '';
    position: absolute;
    z-index: 0;
    pointer-events: none;
}

/* 蓝色 - 细线圆 */
.about-section::before,
.region-section::before,
.cases-section::before {
    display: block;
    width: 220px;
    height: 220px;
    border: 45px solid rgba(27, 79, 143, 0.04);
    border-radius: 50%;
    top: -50px;
    right: 5%;
    left: auto;
    animation: floatShape1 5s infinite linear;
}

.region-section::before {
    top: auto;
    bottom: -50px;
    right: auto;
    left: 5%;
}

/* 辅助金 - 实心带有圆角的方块 */
.about-section::after,
.cases-section::after {
    display: block;
    width: 140px;
    height: 140px;
    background-color: rgba(212, 168, 75, 0.05);
    border-radius: 30px;
    bottom: -40px;
    right: -20px;
    left: auto;
    animation: floatShape2 5s infinite linear;
}

/* 白色背景区块的图形 - 粗虚线圆 */
.process-section::before,
.news-section::before {
    display: block;
    width: 180px;
    height: 180px;
    border: 25px dashed rgba(27, 79, 143, 0.05);
    border-radius: 50%;
    bottom: 5%;
    right: 15%;
    left: auto;
    animation: floatShape3 22s infinite linear;
}

/* 辅助金 - 实心小圆 */
.process-section::after,
.news-section::after {
    display: block;
    width: 90px;
    height: 90px;
    background-color: rgba(212, 168, 75, 0.06);
    border-radius: 50%;
    top: 15%;
    right: 2%;
    left: auto;
    animation: floatShape4 18s infinite ease-in-out alternate;
}

/* 单独调整服务流程区图形位置，避免与文字重叠 */
.process-section::before {
    bottom: auto;
    top: -60px;
    right: auto;
    left: -40px;
}

.process-section::after {
    top: auto;
    bottom: 0;
    left: auto;
    right: -20px;
}

/* 深色背景专属图形 - 公司优势区 */
.advantage-section::before {
    display: block;
    width: 200px;
    height: 200px;
    border: 25px dashed rgba(255, 255, 255, 0.04);
    border-radius: 50%;
    top: -40px;
    left: -40px;
    right: auto;
    animation: floatShape3 25s infinite linear;
}

.advantage-section::after {
    display: block;
    width: 120px;
    height: 120px;
    background-color: rgba(212, 168, 75, 0.05);
    border-radius: 20px;
    bottom: -20px;
    right: 5%;
    left: auto;
    animation: floatShape2 22s infinite linear;
}

@keyframes floatShape1 {
    0% { transform: translate(0, 0) rotate(0deg); }
    33% { transform: translate(20px, -20px) rotate(120deg); }
    66% { transform: translate(-10px, 10px) rotate(240deg); }
    100% { transform: translate(0, 0) rotate(360deg); }
}

@keyframes floatShape2 {
    0% { transform: translate(0, 0) rotate(0deg); }
    50% { transform: translate(-25px, -15px) rotate(180deg); }
    100% { transform: translate(0, 0) rotate(360deg); }
}

@keyframes floatShape3 {
    0% { transform: translate(0, 0) rotate(0deg); }
    50% { transform: translate(15px, -15px) rotate(180deg); }
    100% { transform: translate(0, 0) rotate(360deg); }
}

@keyframes floatShape4 {
    0% { transform: translate(0, 0) scale(1); }
    50% { transform: translate(15px, 15px) scale(1.1); }
    100% { transform: translate(0, 0) scale(1); }
}

/* 确保内容在背景动画之上 */
.region-section .container,
.process-section .container,
.cases-section .container,
.news-section .container {
    position: relative;
    z-index: 10;
}


/* ==========================================================================
   Responsive
   ========================================================================== */
@media (max-width: 1200px) {
    .case-item {
        flex: 0 0 calc(33.333% - 14px);
    }
}

@media (max-width: 992px) {
    .banner-slider {
        height: 500px;
    }

    .banner-content .banner-title {
        font-size: 36px;
    }

    .stats-grid {
        flex-wrap: wrap;
    }

    .stat-item {
        flex: 0 0 50%;
    }

    .stat-item:nth-child(2)::before {
        display: none;
    }
    
    .stat-news-ticker {
        flex: 0 0 100%;
        padding: 20px;
        border-top: 1px solid var(--border-color);
        background-color: transparent;
    }

    .about-layout {
        flex-direction: column;
    }
    .about-text {
        max-width: 100%;
    }

    .stat-item:nth-child(1),
    .stat-item:nth-child(2) {
        /* No border bottom needed anymore, ticker has top border */
    }

    .region-grid {
        flex-wrap: wrap;
    }

    .region-card {
        flex: 0 0 calc(50% - 13px);
    }

    .advantage-grid {
        flex-wrap: wrap;
    }

    .adv-item {
        flex: 0 0 calc(50% - 13px);
    }

    .case-item {
        flex: 0 0 calc(50% - 10px);
    }

    .news-list { grid-template-columns: 1fr; }
    
    .news-item {
        padding: 20px;
    }
    
    .news-date-box {
        margin-bottom: 15px;
    }
    
    .news-date-box .day {
        font-size: 28px;
    }
    
    .news-text-box h3 {
        font-size: 18px;
        padding-right: 0;
    }
    
    .news-arrow {
        display: none;
    }

    .cta-section .flex-between {
        flex-direction: column;
        text-align: center;
        gap: 30px;
    }
}

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

    .section-title {
        font-size: 26px;
    }

    .banner-slider {
        height: 400px;
    }
    
    .banner-arrow {
        width: 40px;
        height: 40px;
    }
    
    .prev-arrow {
        left: 10px;
    }
    
    .next-arrow {
        right: 10px;
    }

    .banner-content {
        margin-top: 0;
    }

    .banner-content .banner-title {
        font-size: 28px;
    }

    .banner-content p {
        font-size: 15px;
    }

    .banner-actions {
        flex-direction: row;
        justify-content: center;
        gap: 10px;
    }
    .banner-actions .btn {
        padding: 10px 20px;
        font-size: 15px;
    }

    .stat-item {
        flex: 0 0 50%;
    }

    .region-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px; /* smaller gap for mobile to fit better */
    }

    .region-card {
        min-height: 200px; /* reduce min-height so cards aren't too tall on mobile */
    }

    .region-info {
        padding: 15px 12px;
    }

    .region-info h3 {
        font-size: 18px; /* scale down font for smaller cards */
        margin-bottom: 6px;
    }

    .region-info p {
        font-size: 12px;
    }

    .advantage-grid {
        flex-direction: column;
    }

    .adv-item {
        flex: 1 1 100%;
    }

    .process-steps {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 30px 15px;
        align-items: flex-start;
    }

    .step-item .step-icon-wrap {
        width: 70px;
        height: 70px;
        margin: 0 auto 15px;
    }

    .step-item .step-title {
        font-size: 16px;
    }

    .step-item .step-desc {
        font-size: 12px;
        padding: 0 5px;
    }

    .step-connector {
        display: none;
    }

    .case-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }

    .case-info {
        padding: 12px 10px;
    }

    .case-info h3 {
        font-size: 14px;
    }

    .cta-text h2 {
        font-size: 24px;
    }
}























