/* 基础设置 */
body {
    margin: 0;
    padding: 0;
    background: #fff;
    font-family: 'Microsoft YaHei', Arial, sans-serif;
    color: #222;
    line-height: 1.7;
}
.container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 24px;
    position: relative;
    z-index: 3;
}

/* 头部导航 */
.header {
    background: #fff;
    box-shadow: 0 2px 16px rgba(0,120,215,0.08);
    position: sticky;
    top: 0;
    z-index: 100;
    border-bottom: 3px solid transparent;
    border-image: linear-gradient(90deg, #0078D7 0%, #00C6FB 50%, #0078D7 100%);
    border-image-slice: 1;
}
.nav-flex {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 72px;
}
.logo img {
    height: 48px;
    filter: drop-shadow(0 2px 8px rgba(0,120,215,0.15));
    transition: transform 0.3s;
}
.logo:hover img {
    transform: scale(1.02);
}
.nav a {
    margin: 0 12px;
    color: #333;
    text-decoration: none;
    font-weight: 500;
    font-size: 1rem;
    transition: color 0.2s;
    position: relative;
    padding: 8px 4px;
    line-height: 1.6;
    display: inline-block;
    vertical-align: middle;
}
.nav a::after {
    content: '';
    display: block;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #0078D7 0%, #00C6FB 100%);
    transition: width 0.3s;
    position: absolute;
    left: 0; bottom: 0;
    border-radius: 2px;
}
.nav a:hover {
    color: #0078D7;
}
.nav a:hover::after {
    width: 100%;
}
.nav .consult-nav {
    background: linear-gradient(135deg, #0078D7 0%, #00C6FB 100%);
    color: #fff !important;
    padding: 8px 16px;
    border-radius: 20px;
    font-weight: 600;
    margin: 0 8px;
}
.nav .consult-nav::after {
    display: none;
}
.nav .consult-nav:hover {
    background: linear-gradient(135deg, #00C6FB 0%, #0078D7 100%);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(0,120,215,0.3);
}
.nav .nav-phone {
    background: linear-gradient(135deg, #ff6b6b 0%, #ee5a5a 100%);
    color: #fff !important;
    padding: 8px 16px;
    border-radius: 20px;
    font-weight: 600;
    font-size: 0.95rem;
    margin: 0 0 0 8px;
    text-decoration: none;
    transition: all 0.3s;
}
.nav .nav-phone::after {
    display: none;
}
.nav .nav-phone:hover {
    background: linear-gradient(135deg, #ee5a5a 0%, #ff6b6b 100%);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(238,90,90,0.3);
}
.nav-toggle {
    display: none;
    background: none;
    border: none;
    outline: none;
    cursor: pointer;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 40px;
    width: 44px;
    margin-left: 8px;
    z-index: 120;
}
.nav-toggle-bar {
    display: block;
    width: 28px;
    height: 4px;
    margin: 3px 0;
    background: #0078D7;
    border-radius: 2px;
    transition: all 0.3s;
}

/* Banner区 */
.banner {
    position: relative;
    min-height: 480px;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: linear-gradient(135deg, #0078D7 0%, #005a9e 50%, #003d6b 100%);
}
.banner-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 120, 215, 0.85) 0%, rgba(0, 90, 158, 0.8) 50%, rgba(0, 61, 107, 0.9) 100%);
    z-index: 2;
}
.banner-overlay::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 30%, rgba(107, 168, 229, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(0, 198, 251, 0.1) 0%, transparent 50%),
        linear-gradient(45deg, transparent 30%, rgba(255, 255, 255, 0.03) 50%, transparent 70%);
    z-index: 1;
}
.banner-content {
    position: relative;
    z-index: 3;
    display: flex;
    align-items: center;
    gap: 60px;
    min-height: 480px;
    padding: 60px 0;
}
.banner-text {
    flex: 1 1 50%;
    max-width: 600px;
}
.banner-image {
    flex: 1 1 40%;
    position: relative;
    text-align: center;
}
.banner-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, rgba(0, 198, 251, 0.2) 0%, rgba(107, 168, 229, 0.15) 100%);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(0, 198, 251, 0.3);
    border-radius: 25px;
    padding: 8px 16px;
    color: #fff;
    font-size: 0.9rem;
    font-weight: 500;
    margin-bottom: 20px;
    box-shadow: 0 4px 15px rgba(0, 198, 251, 0.2);
}
.banner-content h1 {
    font-size: 3.2rem;
    margin: 0 0 16px 0;
    color: #fff;
    font-weight: 800;
    letter-spacing: 1px;
    text-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
    line-height: 1.2;
}
.banner-subtitle {
    font-size: 1.4rem;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 600;
    margin: 0 0 20px 0;
    text-shadow: 0 1px 10px rgba(0, 0, 0, 0.2);
}
.banner-description {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.6;
    margin: 0 0 24px 0;
    text-shadow: 0 1px 8px rgba(0, 0, 0, 0.2);
}
.banner-features {
    display: flex;
    gap: 12px;
    margin-bottom: 32px;
    flex-wrap: wrap;
}
.feature-tag {
    background: linear-gradient(135deg, rgba(107, 168, 229, 0.25) 0%, rgba(0, 198, 251, 0.2) 100%);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(107, 168, 229, 0.4);
    border-radius: 20px;
    padding: 6px 14px;
    color: #fff;
    font-size: 0.9rem;
    font-weight: 500;
    box-shadow: 0 2px 10px rgba(107, 168, 229, 0.15);
    transition: all 0.3s ease;
}
.feature-tag:hover {
    background: linear-gradient(135deg, rgba(107, 168, 229, 0.35) 0%, rgba(0, 198, 251, 0.3) 100%);
    border-color: rgba(107, 168, 229, 0.6);
    transform: translateY(-2px);
}
.banner-actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}
.product-image {
    max-width: 100%;
    height: auto;
    border-radius: 20px;
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.product-image:hover {
    transform: scale(1.05) rotate(2deg);
}
.image-decoration {
    position: absolute;
    top: -20px;
    right: -20px;
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.2) 0%, rgba(255, 255, 255, 0.1) 100%);
    border-radius: 50%;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    z-index: -1;
}

