/* ============================================================
   product-pages3.css
   商标注册页 (tm-*) 与跨境电商页 (cb-*) 专属样式
   ============================================================ */

/* ---------- 通用变量与工具类 ---------- */
/* 作用域限定在 .tm-page / .cb-page 容器内，避免污染整站 :root，
   否则商标注册/跨境电商页加载后会让全站导航激活色变成紫色 */
.tm-page,
.cb-page {
    --primary: #6b2fa0;
    --primary-dark: #4a1f70;
    --primary-light: #9d6bc9;
    --gold: #d4a437;
    --gold-light: #f0cd7a;
    --dark: #1c1530;
    --white: #ffffff;
    --radius: 14px;
    --shadow: 0 6px 22px rgba(28, 21, 48, 0.10);
    --shadow-xl: 0 18px 48px rgba(28, 21, 48, 0.22);
    --transition: all 0.35s ease;

    /* 跨境页橙蓝主题变量（覆盖为橙蓝语义） */
    --cb-orange: #f07b1f;
    --cb-orange-dark: #d4620a;
    --cb-blue: #0f4c81;
    --cb-blue-light: #e8f2fb;
}

.tm-container,
.cb-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ============================================================
   模板一：商标注册页 —— 全球知识产权保护（紫金主题）
   ============================================================ */

/* --- Banner --- */
.tm-banner {
    position: relative;
    min-height: 400px;
    display: flex;
    align-items: center;
    background-size: cover;
    background-position: center;
    overflow: hidden;
}

.tm-banner-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(120deg, rgba(38, 18, 66, 0.88) 0%, rgba(74, 31, 112, 0.72) 55%, rgba(28, 21, 48, 0.80) 100%);
}

.tm-banner-inner {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin: 0 auto;
    padding: 70px 20px;
    width: 100%;
    text-align: center;
    color: var(--white);
}

.tm-banner-badge {
    display: inline-block;
    padding: 6px 22px;
    border: 1px solid var(--gold);
    color: var(--gold-light);
    font-size: 13px;
    letter-spacing: 4px;
    border-radius: 30px;
    margin-bottom: 22px;
    text-transform: uppercase;
}

.tm-banner-inner h1 {
    font-size: 42px;
    font-weight: 700;
    margin: 0 0 16px;
    color: var(--white);
    text-shadow: 0 3px 16px rgba(0, 0, 0, 0.4);
}

.tm-banner-inner p {
    font-size: 17px;
    color: rgba(255, 255, 255, 0.86);
    max-width: 640px;
    margin: 0 auto 30px;
    line-height: 1.8;
}

.tm-banner-btn {
    display: inline-block;
    padding: 13px 42px;
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%);
    color: var(--dark);
    font-weight: 700;
    border-radius: 30px;
    text-decoration: none;
    box-shadow: 0 8px 24px rgba(212, 164, 55, 0.45);
    transition: var(--transition);
}

.tm-banner-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 14px 32px rgba(212, 164, 55, 0.6);
}

/* --- 简介 --- */
.tm-intro {
    padding: 70px 0;
    background: var(--white);
}

.tm-intro-head {
    max-width: 860px;
    margin: 0 auto;
    text-align: center;
}

.tm-kicker {
    display: block;
    font-size: 13px;
    letter-spacing: 4px;
    color: var(--primary-light);
    font-weight: 700;
    margin-bottom: 14px;
    text-transform: uppercase;
}

.tm-kicker.gold {
    color: var(--gold);
}

.tm-intro-head h2,
.tm-section-head h2 {
    font-size: 32px;
    color: var(--dark);
    margin: 0 0 18px;
    font-weight: 700;
}

.tm-intro-head p {
    font-size: 16px;
    color: #665980;
    line-height: 1.9;
    margin: 0;
}

