/* ============================================================
   page-lianxi-women.css — 联系我们
   ============================================================ */

/* ── 英雄区 ── */
.cl-hero {
    background:
        linear-gradient(160deg,
            rgba(232, 244, 255, 0.94) 0%,
            rgba(215, 234, 255, 0.90) 45%,
            rgba(228, 243, 255, 0.93) 100%);
    backdrop-filter: blur(22px) saturate(1.4);
    -webkit-backdrop-filter: blur(22px) saturate(1.4);
    padding: clamp(72px, 10vw, 118px) 0 clamp(48px, 6vw, 72px);
    overflow: hidden;
    position: relative;
    -webkit-mask-image: linear-gradient(to bottom, black 72%, transparent 100%);
    mask-image: linear-gradient(to bottom, black 72%, transparent 100%);
}

/* 点阵装饰 */
.cl-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: radial-gradient(circle, rgba(26, 111, 255, 0.055) 1px, transparent 1px);
    background-size: 32px 32px;
    pointer-events: none;
}

/* 右上角辉光 */
.cl-hero::after {
    content: '';
    position: absolute;
    top: -60px; right: -80px;
    width: 400px; height: 400px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(147, 197, 253, 0.26) 0%, transparent 70%);
    pointer-events: none;
}

.cl-hero__inner {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 12px;
}

.cl-hero__badge {
    display: inline-flex;
    align-items: center;
    padding: 5px 14px;
    border-radius: 999px;
    background: rgba(26, 111, 255, 0.08);
    border: 1px solid rgba(26, 111, 255, 0.20);
    color: #1a6fff;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.12em;
}

.cl-hero__title {
    margin: 0;
    font-size: clamp(32px, 5vw, 52px);
    font-weight: 860;
    color: #0f1d38;
    line-height: 1.1;
    letter-spacing: -0.025em;
}

.cl-hero__sub {
    margin: 0;
    font-size: 16px;
    color: rgba(15, 36, 80, 0.52);
    font-weight: 500;
}

.cl-hero__meta {
    display: flex;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
    justify-content: center;
    margin-top: 4px;
}

.cl-hero__meta span {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-size: 13px;
    font-weight: 650;
    color: rgba(15, 36, 80, 0.55);
}

.cl-hero__meta svg {
    flex-shrink: 0;
    color: #1a6fff;
}

/* ── 主体 ── */
.cl-body {
    padding-top: 0;
    padding-bottom: 100px;
}

/* ── 主 CTA：提交工单 ── */
.cl-primary {
    display: flex;
    align-items: center;
    gap: 24px;
    padding: 28px 32px;
    border-radius: 20px;
    background: linear-gradient(135deg,
        rgba(26, 111, 255, 0.92) 0%,
        rgba(37, 99, 235, 0.95) 55%,
        rgba(14, 165, 233, 0.90) 100%);
    box-shadow:
        0 12px 40px rgba(26, 111, 255, 0.30),
        inset 0 1px 0 rgba(255, 255, 255, 0.18);
    position: relative;
    overflow: hidden;
    flex-wrap: wrap;
    margin-bottom: 20px;
}

/* 内部光晕装饰 */
.cl-primary::before {
    content: '';
    position: absolute;
    top: -60px; right: -40px;
    width: 240px; height: 240px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.12) 0%, transparent 70%);
    pointer-events: none;
}

.cl-primary__icon {
    flex-shrink: 0;
    width: 56px; height: 56px;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.18);
    border: 1px solid rgba(255, 255, 255, 0.28);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
}

.cl-primary__body {
    flex: 1;
    min-width: 200px;
    position: relative;
    z-index: 1;
}

.cl-primary__title {
    margin: 0 0 6px;
    font-size: 20px;
    font-weight: 800;
    color: #fff;
    letter-spacing: -0.01em;
}

.cl-primary__desc {
    margin: 0 0 4px;
    font-size: 14px;
    line-height: 1.65;
    color: rgba(255, 255, 255, 0.82);
}

.cl-primary__hint {
    margin: 0;
    font-size: 12.5px;
    color: rgba(255, 255, 255, 0.58);
}

.cl-primary__btn {
    flex-shrink: 0;
    position: relative;
    z-index: 1;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 13px 22px;
    border-radius: var(--radius-pill, 999px);
    background: #fff;
    color: #1a4aaa;
    font-size: 14px;
    font-weight: 800;
    text-decoration: none;
    white-space: nowrap;
    transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.12);
}

.cl-primary__btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.18);
    color: #1240a0;
}

/* ── 三种联系方式 ── */
.cl-methods {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
    margin-bottom: 20px;
}

@media (max-width: 720px) {
    .cl-methods {
        grid-template-columns: 1fr;
    }
}

.cl-method {
    display: flex;
    flex-direction: column;
    gap: 14px;
    padding: 22px 20px;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.78);
    backdrop-filter: blur(16px) saturate(1.4);
    -webkit-backdrop-filter: blur(16px) saturate(1.4);
    border: 1px solid rgba(200, 220, 245, 0.70);
    box-shadow: 0 4px 18px rgba(15, 27, 50, 0.06), inset 0 1px 0 rgba(255, 255, 255, 0.9);
    transition: box-shadow 0.24s ease, transform 0.22s ease, border-color 0.24s ease;
}

.cl-method:hover {
    box-shadow: 0 8px 28px rgba(15, 27, 50, 0.10), inset 0 1px 0 rgba(255, 255, 255, 1);
    transform: translateY(-3px);
    border-color: rgba(100, 160, 240, 0.38);
}

.cl-method__icon {
    width: 46px; height: 46px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.cl-method__icon--blue   { background: rgba(26,  111, 255, 0.10); color: #1a6fff; }
.cl-method__icon--teal   { background: rgba(13,  148, 136, 0.10); color: #0d9488; }
.cl-method__icon--indigo { background: rgba(99,  102, 241, 0.10); color: #6366f1; }

.cl-method__body {
    display: flex;
    flex-direction: column;
    gap: 6px;
    flex: 1;
}

.cl-method__name {
    margin: 0;
    font-size: 15px;
    font-weight: 780;
    color: #0d2240;
}

.cl-method__desc {
    margin: 0;
    font-size: 13.5px;
    line-height: 1.65;
    color: rgba(15, 36, 80, 0.58);
    flex: 1;
}

.cl-method__desc a {
    color: #1a6fff;
    font-weight: 700;
    text-decoration: underline;
    text-underline-offset: 3px;
}

.cl-method__desc a:hover { color: #1240a0; }

.cl-method__link {
    display: inline-block;
    margin-top: 6px;
    font-size: 13.5px;
    font-weight: 780;
    color: #1a6fff;
    text-decoration: none;
    transition: color 0.18s ease;
}

.cl-method__link:hover { color: #1240a0; }

/* ── 响应时间提示 ── */
.cl-note {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    padding: 14px 18px;
    border-radius: 14px;
    background: rgba(235, 245, 255, 0.70);
    border: 1px solid rgba(26, 111, 255, 0.14);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

.cl-note svg {
    flex-shrink: 0;
    margin-top: 2px;
    color: #1a6fff;
}

.cl-note p {
    margin: 0;
    font-size: 13.5px;
    line-height: 1.65;
    color: rgba(15, 36, 80, 0.62);
}

.cl-note strong {
    color: #0d2240;
    font-weight: 750;
}

/* ── 响应式收缩 ── */
@media (max-width: 640px) {
    .cl-primary {
        padding: 22px 20px;
    }
    .cl-primary__btn {
        width: 100%;
        justify-content: center;
    }
}
