/* 基础样式重置 */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    font-size: 16px;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'PingFang SC', 'Hiragino Sans GB', 'Microsoft YaHei', sans-serif;
    line-height: 1.6;
    color: #333;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    min-height: 100vh;
    width: 100%;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

.z14d78container {
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
    padding: 0 clamp(15px, 2vw, 20px);
}

/* 导航栏样式 */
.z14d78header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    transition: all 0.3s ease;
}

.z14d78nav {
    padding: 15px 0;
}

.z14d78nav .z14d78container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.z14d78logo-text {
    font-size: clamp(18px, 2.5vw, 24px);
    font-weight: 700;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    white-space: nowrap;
}

.z14d78nav-menu {
    display: flex;
    list-style: none;
    gap: clamp(15px, 2vw, 30px);
    flex-wrap: wrap;
}

.z14d78nav-link {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

.z14d78nav-link:hover {
    color: #667eea;
}

.z14d78nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    transition: width 0.3s ease;
}

.z14d78nav-link:hover::after {
    width: 100%;
}

.z14d78mobile-menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
}

.z14d78mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background: #333;
    border-radius: 3px;
    transition: all 0.3s ease;
}

/* 主横幅样式 */
.z14d78hero {
    position: relative;
    min-height: clamp(400px, 50vh, 600px);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding-top: clamp(70px, 10vh, 80px);
    padding-bottom: clamp(40px, 6vh, 60px);
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    width: 100%;
}

.z14d78hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.3);
    z-index: 1;
}

.z14d78hero-wrapper {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: clamp(20px, 3vw, 40px);
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 clamp(15px, 2vw, 20px);
}

.z14d78hero-content {
    flex: 1;
    text-align: left;
    color: #fff;
    max-width: 100%;
    min-width: 0;
}

.z14d78hero-image {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    max-width: 100%;
    min-width: 0;
}

.z14d78hero-image img {
    max-width: 100%;
    width: 100%;
    height: auto;
    object-fit: contain;
    animation: fadeInUp 1s ease 0.6s both;
    display: block;
}

.z14d78hero-title {
    font-size: clamp(24px, 5vw, 48px);
    font-weight: 700;
    margin-bottom: clamp(15px, 2vh, 20px);
    text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.3);
    animation: fadeInUp 1s ease;
    line-height: 1.2;
    word-wrap: break-word;
}

.z14d78hero-subtitle {
    font-size: clamp(14px, 2.5vw, 20px);
    margin-bottom: clamp(25px, 4vh, 40px);
    opacity: 0.95;
    animation: fadeInUp 1s ease 0.2s both;
    line-height: 1.6;
    word-wrap: break-word;
}

.z14d78hero-features {
    display: flex;
    justify-content: flex-start;
    gap: clamp(15px, 2vw, 30px);
    flex-wrap: wrap;
    animation: fadeInUp 1s ease 0.4s both;
}

.z14d78feature-item {
    display: flex;
    align-items: center;
    gap: clamp(8px, 1vw, 10px);
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    padding: clamp(12px, 1.5vw, 15px) clamp(20px, 2.5vw, 25px);
    border-radius: 50px;
    font-size: clamp(14px, 1.8vw, 16px);
    font-weight: 500;
    transition: transform 0.3s ease;
    white-space: nowrap;
}

.z14d78feature-item:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.3);
}

.z14d78feature-icon {
    font-size: 24px;
}

/* 装饰形状 */
.z14d78hero-shapes {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
    overflow: hidden;
}

.z14d78shape {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    animation: float 6s ease-in-out infinite;
}

.z14d78shape-1 {
    width: 300px;
    height: 300px;
    top: 10%;
    left: 10%;
    animation-delay: 0s;
}

.z14d78shape-2 {
    width: 200px;
    height: 200px;
    top: 60%;
    right: 15%;
    animation-delay: 2s;
}

