/* ============================================================
   Service Pages Shared CSS
   提取自 page-trademark-*.php 的重复内联样式
   ============================================================ */

/* ----- Hero Section ----- */
.hero-service-badge {
    display: inline-block;
    padding: 6px 16px;
    border-radius: 50px;
    margin-bottom: 1rem;
}
.hero-service-badge span {
    font-size: 0.85rem;
    font-weight: 600;
}
.hero-service-title {
    color: #fff;
    font-size: 2.8rem;
    font-weight: 800;
    line-height: 1.2;
}
.hero-service-desc {
    color: rgba(255,255,255,0.7);
    font-size: 1.1rem;
    line-height: 1.8;
    margin: 1.5rem 0;
}
.hero-stats-card {
    background: rgba(255,255,255,0.05);
    padding: 3rem;
    border-radius: 20px;
    border: 1px solid rgba(255,255,255,0.1);
}
.hero-stats-emoji {
    font-size: 4rem;
    margin-bottom: 1rem;
}
.hero-stat-number {
    font-size: 1.8rem;
    font-weight: 800;
}
.hero-stat-label {
    color: rgba(255,255,255,0.5);
    font-size: 0.85rem;
}

/* ----- Table ----- */
.table-styled {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 20px rgba(0,0,0,0.06);
}
.table-styled thead th {
    padding: 1rem;
    color: #fff;
}
.table-styled tbody td {
    padding: 0.9rem 1rem;
}
.table-styled .table-row-alt {
    background: #f8f9fa;
}

/* Table head color variants */
.table-head-dark  thead { background: #1a1a2e; }
.table-head-green thead { background: #1b4332; }
.table-head-blue  thead { background: #0f3460; }
.table-head-red   thead { background: #6B1A1A; }
.table-head-purple thead { background: #7b2d8e; }
.table-head-orange thead { background: #d97706; }
.table-head-teal  thead { background: #0d9488; }
.table-head-pink  thead { background: #be185d; }

/* ----- Pricing Page ----- */
.pricing-price-lg {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--cn-ink);
    margin-bottom: 0.5rem;
}
.pricing-list-item {
    font-size: 0.9rem;
    padding: 0.25rem 0;
}
.pricing-other-row {
    display: flex;
    justify-content: space-between;
    padding: 0.5rem 0;
    border-bottom: 1px solid var(--cn-border);
}
.pricing-other-price {
    font-weight: 700;
}
.pricing-other-wrap {
    border-radius: 12px;
    padding: 2rem;
}
.pricing-note {
    color: var(--cn-gray);
    font-size: 0.85rem;
}

/* ----- Inquiry CTA Form ----- */
.inquiry-cta-section {
    padding: 4rem 0;
}
.inquiry-cta-title {
    color: #fff;
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1rem;
}
.inquiry-cta-desc {
    color: rgba(255,255,255,0.7);
    font-size: 1.05rem;
    line-height: 1.7;
    margin-bottom: 2rem;
}
.inquiry-cta-list {
    margin-bottom: 1.5rem;
}
.inquiry-cta-list li {
    color: rgba(255,255,255,0.85);
    margin-bottom: 0.6rem;
}
.inquiry-cta-check {
    color: #d4a843;
}
.inquiry-cta-contact {
    margin-top: 1.25rem;
    color: rgba(255,255,255,0.5);
    font-size: 0.85rem;
}
.inquiry-cta-contact-item {
    margin-right: 1.25rem;
}
.inquiry-form-box {
    background: #fff;
    border-radius: 16px;
    padding: 2rem;
    box-shadow: 0 10px 40px rgba(0,0,0,0.2);
}

/* ----- Responsive ----- */
@media (max-width: 768px) {
    .hero-service-title {
        font-size: 2rem;
    }
    .hero-service-desc {
        font-size: 1rem;
    }
    .hero-stats-card {
        padding: 1.5rem;
    }
    .hero-stat-number {
        font-size: 1.4rem;
    }
    .inquiry-cta-title {
        font-size: 1.5rem;
    }
    .inquiry-cta-form-wrap {
        padding: 1.5rem;
    }
}