/* ==========================================================================
   Translog Connections - inner-page components (redesign language)
   ========================================================================== */
.section-padding { padding: 96px 0; }
.bg-light { background: var(--panel-2); }
.section-title { text-align: center; max-width: 700px; margin: 0 auto 56px; }
.section-title .eyebrow { display: block; }
.section-title h2 { font-size: clamp(28px, 4vw, 42px); font-weight: 600; letter-spacing: -0.03em; }
.section-title .subtitle, .section-title p { color: var(--muted); font-size: 17px; margin-top: 14px; }

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

.card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; transition: transform .3s var(--ease), box-shadow .3s var(--ease); }
.card:hover { transform: translateY(-5px); box-shadow: var(--shadow-sm); }
.service-card { padding: 32px 28px; height: 100%; }
.service-card .icon { width: 56px; height: 56px; border-radius: 14px; display: grid; place-items: center; background: #e8f3fb; color: var(--blue-strong); font-size: 23px; margin-bottom: 20px; transition: all .3s var(--ease); }
.service-card:hover .icon { background: var(--blue-strong); color: #fff; }
.service-card.alt .icon { background: #fde8d9; color: var(--accent); }
.service-card.alt:hover .icon { background: var(--accent); color: #fff; }
.service-card h3 { font-size: 20px; font-weight: 600; margin-bottom: 6px; letter-spacing: -0.02em; }
.service-card .tagline { color: var(--accent); font-size: 13.5px; font-weight: 600; margin-bottom: 12px; }
.service-card p { color: var(--muted); font-size: 15px; margin-bottom: 18px; }
.service-card .more { font-weight: 600; font-size: 14.5px; display: inline-flex; align-items: center; gap: 8px; }
.service-card .more i { transition: transform .2s var(--ease); }
.service-card:hover .more i { transform: translateX(4px); }

.benefit { display: flex; gap: 16px; align-items: flex-start; padding: 16px; border-radius: var(--radius); transition: background .25s var(--ease); }
.benefit:hover { background: #fff; box-shadow: var(--shadow-sm); }
.benefit .b-icon { flex: 0 0 auto; width: 48px; height: 48px; border-radius: 12px; background: #fde8d9; color: var(--accent); display: grid; place-items: center; font-size: 20px; }
.benefit h5 { font-size: 17px; margin-bottom: 4px; font-weight: 600; }
.benefit p { color: var(--muted); font-size: 14.5px; margin: 0; }

.split-visual { border-radius: var(--radius-lg); padding: 40px; min-height: 380px; background: linear-gradient(135deg, #e8f3fb, #fff); border: 1px solid var(--line); position: relative; display: grid; place-items: center; overflow: hidden; }
.split-visual .big-icon { font-size: 120px; color: var(--blue-strong); opacity: .9; }

.cta-band { position: relative; overflow: hidden; border-radius: var(--radius-lg); background: var(--navy); color: #fff; padding: 60px; text-align: center; }
.cta-band::after { content: ""; position: absolute; width: 340px; height: 340px; border-radius: 50%; background: var(--blue); opacity: .2; top: -130px; right: -80px; }
.cta-band h2 { color: #fff; font-size: clamp(26px, 4vw, 40px); font-weight: 600; position: relative; }
.cta-band p { color: rgba(255,255,255,.8); font-size: 17px; max-width: 560px; margin: 12px auto 28px; position: relative; }
.cta-band .hero-actions { justify-content: center; position: relative; }

.breadcrumb { display: flex; gap: 8px; justify-content: center; font-size: 14px; color: var(--muted); margin-top: 18px; }
.page-hero .breadcrumb a { color: var(--blue-strong); }

.stats-band { background: var(--navy); color: #fff; padding: 66px 0; }
.stats-band .stat { text-align: center; }
.stats-band .stat .number { font-size: clamp(34px, 5vw, 50px); font-weight: 700; color: #fff; letter-spacing: -0.03em; }
.stats-band .stat .number .plus { color: #ffb98a; }
.stats-band .stat .label { color: rgba(255,255,255,.68); font-size: 14px; margin-top: 6px; }

.testimonial-card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 32px; height: 100%; }
.testimonial-card .stars { color: #f5a623; margin-bottom: 16px; font-size: 14px; }
.testimonial-card .text, .testimonial-card .quote { color: var(--ink-2); font-size: 15.5px; margin-bottom: 22px; }
.testimonial-card .author, .testimonial-card .who { display: flex; align-items: center; gap: 13px; }
.testimonial-card .avatar { width: 46px; height: 46px; border-radius: 50%; background: linear-gradient(135deg, var(--blue), var(--blue-deep)); color: #fff; display: grid; place-items: center; font-weight: 700; }
.testimonial-card .name { font-weight: 600; color: var(--ink); font-size: 15px; margin: 0; }
.testimonial-card .company { color: var(--muted); font-size: 13px; }

.blog-card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; height: 100%; display: flex; flex-direction: column; transition: transform .3s var(--ease), box-shadow .3s var(--ease); }
.blog-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-sm); }
.blog-card .card-img-top, .blog-card .thumb { height: 210px; position: relative; background: linear-gradient(135deg, var(--blue), var(--blue-deep)); display: grid; place-items: center; overflow: hidden; }
.blog-card .thumb i { font-size: 44px; color: rgba(255,255,255,.85); }
.blog-card .thumb img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.blog-card .cat-badge { position: absolute; top: 14px; left: 14px; background: rgba(255,255,255,.95); color: var(--ink); font-size: 12px; font-weight: 600; padding: 6px 13px; border-radius: var(--radius-pill); }
.blog-card .body { padding: 24px; flex: 1; display: flex; flex-direction: column; }
.blog-card .meta { font-size: 13px; color: var(--muted); margin-bottom: 12px; display: flex; gap: 16px; }
.blog-card h3 { font-size: 18.5px; font-weight: 600; margin-bottom: 10px; letter-spacing: -0.02em; }
.blog-card h3 a { color: var(--ink); }
.blog-card h3 a:hover { color: var(--blue-strong); }
.blog-card p { color: var(--muted); font-size: 14.5px; flex: 1; margin: 0; }
.blog-card .read { margin-top: 16px; font-weight: 600; font-size: 14px; display: inline-flex; gap: 8px; align-items: center; }

/* Tracking route visual */
.route-line { display: flex; align-items: center; justify-content: space-between; margin: 18px 0; }
.route-point { text-align: center; flex: 0 0 auto; }
.route-point .flag { width: 46px; height: 46px; border-radius: 50%; display: grid; place-items: center; margin: 0 auto 8px; font-size: 18px; color: #fff; }
.route-point .flag.cn { background: var(--accent); }
.route-point .flag.ug { background: var(--blue-strong); }
.route-point .city { font-weight: 600; font-size: 14px; color: var(--ink); }
.route-point .sub { font-size: 12px; color: var(--muted); }
.route-track { flex: 1; height: 2px; background: repeating-linear-gradient(90deg, var(--blue) 0 8px, transparent 8px 16px); position: relative; margin: 0 12px; }
.route-track i { position: absolute; top: -9px; left: 50%; transform: translateX(-50%); color: var(--accent); font-size: 18px; background: #fff; padding: 0 4px; }
.route-meta { display: flex; justify-content: space-between; border-top: 1px solid var(--line); padding-top: 14px; margin-top: 6px; }
.route-meta div .k { font-size: 12px; color: var(--muted); }
.route-meta div .v { font-weight: 600; color: var(--ink); font-size: 14px; }

@media (max-width: 992px) { .grid-3, .grid-4 { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 720px) { .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; } .section-padding { padding: 64px 0; } .cta-band { padding: 40px 24px; } }