.z14d78shape-3 {
    width: 150px;
    height: 150px;
    bottom: 20%;
    left: 20%;
    animation-delay: 4s;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
    }
    50% {
        transform: translateY(-30px) rotate(180deg);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* 通用区块样式 */
.z14d78section {
    padding: clamp(50px, 8vh, 80px) 0;
    position: relative;
    width: 100%;
}

.z14d78section-service {
    background: #fff;
}

.z14d78section-advantage {
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
}

.z14d78section-process {
    background: #fff;
}

.z14d78section-stats {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #fff;
    padding: 60px 0;
}

.z14d78section-price {
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
}

.z14d78section-testimonial {
    background: #fff;
}

.z14d78section-faq {
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
}

.z14d78section-safety {
    background: #fff;
}

.z14d78section-contact {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #fff;
}

.z14d78section-header {
    text-align: center;
    margin-bottom: 60px;
}

.z14d78section-title {
    font-size: clamp(24px, 4vw, 36px);
    font-weight: 700;
    margin-bottom: clamp(10px, 1.5vh, 15px);
    color: #333;
    line-height: 1.3;
    word-wrap: break-word;
}

.z14d78section-contact .z14d78section-title {
    color: #fff;
}

.z14d78section-subtitle {
    font-size: clamp(14px, 2.2vw, 18px);
    color: #666;
    line-height: 1.6;
    word-wrap: break-word;
}

.z14d78section-contact .z14d78section-subtitle {
    color: rgba(255, 255, 255, 0.9);
}

/* 服务卡片样式 */
.z14d78service-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: clamp(20px, 3vw, 30px);
    width: 100%;
}

.z14d78service-card {
    background: #fff;
    padding: clamp(30px, 4vw, 40px) clamp(20px, 3vw, 30px);
    border-radius: clamp(15px, 2vw, 20px);
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: 2px solid transparent;
    width: 100%;
    min-width: 0;
}

.z14d78service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(102, 126, 234, 0.2);
    border-color: #667eea;
}

.z14d78service-icon {
    font-size: clamp(36px, 5vw, 48px);
    margin-bottom: clamp(15px, 2vh, 20px);
    display: block;
}

.z14d78service-title {
    font-size: clamp(18px, 2.5vw, 22px);
    font-weight: 600;
    margin-bottom: clamp(10px, 1.5vh, 15px);
    color: #333;
    line-height: 1.4;
    word-wrap: break-word;
}

.z14d78service-desc {
    color: #666;
    line-height: 1.8;
}

/* 统计数据样式 */
.z14d78stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(200px, 100%), 1fr));
    gap: clamp(25px, 4vw, 40px);
    text-align: center;
    width: 100%;
}

.z14d78stat-item {
    padding: 30px 20px;
}

.z14d78stat-number {
    font-size: clamp(36px, 5vw, 48px);
    font-weight: 700;
    color: #fff;
    margin-bottom: clamp(8px, 1vh, 10px);
    text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.2);
}

.z14d78stat-label {
    font-size: clamp(14px, 2.2vw, 18px);
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
}

/* 价格说明样式 */
.z14d78price-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(300px, 100%), 1fr));
    gap: clamp(20px, 3vw, 30px);
    width: 100%;
}

.z14d78price-card {
    background: #fff;
    border-radius: clamp(15px, 2vw, 20px);
    padding: clamp(30px, 4vw, 40px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    width: 100%;
    min-width: 0;
}

.z14d78price-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(102, 126, 234, 0.2);
}

.z14d78price-header {
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 2px solid #667eea;
}

.z14d78price-title {
    font-size: 24px;
    font-weight: 600;
    color: #333;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.z14d78price-list {
    list-style: none;
}

.z14d78price-list li {
    padding: 15px 0;
    padding-left: 30px;
    position: relative;
    color: #666;
    line-height: 1.8;
    border-bottom: 1px solid #f0f0f0;
}

.z14d78price-list li:last-child {
    border-bottom: none;
}