/* --- 地区与国家 --- */
.tm-regions {
    padding: 70px 0;
    background: linear-gradient(180deg, #faf7fd 0%, #f3ecfa 100%);
}

.tm-section-head {
    text-align: center;
    margin-bottom: 48px;
}

.tm-region-block {
    margin-bottom: 46px;
}

.tm-region-title {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 24px;
    padding-bottom: 14px;
    border-bottom: 2px solid rgba(107, 47, 160, 0.12);
}

.tm-region-dot {
    width: 14px;
    height: 14px;
    border-radius: 4px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--gold) 100%);
    flex-shrink: 0;
}

.tm-region-title h3 {
    font-size: 22px;
    color: var(--primary-dark);
    margin: 0;
    font-weight: 700;
}

.tm-country-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 22px;
}

.tm-country-card {
    background: var(--white);
    border: 1px solid rgba(107, 47, 160, 0.10);
    border-radius: var(--radius);
    padding: 26px 24px;
    box-shadow: var(--shadow);
    border-top: 3px solid transparent;
    transition: var(--transition);
}

.tm-country-card:hover {
    transform: translateY(-6px);
    border-top-color: var(--gold);
    border-color: var(--primary-light);
    box-shadow: var(--shadow-xl);
}

.tm-country-head h4 {
    font-size: 19px;
    color: var(--dark);
    margin: 0 0 4px;
    font-weight: 700;
}

.tm-country-en {
    display: block;
    font-size: 12px;
    color: var(--primary-light);
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-bottom: 16px;
    padding-bottom: 12px;
    border-bottom: 1px dashed rgba(107, 47, 160, 0.2);
}

.tm-country-info {
    list-style: none;
    margin: 0;
    padding: 0;
}

.tm-country-info li {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 7px 0;
    font-size: 14px;
}

.tm-info-label {
    color: #8a7fa3;
}

.tm-info-value {
    font-weight: 600;
    color: var(--dark);
}

.tm-info-gold {
    color: var(--gold);
}

/* --- 优势（深色） --- */
.tm-advantages {
    padding: 80px 0;
    background: radial-gradient(circle at 20% 0%, rgba(107, 47, 160, 0.55) 0%, transparent 55%),
                linear-gradient(150deg, var(--dark) 0%, var(--primary-dark) 100%);
}

.tm-head-light h2,
.tm-head-light {
    color: var(--white);
}

.tm-head-light h2 {
    color: var(--white) !important;
}

.tm-adv-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.tm-adv-card {
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(240, 205, 122, 0.25);
    border-radius: var(--radius);
    padding: 34px 26px;
    text-align: center;
    transition: var(--transition);
}

.tm-adv-card:hover {
    background: rgba(255, 255, 255, 0.10);
    transform: translateY(-6px);
    border-color: var(--gold);
}

.tm-adv-icon {
    width: 72px;
    height: 72px;
    margin: 0 auto 20px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    border: 2px solid var(--gold);
    font-size: 30px;
    line-height: 1;
}

.tm-adv-icon svg {
    width: 32px;
    height: 32px;
    fill: var(--gold-light);
}

.tm-adv-card h4 {
    font-size: 18px;
    color: var(--white);
    margin: 0 0 12px;
}

.tm-adv-card p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.72);
    line-height: 1.8;
    margin: 0;
}

/* --- CTA --- */
.tm-cta {
    padding: 80px 0;
    background: var(--white);
}

.tm-cta-box {
    text-align: center;
    padding: 60px 40px;
    border-radius: 20px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    box-shadow: var(--shadow-xl);
    position: relative;
    overflow: hidden;
}

.tm-cta-box::before,
.tm-cta-box::after {
    content: '';
    position: absolute;
    border-radius: 50%;
    border: 2px solid rgba(240, 205, 122, 0.25);
}

.tm-cta-box::before {
    width: 240px;
    height: 240px;
    top: -110px;
    right: -70px;
}

.tm-cta-box::after {
    width: 180px;
    height: 180px;
    bottom: -80px;
    left: -50px;
}

.tm-cta-box h2 {
    font-size: 30px;
    color: var(--white);
    margin: 0 0 14px;
}