/* 按钮样式 */
.consult-btn.primary {
    background: linear-gradient(135deg, #00C6FB 0%, #005CBF 100%);
    color: #fff;
    padding: 14px 28px;
    border-radius: 30px;
    font-weight: 700;
    font-size: 1.1rem;
    text-decoration: none;
    box-shadow: 0 4px 20px rgba(0, 198, 251, 0.4);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: none;
    position: relative;
    overflow: hidden;
}
.consult-btn.primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s;
}
.consult-btn.primary:hover::before {
    left: 100%;
}
.consult-btn.primary:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 8px 30px rgba(0, 198, 251, 0.6);
    background: linear-gradient(135deg, #005CBF 0%, #00C6FB 100%);
}
.consult-btn.secondary {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.3);
    color: #fff;
    padding: 12px 26px;
    border-radius: 30px;
    font-weight: 600;
    font-size: 1.1rem;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.consult-btn.secondary:hover {
    background: rgba(255, 255, 255, 0.25);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.15);
}
.consult-btn, .phone-link, .nav .nav-phone {
    display: inline-block;
    background: linear-gradient(90deg, #0078D7 0%, #00C6FB 100%);
    color: #fff !important;
    font-weight: bold;
    border-radius: 24px;
    padding: 0.5em 1.6em;
    font-size: 1.08rem;
    box-shadow: 0 2px 8px rgba(107,168,229,0.13);
    text-decoration: none;
    margin: 1px !important;
    transition: background 0.2s, box-shadow 0.2s, transform 0.2s, color 0.2s;
    border: none;
    outline: none;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}
.consult-btn:hover, .phone-link:hover, .nav .nav-phone:hover {
    background: linear-gradient(90deg, #00C6FB 0%, #0078D7 100%);
    color: #fff !important;
    box-shadow: 0 4px 16px rgba(107,168,229,0.18);
    transform: translateY(-2px) scale(1.04);
    filter: brightness(1.08);
}
.consult-btn span {
    position: relative;
    z-index: 2;
}

/* 区块通用样式 */
.block {
    margin: 0 auto 56px auto;
    padding: 48px 0 36px 0;
    background: #fff;
    border-radius: 14px;
    box-shadow: 0 4px 24px 0 rgba(107,168,229,0.10);
    position: relative;
    max-width: 1100px;
    transition: box-shadow 0.2s;
}
.block:hover {
    box-shadow: 0 8px 32px 0 rgba(107,168,229,0.13);
}
.block::before {
    content: '';
    display: block;
    position: absolute;
    left: 36px;
    top: 0;
    width: 60px;
    height: 6px;
    border-radius: 6px;
    background: linear-gradient(90deg, #0078D7 0%, #00C6FB 100%);
    opacity: 0.7;
}

/* 弹性布局 */
.flex-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}
.flex-row.reverse {
    flex-direction: row-reverse;
}
.block-img {
    flex: 1 1 320px;
    min-width: 180px;
    max-width: 340px;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
}
.block-img img {
    max-width: 90%;
    border-radius: 10px;
    background: #fff;
    transition: transform 0.3s, box-shadow 0.3s;
}
.block-img img:hover {
    transform: scale(1.04) rotate(-2deg);
    box-shadow: 0 8px 24px rgba(107,168,229,0.16);
}
.block-content {
    flex: 2 1 480px;
    min-width: 220px;
    padding: 0 36px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
}
.block-content h2 {
    color: #6ba8e5;
    font-size: 1.5rem;
    font-weight: 800;
    margin-bottom: 18px;
    display: flex;
    align-items: center;
    gap: 12px;
    position: relative;
}
.block-content h2::before {
    content: '';
    display: inline-block;
    width: 8px;
    height: 24px;
    border-radius: 5px;
    background: #b3d8f6;
    margin-right: 10px;
}
.block-content ul, .block-content li {
    list-style: none;
    padding: 0;
    margin: 0;
}
.block-content ul {
    margin-bottom: 16px;
}
.block-content li {
    margin-bottom: 12px;
    padding-left: 0;
    position: relative;
}

/* 功能列表 */
.feature-list, .price-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px 20px;
    background: none;
    box-shadow: none;
    margin: 0 0 18px 0;
}
.feature-list li, .price-list li {
    font-size: 1.08rem;
    color: #333;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 1px 4px rgba(107,168,229,0.07);
    padding: 16px 18px;
    display: flex;
    align-items: center;
}
.feature-list li:hover, .price-list li:hover {
    box-shadow: 0 2px 8px rgba(107,168,229,0.13);
}

/* 图标样式 */
.icon-svg {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    min-width: 32px;
    min-height: 32px;
    max-width: 32px;
    max-height: 32px;
    margin-right: 10px;
    background: #e6f0fa;
    border-radius: 50%;
    box-shadow: 0 1px 4px rgba(107,168,229,0.08);
    flex-shrink: 0;
    border: 1px solid #f6fafd;
    transition: box-shadow 0.2s, border 0.2s;
}
.icon-svg svg {
    width: 18px;
    height: 18px;
    display: block;
}

/* 适用科室 */
.scene-list {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    margin: 16px 0 10px 0;
    background: none;
    justify-content: center;
}
.scene-item {
    flex: 1 1 140px;
    min-width: 90px;
    max-width: 180px;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 1px 4px rgba(107,168,229,0.08);
    text-align: center;
    padding: 14px 8px 10px 8px;
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: box-shadow 0.2s, transform 0.2s;
}
.scene-item:hover {
    box-shadow: 0 4px 12px rgba(107,168,229,0.13);
    transform: translateY(-2px) scale(1.02);
}
.scene-item p {
    margin: 0;
    font-size: 1.05rem;
    color: #6ba8e5;
    font-weight: 600;
}

/* 参数表格 */
.param-table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 16px;
}
.param-table th,
.param-table td {
    text-align: left;
    padding: 8px 12px;
}
.param-table th {
    color: #6ba8e5;
    font-weight: 600;
}