.z14d78price-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #667eea;
    font-weight: 700;
    font-size: 18px;
}

/* 客户评价样式 */
.z14d78testimonial-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(280px, 100%), 1fr));
    gap: clamp(20px, 3vw, 30px);
    width: 100%;
}

.z14d78testimonial-card {
    background: #fff;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border-left: 4px solid #667eea;
}

.z14d78testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(102, 126, 234, 0.2);
}

.z14d78testimonial-rating {
    color: #ffc107;
    font-size: 20px;
    margin-bottom: 15px;
}

.z14d78testimonial-text {
    color: #666;
    line-height: 1.8;
    margin-bottom: 20px;
    font-style: italic;
}

.z14d78testimonial-author {
    display: flex;
    align-items: center;
    gap: 15px;
}

.z14d78author-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 20px;
}

.z14d78author-name {
    font-weight: 600;
    color: #333;
    margin-bottom: 5px;
}

.z14d78author-date {
    font-size: 14px;
    color: #999;
}

/* 常见问题样式 */
.z14d78faq-content {
    max-width: 900px;
    margin: 0 auto;
}

.z14d78faq-item {
    background: #fff;
    border-radius: 15px;
    margin-bottom: 20px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    transition: all 0.3s ease;
}

.z14d78faq-item:hover {
    box-shadow: 0 10px 25px rgba(102, 126, 234, 0.15);
}

.z14d78faq-question {
    padding: 25px 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.z14d78faq-question:hover {
    background: #f8f9fa;
}

.z14d78faq-question h3 {
    font-size: 18px;
    font-weight: 600;
    color: #333;
    margin: 0;
    flex: 1;
}

.z14d78faq-icon {
    font-size: 24px;
    font-weight: 700;
    color: #667eea;
    transition: transform 0.3s ease;
}

.z14d78faq-item.z14d78active .z14d78faq-icon {
    transform: rotate(45deg);
}

.z14d78faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.z14d78faq-item.z14d78active .z14d78faq-answer {
    max-height: 500px;
}

.z14d78faq-answer p {
    padding: 0 30px 25px;
    color: #666;
    line-height: 1.8;
    margin: 0;
}

/* 安全说明样式 */
.z14d78safety-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(250px, 100%), 1fr));
    gap: clamp(20px, 3vw, 30px);
    width: 100%;
}

.z14d78safety-item {
    background: #fff;
    padding: 40px 30px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border-top: 4px solid #667eea;
}

.z14d78safety-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(102, 126, 234, 0.2);
}

.z14d78safety-icon {
    font-size: 48px;
    margin-bottom: 20px;
    display: block;
}

.z14d78safety-title {
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 15px;
    color: #333;
}

.z14d78safety-desc {
    color: #666;
    line-height: 1.8;
}

/* 优势样式 */
.z14d78advantage-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(250px, 100%), 1fr));
    gap: clamp(25px, 4vw, 40px);
    width: 100%;
}

.z14d78advantage-item {
    text-align: center;
    padding: clamp(25px, 3vw, 30px);
    background: #fff;
    border-radius: clamp(12px, 1.5vw, 15px);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    width: 100%;
    min-width: 0;
}

.z14d78advantage-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(102, 126, 234, 0.15);
}

.z14d78advantage-number {
    font-size: clamp(36px, 5vw, 48px);
    font-weight: 700;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: clamp(10px, 1.5vh, 15px);
}

.z14d78advantage-title {
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 15px;
    color: #333;
}

.z14d78advantage-desc {
    color: #666;
    line-height: 1.8;
}