.tm-cta-box p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 16px;
    margin: 0 0 30px;
}

.tm-cta-btn {
    display: inline-block;
    padding: 14px 46px;
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%);
    color: var(--dark);
    font-weight: 700;
    font-size: 16px;
    border-radius: 30px;
    text-decoration: none;
    box-shadow: 0 10px 26px rgba(212, 164, 55, 0.5);
    transition: var(--transition);
}

.tm-cta-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 16px 36px rgba(212, 164, 55, 0.65);
}

.tm-cta-phone {
    display: block;
    margin-top: 18px;
    color: var(--gold-light);
    font-size: 15px;
    text-decoration: none;
}

/* ============================================================
   模板二：跨境电商页 —— 全球贸易/新加坡焦点（橙蓝主题）
   ============================================================ */

/* --- Banner --- */
.cb-banner {
    position: relative;
    min-height: 400px;
    display: flex;
    align-items: center;
    background-size: cover;
    background-position: center;
}

.cb-banner-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(100deg, rgba(15, 76, 129, 0.92) 0%, rgba(15, 76, 129, 0.68) 50%, rgba(240, 123, 31, 0.35) 100%);
}

.cb-banner-inner {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
    padding: 70px 20px;
    color: var(--white);
}

.cb-banner-tag {
    display: inline-block;
    padding: 7px 18px;
    background: var(--cb-orange);
    color: var(--white);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 3px;
    border-radius: 4px;
    margin-bottom: 22px;
    text-transform: uppercase;
}

.cb-banner-inner h1 {
    font-size: 42px;
    font-weight: 800;
    margin: 0 0 16px;
    line-height: 1.25;
    text-shadow: 0 3px 14px rgba(0, 0, 0, 0.35);
}

.cb-banner-inner p {
    font-size: 17px;
    color: rgba(255, 255, 255, 0.9);
    max-width: 560px;
    line-height: 1.8;
    margin: 0;
    border-left: 4px solid var(--cb-orange);
    padding-left: 16px;
}

/* --- 简介 --- */
.cb-intro {
    padding: 70px 0;
    background: var(--white);
}

.cb-intro h2 {
    font-size: 30px;
    color: var(--cb-blue);
    margin: 0 0 16px;
    font-weight: 800;
}

.cb-intro p {
    font-size: 16px;
    color: #5b6b7a;
    line-height: 1.9;
    max-width: 900px;
    margin: 0;
}

.cb-kicker {
    display: block;
    font-size: 13px;
    letter-spacing: 4px;
    color: var(--cb-orange);
    font-weight: 700;
    margin-bottom: 12px;
    text-transform: uppercase;
}

.cb-section-head {
    text-align: center;
    margin-bottom: 46px;
}

.cb-section-head h2 {
    font-size: 30px;
    color: var(--cb-blue);
    margin: 0;
    font-weight: 800;
}

/* --- 新加坡优势 --- */
.cb-sg {
    padding: 70px 0;
    background: #f7fafd;
}

.cb-sg-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.cb-sg-card {
    background: var(--white);
    border-radius: var(--radius);
    padding: 30px 28px;
    box-shadow: var(--shadow);
    position: relative;
    overflow: hidden;
    transition: var(--transition);
}

.cb-sg-bar {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--cb-blue) 0%, var(--cb-orange) 100%);
}

.cb-sg-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-xl);
}

.cb-sg-card h3 {
    font-size: 18px;
    color: var(--cb-blue);
    margin: 0 0 12px;
    font-weight: 700;
}

.cb-sg-card p {
    font-size: 14px;
    color: #5b6b7a;
    line-height: 1.8;
    margin: 0;
}

/* --- 税务筹划：编号卡片 --- */
.cb-tax-plan {
    padding: 70px 0;
    background: var(--white);
}

.cb-plan-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr); /* 5 卡片自动换行，最后一格 */
    gap: 20px 24px;
}