/* FAQ区域 */
.faq-list {
    margin: 24px 0;
}
.faq-item {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(107,168,229,0.08);
    margin-bottom: 16px;
    overflow: hidden;
    transition: box-shadow 0.3s, transform 0.2s;
    border: 1px solid #f0f6ff;
}
.faq-item:hover {
    box-shadow: 0 4px 16px rgba(107,168,229,0.12);
    transform: translateY(-2px);
}
.faq-q {
    background: linear-gradient(135deg, #e6f0fa 0%, #f0f6ff 100%);
    color: #357bb8;
    font-weight: 700;
    font-size: 1.1rem;
    padding: 18px 24px;
    margin: 0;
    position: relative;
    cursor: pointer;
    transition: background 0.3s;
    border-bottom: 1px solid #e6f0fa;
}
.faq-q::before {
    content: "Q";
    display: inline-block;
    background: #6ba8e5;
    color: #fff;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    text-align: center;
    line-height: 24px;
    font-size: 0.9rem;
    font-weight: 800;
    margin-right: 12px;
    flex-shrink: 0;
}
.faq-q:hover {
    background: linear-gradient(135deg, #d6e8f5 0%, #e6f0fa 100%);
}
.faq-a {
    background: #fff;
    color: #555;
    font-size: 1.05rem;
    line-height: 1.7;
    padding: 20px 24px 20px 60px;
    margin: 0;
    position: relative;
}
.faq-a::before {
    content: "A";
    display: inline-block;
    background: #00C6FB;
    color: #fff;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    text-align: center;
    line-height: 24px;
    font-size: 0.9rem;
    font-weight: 800;
    position: absolute;
    left: 24px;
    top: 20px;
}

/* 页脚 */
.footer {
    background: linear-gradient(135deg, #0b3b6f 0%, #005a9e 100%);
    padding: 32px 0 20px 0;
    color: #dbeafe;
    margin-top: 40px;
}
.footer .container {
    max-width: 1000px;
}
.footer-info {
    text-align: center;
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(107,168,229,0.3);
}
.footer-info p {
    margin: 0 0 10px 0;
    font-size: 0.95rem;
    line-height: 1.8;
}
.footer-info strong {
    color: #fff;
    font-size: 1.1rem;
}
.footer-info a {
    color: #93c5fd;
    text-decoration: none;
    transition: color 0.2s;
}
.footer-info a:hover {
    color: #fff;
    text-decoration: underline;
}
.footer-seo {
    font-size: 0.85rem;
    color: rgba(219,234,254,0.7);
    text-align: center;
    line-height: 1.8;
}
.footer-seo a {
    color: #93c5fd;
    text-decoration: none;
}
.footer-seo a:hover {
    color: #fff;
    text-decoration: underline;
}
.block-phone {
    text-align: left;
    margin-top: 18px;
}

/* 右下角悬浮咨询按钮 */
.consult-float {
    position: fixed;
    right: 28px;
    bottom: 32px;
    z-index: 1200;
    display: flex;
    align-items: center;
    gap: 6px;
    background: #6ba8e5;
    color: #fff;
    border-radius: 50px;
    box-shadow: 0 2px 8px rgba(107,168,229,0.3);
    padding: 8px 16px;
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    transition: background 0.2s, color 0.2s, box-shadow 0.2s, transform 0.2s;
    animation: consult-float-breath-blue 2.2s ease-in-out infinite, consult-float-move 1.8s ease-in-out infinite;
}
.consult-float a {
    color: #fff;
    font-weight: 500;
    font-size: 1rem;
    text-decoration: none;
    display: block;
}
.consult-float:hover {
    background: #5a9bd4;
    transform: scale(1.06);
    box-shadow: 0 0 24px 8px rgba(107,168,229,0.4), 0 2px 12px rgba(107,168,229,0.4);
}
.consult-float span {
    margin-left: 2px;
}

/* 咨询弹窗入口按钮 */
.consult-popup-btn {
    position: fixed;
    right: 28px;
    bottom: 92px;
    z-index: 1200;
    display: flex;
    align-items: center;
    gap: 6px;
    background: #07C160;
    color: #fff;
    border-radius: 50px;
    box-shadow: 0 2px 8px rgba(7,193,96,0.3);
    padding: 8px 16px;
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    transition: background 0.2s, color 0.2s, box-shadow 0.2s, transform 0.2s;
    animation: consult-float-breath 2.2s ease-in-out infinite, consult-float-move 1.8s ease-in-out infinite;
}
@keyframes consult-float-breath {
    0% { box-shadow: 0 0 0 0 rgba(7,193,96,0.3), 0 2px 8px rgba(7,193,96,0.3); }
    50% { box-shadow: 0 0 16px 8px rgba(7,193,96,0.2), 0 2px 12px rgba(7,193,96,0.4); }
    100% { box-shadow: 0 0 0 0 rgba(7,193,96,0.3), 0 2px 8px rgba(7,193,96,0.3); }
}
@keyframes consult-float-breath-blue {
    0% { box-shadow: 0 0 0 0 rgba(107,168,229,0.3), 0 2px 8px rgba(107,168,229,0.3); }
    50% { box-shadow: 0 0 16px 8px rgba(107,168,229,0.2), 0 2px 12px rgba(107,168,229,0.4); }
    100% { box-shadow: 0 0 0 0 rgba(107,168,229,0.3), 0 2px 8px rgba(107,168,229,0.3); }
}
@keyframes consult-float-move {
    0% { transform: translateY(0); }
    50% { transform: translateY(-6px); }
    100% { transform: translateY(0); }
}
.consult-popup-btn:hover {
    background: #05a050;
    color: #fff;
    animation: none;
    box-shadow: 0 0 24px 8px rgba(7,193,96,0.4), 0 2px 12px rgba(7,193,96,0.4);
    transform: scale(1.06);
}

/* 咨询弹窗内容 */
.consult-modal {
    display: none;
    position: fixed;
    left: 0; top: 0; width: 100vw; height: 100vh;
    background: transparent;
    z-index: 2000;
    align-items: center;
    justify-content: center;
}
.consult-modal.show {
    display: flex;
}
.consult-modal-content {
    background: #fff;
    border-radius: 14px;
    box-shadow: 0 8px 32px rgba(107,168,229,0.18);
    padding: 32px 28px 24px 28px;
    min-width: 260px;
    max-width: 90vw;
    text-align: center;
    position: relative;
}
.consult-modal-close {
    position: absolute;
    right: 16px;
    top: 12px;
    font-size: 1.6rem;
    color: #aaa;
    cursor: pointer;
    transition: color 0.2s;
}
.consult-modal-close:hover {
    color: #6ba8e5;
}
.consult-modal h3 {
    margin: 0 0 8px 0;
    color: #357bb8;
    font-size: 1.18rem;
}
.consult-modal p {
    color: #555;
    font-size: 1rem;
    margin-bottom: 8px;
}
.consult-modal img {
    border-radius: 8px;
    border: 1px solid #e6f0fa;
}

/* 响应式设计 */
@media (max-width: 1100px) {
    .block-content {
        padding: 0 8px;
    }
}
@media (max-width: 900px) {
    .nav-toggle {
        display: flex;
    }
    .nav {
        position: fixed;
        left: 0; top: 0;
        width: 100vw;
        height: 100vh;
        background: rgba(242,241,239,0.98);
        box-shadow: 0 2px 24px rgba(0,0,0,0.08);
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;
        padding-top: 80px;
        transform: translateX(100%);
        transition: transform 0.3s cubic-bezier(.4,0,.2,1);
        z-index: 110;
        opacity: 0;
        pointer-events: none;
    }
    .nav.nav-open {
        transform: translateX(0);
        opacity: 1;
        pointer-events: auto;
    }
    .nav a {
        display: block;
        margin: 18px 0;
        font-size: 1.18rem;
    }
    .nav-flex {
        justify-content: space-between;
    }
    .block {
        padding: 18px 0 10px 0;
    }
    .flex-row, .flex-row.reverse {
        flex-direction: column !important;
        gap: 16px;
    }
    .block-img, .block-content {
        max-width: 100%;
        min-width: 0;
        padding: 0;
        align-items: center;
    }
    .block-content {
        align-items: flex-start;
    }
    .feature-list, .price-list {
        grid-template-columns: 1fr;
    }
    .banner {
        min-height: 400px;
    }
    .banner-content {
        flex-direction: column;
        gap: 40px;
        text-align: center;
        padding: 40px 0;
    }
    .banner-text {
        max-width: 100%;
    }
    .banner-content h1 {
        font-size: 2.5rem;
    }
    .banner-subtitle {
        font-size: 1.2rem;
    }
    .banner-description {
        font-size: 1rem;
    }
    .banner-actions {
        justify-content: center;
    }
}
@media (max-width: 600px) {
    .container {
        padding: 0 4px;
    }
    .header, .footer {
        padding-left: 0;
        padding-right: 0;
    }
    .block {
        padding: 8px 0 6px 0;
    }
    .banner {
        min-height: 320px;
    }
    .banner-content {
        padding: 30px 0;
        gap: 30px;
    }
    .banner-content h1 {
        font-size: 2rem;
    }
    .banner-subtitle {
        font-size: 1.1rem;
    }
    .banner-description {
        font-size: 0.95rem;
    }
    .banner-features {
        justify-content: center;
    }
    .feature-tag {
        font-size: 0.8rem;
        padding: 4px 10px;
    }
    .banner-actions {
        flex-direction: column;
        align-items: center;
        gap: 12px;
    }
    .consult-btn.primary, .consult-btn.secondary {
        width: 100%;
        max-width: 280px;
        text-align: center;
        padding: 12px 20px;
        font-size: 1rem;
    }
    .consult-btn, .phone-link, .nav .nav-phone {
        width: 100%;
        box-sizing: border-box;
        font-size: 1rem;
        padding: 0.5em 0;
    }
    .nav .nav-phone {
        margin-left: 18px;
        padding: 10px 1.2em 8px 1.2em;
        font-size: 1rem;
        border-radius: 20px;
        margin-top: 0;
        line-height: 1.6;
        display: inline-block;
        vertical-align: middle;
    }
    .block-phone {
        text-align: center;
    }
    .faq-q, .faq-a {
        padding-left: 16px;
        padding-right: 16px;
    }
    .faq-a {
        padding-left: 52px;
    }
    .faq-a::before {
        left: 16px;
    }
    .consult-float, .consult-popup-btn {
        right: 10px;
        bottom: 12px;
        padding: 0 8px;
    }
    .consult-popup-btn {
        bottom: 62px;
    }
    .consult-modal-content {
        padding: 18px 6px 12px 6px;
        min-width: 0;
    }
    .nav {
        padding-top: 60px;
    }
}
@media (max-width: 400px) {
    .feature-list, .price-list {
        grid-template-columns: 1fr;
    }
}