/* 流程样式 */
.z14d78process-steps {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.z14d78process-step {
    flex: 1;
    min-width: 200px;
    max-width: 250px;
    text-align: center;
    padding: 30px 20px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 15px;
    color: #fff;
    box-shadow: 0 10px 30px rgba(102, 126, 234, 0.3);
    transition: all 0.3s ease;
}

.z14d78process-step:hover {
    transform: translateY(-10px) scale(1.05);
    box-shadow: 0 20px 40px rgba(102, 126, 234, 0.4);
}

.z14d78step-number {
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    font-weight: 700;
    margin: 0 auto 20px;
    border: 3px solid rgba(255, 255, 255, 0.3);
}

.z14d78step-title {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 10px;
}

.z14d78step-desc {
    font-size: 14px;
    opacity: 0.9;
    line-height: 1.6;
}

.z14d78process-arrow {
    font-size: 32px;
    color: #667eea;
    font-weight: 700;
}

/* 联系方式样式 */
.z14d78contact-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(250px, 100%), 1fr));
    gap: clamp(20px, 3vw, 30px);
    width: 100%;
}

.z14d78contact-card {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    padding: clamp(30px, 4vw, 40px) clamp(20px, 3vw, 30px);
    border-radius: clamp(15px, 2vw, 20px);
    text-align: center;
    border: 2px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
    width: 100%;
    min-width: 0;
}

.z14d78contact-card:hover {
    background: rgba(255, 255, 255, 0.25);
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.z14d78contact-icon {
    font-size: 48px;
    margin-bottom: 20px;
    display: block;
}

.z14d78contact-title {
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 15px;
    color: #fff;
}

.z14d78contact-desc {
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.8;
}

/* 广告区域样式 */
.z14d78ad-section {
    width: 100%;
    padding: 20px 0;
    text-align: center;
    background: transparent;
}

.z14d78ad-top {
    padding-top: 30px;
    padding-bottom: 30px;
}

.z14d78ad-middle {
    padding-top: 40px;
    padding-bottom: 40px;
}

.z14d78ad-bottom {
    padding-top: 30px;
    padding-bottom: 30px;
}

.z14d78ad-section .z14d78container {
    display: flex;
    justify-content: center;
    align-items: center;
}

.z14d78ad-section script,
.z14d78ad-section iframe,
.z14d78ad-section div {
    max-width: 100%;
    margin: 0 auto;
}

/* 页脚样式 */
.z14d78footer {
    background: #2c3e50;
    color: #fff;
    padding: 30px 0;
    text-align: center;
}

.z14d78footer-text {
    font-size: 16px;
    margin-bottom: 10px;
    font-weight: 500;
}

.z14d78footer-copyright {
    font-size: 14px;
    opacity: 0.8;
    margin-top: 8px;
}

.z14d78footer-copyright a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: opacity 0.3s ease;
}

.z14d78footer-copyright a:hover {
    opacity: 1;
    color: #fff;
}

/* 响应式设计 */
@media (max-width: 1200px) {
    .z14d78hero-wrapper {
        max-width: 100%;
        padding: 0 clamp(15px, 3vw, 30px);
    }

    .z14d78hero-image {
        max-width: 100%;
    }
}

@media (max-width: 992px) {
    html {
        font-size: 15px;
    }

    .z14d78service-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: clamp(15px, 2.5vw, 25px);
    }

    .z14d78hero-wrapper {
        gap: clamp(20px, 3vw, 30px);
    }

    .z14d78hero-image {
        max-width: 100%;
    }
}