.cb-plan-card {
    display: flex;
    gap: 18px;
    align-items: flex-start;
    padding: 24px;
    background: linear-gradient(135deg, #fdf3ea 0%, #fefaf6 100%);
    border: 1px solid rgba(240, 123, 31, 0.18);
    border-radius: var(--radius);
    transition: var(--transition);
}

.cb-plan-card:hover {
    box-shadow: var(--shadow-xl);
    border-color: var(--cb-orange);
}

.cb-plan-num {
    flex-shrink: 0;
    width: 46px;
    height: 46px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--cb-orange) 0%, var(--cb-orange-dark) 100%);
    color: var(--white);
    font-size: 20px;
    font-weight: 800;
    border-radius: 12px;
}

.cb-plan-body h3 {
    font-size: 17px;
    color: var(--cb-blue);
    margin: 4px 0 8px;
    font-weight: 700;
}

.cb-plan-body p {
    font-size: 14px;
    color: #5b6b7a;
    line-height: 1.75;
    margin: 0;
}

/* --- 做账流程：深色时间线 --- */
.cb-process {
    padding: 80px 0;
    background: linear-gradient(160deg, #0d3a63 0%, var(--cb-blue) 60%, #123f6b 100%);
}

.cb-head-light h2 {
    color: var(--white) !important;
}

.cb-timeline {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 26px 18px;
}

.cb-step {
    position: relative;
    padding-right: 22px;
}

.cb-step::after {
    content: '';
    position: absolute;
    top: 24px;
    right: -8px;
    width: calc(100% - 52px);
    height: 2px;
    background: repeating-linear-gradient(90deg, rgba(240, 123, 31, 0.7) 0 8px, transparent 8px 14px);
}

.cb-step:last-child::after {
    display: none;
}

.cb-step-top {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 16px;
}

.cb-step-num {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--cb-orange);
    color: var(--white);
    font-size: 20px;
    font-weight: 800;
    box-shadow: 0 0 0 5px rgba(240, 123, 31, 0.25);
    flex-shrink: 0;
}

.cb-step-time {
    font-size: 12px;
    font-weight: 700;
    color: #ffd9b3;
    background: rgba(240, 123, 31, 0.18);
    padding: 4px 10px;
    border-radius: 20px;
    white-space: nowrap;
}

.cb-step-body h4 {
    font-size: 16px;
    color: var(--white);
    margin: 0 0 8px;
}

.cb-step-body p {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.72);
    line-height: 1.7;
    margin: 0;
}

/* --- 财务报表清单 --- */
.cb-statements {
    padding: 70px 0;
    background: var(--white);
}

.cb-doc-list {
    list-style: none;
    margin: 0 auto;
    padding: 0;
    max-width: 860px;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 14px 24px;
}

.cb-doc-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px 20px;
    background: #f7fafd;
    border: 1px solid #e1ecf5;
    border-radius: 10px;
    transition: var(--transition);
}

.cb-doc-item:hover {
    border-color: var(--cb-blue);
    background: var(--cb-blue-light);
}

.cb-doc-check {
    flex-shrink: 0;
    width: 26px;
    height: 26px;
    border-radius: 50%;
    background: var(--cb-blue);
    display: flex;
    align-items: center;
    justify-content: center;
}

.cb-doc-check svg {
    width: 15px;
    height: 15px;
    fill: var(--white);
}

.cb-doc-text {
    font-size: 15px;
    color: #34495e;
}

/* --- 审计提示框 --- */
.cb-audit {
    padding: 20px 0 70px;
    background: var(--white);
}

.cb-audit-box {
    display: flex;
    gap: 20px;
    align-items: flex-start;
    background: var(--cb-blue-light);
    border-left: 5px solid var(--cb-blue);
    border-radius: var(--radius);
    padding: 28px 30px;
}

.cb-audit-icon {
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--cb-blue);
    color: var(--white);
    font-size: 20px;
    font-weight: 800;
    font-style: italic;
    display: flex;
    align-items: center;
    justify-content: center;
}

.cb-audit-body h3 {
    font-size: 17px;
    color: var(--cb-blue);
    margin: 6px 0 8px;
}

.cb-audit-body p {
    font-size: 15px;
    color: #456;
    line-height: 1.85;
    margin: 0;
}

/* --- 税率卡片 --- */
.cb-rates {
    padding: 70px 0;
    background: #fdf6ef;
}

.cb-rate-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 26px;
}

.cb-rate-card {
    background: var(--white);
    border-radius: var(--radius);
    padding: 40px 30px 34px;
    text-align: center;
    box-shadow: var(--shadow);
    border-bottom: 4px solid var(--cb-orange);
    transition: var(--transition);
}

.cb-rate-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-xl);
}

.cb-rate-num {
    font-size: 56px;
    font-weight: 900;
    line-height: 1;
    margin-bottom: 12px;
    background: linear-gradient(135deg, var(--cb-blue) 20%, var(--cb-orange) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.cb-rate-card h3 {
    font-size: 19px;
    color: var(--cb-blue);
    margin: 0 0 10px;
    font-weight: 700;
}

.cb-rate-card p {
    font-size: 14px;
    color: #5b6b7a;
    line-height: 1.8;
    margin: 0;
}

/* --- 税收优惠表 --- */
.cb-benefit-table-sec {
    padding: 70px 0;
    background: var(--white);
}

.cb-table-wrap {
    overflow-x: auto;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}

.cb-table {
    width: 100%;
    border-collapse: collapse;
    min-width: 640px;
    background: var(--white);
}

.cb-table thead th {
    background: linear-gradient(135deg, var(--cb-orange) 0%, var(--cb-orange-dark) 100%);
    color: var(--white);
    font-size: 15px;
    font-weight: 700;
    padding: 16px 20px;
    text-align: left;
    white-space: nowrap;
}

.cb-table tbody td {
    padding: 15px 20px;
    font-size: 15px;
    color: #34495e;
    border-bottom: 1px solid #f0e8df;
}

.cb-table tbody tr:nth-child(even) {
    background: #fdf6ef;
}

.cb-table tbody tr:hover {
    background: var(--cb-blue-light);
}

.cb-table tbody tr:last-child td {
    border-bottom: none;
}

/* --- 税收优惠亮点 --- */
.cb-benefits {
    padding: 70px 0;
    background: #f7fafd;
}

.cb-benefit-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.cb-benefit-card {
    background: var(--white);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.cb-benefit-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-xl);
}

.cb-benefit-head {
    padding: 20px 26px;
    background: linear-gradient(135deg, var(--cb-blue) 0%, #0d3a63 100%);
}

.cb-benefit-head h3 {
    font-size: 17px;
    color: var(--white);
    margin: 0;
    font-weight: 700;
}

.cb-benefit-card p {
    font-size: 14px;
    color: #5b6b7a;
    line-height: 1.85;
    margin: 0;
    padding: 20px 26px 24px;
}

/* --- 服务产品 --- */
.cb-products {
    padding: 70px 0;
    background: var(--white);
}

.cb-product-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.cb-product-card {
    border: 1px solid #e4ebf2;
    border-radius: var(--radius);
    padding: 30px 28px;
    transition: var(--transition);
    position: relative;
}

.cb-product-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 28px;
    right: 28px;
    height: 3px;
    border-radius: 0 0 4px 4px;
    background: linear-gradient(90deg, var(--cb-blue), var(--cb-orange));
    opacity: 0;
    transition: var(--transition);
}

.cb-product-card:hover {
    box-shadow: var(--shadow-xl);
    border-color: transparent;
}

.cb-product-card:hover::before {
    opacity: 1;
}

.cb-product-card h3 {
    font-size: 19px;
    color: var(--cb-blue);
    margin: 0 0 12px;
    font-weight: 700;
}

.cb-product-card p {
    font-size: 14px;
    color: #5b6b7a;
    line-height: 1.8;
    margin: 0 0 18px;
}

.cb-product-link {
    font-size: 14px;
    font-weight: 700;
    color: var(--cb-orange);
    text-decoration: none;
}

.cb-product-link:hover {
    color: var(--cb-orange-dark);
}

/* --- CTA --- */
.cb-cta {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--cb-blue) 0%, #0d3a63 60%, var(--cb-orange) 160%);
}