@media (max-width: 768px) {
    html {
        font-size: 14px;
    }

    .z14d78mobile-menu-toggle {
        display: flex;
    }

    .z14d78nav-menu {
        position: fixed;
        top: clamp(60px, 10vh, 70px);
        left: -100%;
        width: 100%;
        height: calc(100vh - clamp(60px, 10vh, 70px));
        background: rgba(255, 255, 255, 0.98);
        flex-direction: column;
        padding: clamp(30px, 5vh, 40px) clamp(15px, 3vw, 20px);
        transition: left 0.3s ease;
        box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
        overflow-y: auto;
    }

    .z14d78nav-menu.z14d78active {
        left: 0;
    }

    .z14d78nav-link {
        font-size: 18px;
        padding: 15px 0;
        display: block;
        border-bottom: 1px solid #eee;
        width: 100%;
    }

    .z14d78nav-link:hover::after {
        display: none;
    }

    .z14d78hero {
        min-height: auto;
        padding-top: clamp(70px, 12vh, 80px);
        padding-bottom: clamp(40px, 6vh, 50px);
    }

    .z14d78hero-wrapper {
        flex-direction: column;
        text-align: center;
        gap: clamp(20px, 4vh, 30px);
    }

    .z14d78hero-content {
        text-align: center;
        max-width: 100%;
        width: 100%;
    }

    .z14d78hero-content {
        order: -1;
    }

    .z14d78hero-image {
        max-width: 100%;
        width: 100%;
        margin-top: clamp(15px, 3vh, 20px);
        order: 1;
    }

    .z14d78hero-image img {
        max-width: clamp(60%, 80%, 80%);
        width: auto;
        height: auto;
    }

    .z14d78hero-title {
        font-size: 32px;
    }

    .z14d78hero-subtitle {
        font-size: 16px;
    }

    .z14d78hero-features {
        flex-direction: column;
        gap: 15px;
    }

    .z14d78feature-item {
        width: 100%;
        justify-content: center;
    }

    .z14d78section-title {
        font-size: 28px;
    }

    .z14d78section {
        padding: clamp(40px, 6vh, 50px) 0;
    }

    .z14d78process-steps {
        flex-direction: column;
    }

    .z14d78process-arrow {
        transform: rotate(90deg);
        margin: 10px 0;
    }

    .z14d78process-step {
        max-width: 100%;
    }

    .z14d78service-grid,
    .z14d78advantage-content,
    .z14d78contact-content,
    .z14d78price-content,
    .z14d78testimonial-grid,
    .z14d78safety-grid {
        grid-template-columns: 1fr;
    }

    .z14d78stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .z14d78price-card {
        padding: 30px 20px;
    }

    .z14d78hero-features {
        justify-content: center;
    }

    .z14d78feature-item {
        font-size: 14px;
        padding: 12px 20px;
    }

    .z14d78shape-1,
    .z14d78shape-2,
    .z14d78shape-3 {
        display: none;
    }
}

@media (max-width: 480px) {
    html {
        font-size: 13px;
    }

    .z14d78hero {
        min-height: auto;
        padding-top: clamp(60px, 10vh, 70px);
        padding-bottom: clamp(30px, 5vh, 40px);
    }

    .z14d78hero-wrapper {
        gap: clamp(15px, 3vh, 20px);
    }

    .z14d78hero-image img {
        max-width: clamp(60%, 70%, 80%);
    }

    .z14d78feature-item {
        font-size: clamp(12px, 2vw, 13px);
        padding: clamp(8px, 1.5vw, 10px) clamp(15px, 2.5vw, 18px);
    }

    .z14d78feature-icon {
        font-size: clamp(18px, 3vw, 20px);
    }

    .z14d78section-title {
        font-size: 24px;
    }

    .z14d78service-card,
    .z14d78advantage-item,
    .z14d78contact-card,
    .z14d78price-card,
    .z14d78testimonial-card,
    .z14d78safety-item {
        padding: 30px 20px;
    }

    .z14d78stat-number {
        font-size: 36px;
    }

    .z14d78stat-label {
        font-size: 14px;
    }

    .z14d78stats-grid {
        grid-template-columns: 1fr;
    }

    .z14d78price-content {
        grid-template-columns: 1fr;
    }

    .z14d78faq-question {
        padding: 20px;
    }

    .z14d78faq-question h3 {
        font-size: 16px;
    }

    .z14d78faq-answer p {
        padding: 0 20px 20px;
    }

    .z14d78container {
        padding: 0 15px;
    }

    .z14d78nav {
        padding: 12px 0;
    }

    .z14d78nav-menu {
        top: 60px;
        height: calc(100vh - 60px);
    }
}