.cb-cta-box {
    text-align: center;
}

.cb-cta-box h2 {
    font-size: 30px;
    color: var(--white);
    margin: 0 0 14px;
}

.cb-cta-box p {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.85);
    margin: 0 0 30px;
}

.cb-cta-btn {
    display: inline-block;
    padding: 15px 50px;
    background: linear-gradient(135deg, var(--cb-orange) 0%, var(--cb-orange-dark) 100%);
    color: var(--white);
    font-size: 16px;
    font-weight: 700;
    border-radius: 8px;
    text-decoration: none;
    box-shadow: 0 10px 28px rgba(240, 123, 31, 0.45);
    transition: var(--transition);
}

.cb-cta-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 16px 38px rgba(240, 123, 31, 0.6);
}

/* ============================================================
   响应式
   ============================================================ */

/* ---------- ≤1024px ---------- */
@media (max-width: 1024px) {
    .tm-country-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .tm-adv-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .cb-sg-grid,
    .cb-benefit-grid,
    .cb-product-grid,
    .cb-rate-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .cb-timeline {
        grid-template-columns: repeat(3, 1fr);
        row-gap: 40px;
    }

    .cb-step:nth-child(3)::after {
        display: none; /* 换行处隐藏连接线 */
    }
}

/* ---------- ≤768px ---------- */
@media (max-width: 768px) {
    .tm-banner-inner h1,
    .cb-banner-inner h1 {
        font-size: 30px;
    }

    .tm-intro-head h2,
    .tm-section-head h2,
    .cb-intro h2,
    .cb-section-head h2 {
        font-size: 25px;
    }

    .tm-country-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }

    .tm-adv-grid {
        grid-template-columns: 1fr;
    }

    .tm-cta-box,
    .tm-intro,
    .tm-regions,
    .tm-advantages,
    .tm-cta,
    .cb-intro,
    .cb-sg,
    .cb-tax-plan,
    .cb-process,
    .cb-statements,
    .cb-audit,
    .cb-rates,
    .cb-benefit-table-sec,
    .cb-benefits,
    .cb-products,
    .cb-cta {
        padding-top: 50px;
        padding-bottom: 50px;
    }

    .cb-sg-grid,
    .cb-benefit-grid,
    .cb-product-grid,
    .cb-rate-grid,
    .cb-plan-list {
        grid-template-columns: 1fr;
    }

    .cb-timeline {
        grid-template-columns: 1fr;
        gap: 34px;
    }

    .cb-step {
        padding-right: 0;
    }

    .cb-step::after {
        display: none;
    }

    .cb-doc-list {
        grid-template-columns: 1fr;
    }

    .cb-audit-box {
        flex-direction: column;
    }
}

/* ---------- ≤480px ---------- */
@media (max-width: 480px) {
    .tm-banner,
    .cb-banner {
        min-height: 320px;
    }

    .tm-banner-inner h1,
    .cb-banner-inner h1 {
        font-size: 24px;
    }

    .tm-banner-inner p,
    .cb-banner-inner p {
        font-size: 15px;
    }

    .tm-country-grid {
        grid-template-columns: 1fr;
    }

    .tm-cta-box {
        padding: 44px 22px;
    }

    .tm-cta-box h2,
    .cb-cta-box h2 {
        font-size: 22px;
    }

    .cb-rate-num {
        font-size: 48px;
    }

    .cb-plan-card {
        flex-direction: column;
    }

    .cb-cta-btn,
    .tm-cta-btn,
    .tm-banner-btn {
        padding: 12px 34px;
        font-size: 15px;
    }
}
