/* === block from index.html L170-686 === */
html { scroll-behavior: smooth; scroll-padding-top: 110px; }
body { font-family: 'Inter', system-ui, sans-serif; color: #0d1b2a; background: #fff; overflow-x: hidden; }
/* Header — đẩy scroll-progress xuống dưới header để khỏi che */
#scroll-progress { top: 106px !important; }
@media (max-width: 768px) { #scroll-progress { top: 66px !important; } html { scroll-padding-top: 70px; } }
.material-symbols-outlined { font-variation-settings: 'FILL' 0,'wght' 400,'GRAD' 0,'opsz' 24; vertical-align: middle; }
.icon-fill { font-variation-settings: 'FILL' 1,'wght' 500,'GRAD' 0,'opsz' 24; }
/* Section padding */
.section-pad { padding-top: 96px; padding-bottom: 96px; }
@media (max-width: 768px) { .section-pad { padding-top: 64px; padding-bottom: 64px; } }
.section-pad.section-pad-sm { padding-top: 64px; padding-bottom: 64px; }
@media (max-width: 768px) { .section-pad.section-pad-sm { padding-top: 44px; padding-bottom: 44px; } }
/* ===== Selection + Scrollbar ===== */
::selection { background: #0E73BA; color: #fff; }
::-webkit-scrollbar { width: 10px; height: 10px; }
::-webkit-scrollbar-track { background: #f5f7fa; }
::-webkit-scrollbar-thumb { background: linear-gradient(180deg, #0E73BA, #0661A1); border-radius: 0; }
::-webkit-scrollbar-thumb:hover { background: #0661A1; }
/* ===== Scroll progress bar (top of page) ===== */
#scroll-progress { position: fixed; top: 0; left: 0; height: 3px; width: 0%; background: linear-gradient(90deg,#0E73BA 0%,#1e8fc6 50%,#19bf6a 100%); z-index: 100; transition: width .15s linear; box-shadow: 0 0 12px rgba(14,115,186,.5); }
/* ===== Floating CTA (bottom-right) ===== */
.floating-cta { position: fixed; right: 22px; bottom: 22px; z-index: 60; display: flex; flex-direction: column; gap: 10px; opacity: 0; transform: translateY(20px); transition: opacity .3s ease, transform .3s ease; }
.floating-cta.show { opacity: 1; transform: translateY(0); }
.fab { width: 56px; height: 56px; border-radius: 999px; display: flex; align-items: center; justify-content: center; color: #fff; box-shadow: 0 12px 30px rgba(0,0,0,.20); position: relative; transition: transform .2s ease, box-shadow .2s ease; }
.fab:hover { transform: scale(1.08) rotate(-6deg); box-shadow: 0 18px 40px rgba(0,0,0,.28); }
.fab.fab-call { background: linear-gradient(135deg,#19bf6a,#13a25a); }
.fab.fab-zalo { background: linear-gradient(135deg,#1e8fc6,#0E73BA); }
.fab.fab-top  { background: linear-gradient(135deg,#0a2540,#001128); }
.fab .ping { position: absolute; inset: -4px; border-radius: 999px; border: 3px solid currentColor; opacity: .55; animation: ping 1.8s cubic-bezier(0,0,.2,1) infinite; }
@keyframes ping { 0% { transform: scale(.9); opacity:.6; } 80%,100% { transform: scale(1.6); opacity: 0; } }
/* ===== Animations ===== */
@keyframes fadeUp { from { opacity: 0; transform: translateY(28px); } to { opacity: 1; transform: translateY(0); } }
@keyframes fadeLeft { from { opacity: 0; transform: translateX(-28px); } to { opacity: 1; transform: translateX(0); } }
@keyframes fadeRight { from { opacity: 0; transform: translateX(28px); } to { opacity: 1; transform: translateX(0); } }
@keyframes scaleIn { from { opacity: 0; transform: scale(.92); } to { opacity: 1; transform: scale(1); } }
@keyframes floaty { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-12px); } }
@keyframes floaty-slow { 0%,100% { transform: translateY(0) rotate(0); } 50% { transform: translateY(-8px) rotate(2deg); } }
@keyframes pulseGlow { 0%,100% { box-shadow: 0 0 0 0 rgba(14,115,186,.55); } 50% { box-shadow: 0 0 0 14px rgba(14,115,186,0); } }
@keyframes gradientShift { 0% { background-position: 0% 50%; } 50% { background-position: 100% 50%; } 100% { background-position: 0% 50%; } }
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }
@keyframes shine { from { left: -120%; } to { left: 140%; } }
@keyframes spin-slow { from { transform: rotate(0); } to { transform: rotate(360deg); } }
@keyframes blob { 0%,100% { border-radius: 42% 58% 60% 40% / 45% 50% 50% 55%; } 33% { border-radius: 60% 40% 35% 65% / 55% 45% 55% 45%; } 66% { border-radius: 50% 50% 65% 35% / 40% 60% 40% 60%; } }
.anim-float { animation: floaty 6s ease-in-out infinite; }
.anim-float-slow { animation: floaty-slow 9s ease-in-out infinite; }
.anim-pulse-glow { animation: pulseGlow 2.2s ease-in-out infinite; }
.anim-spin-slow { animation: spin-slow 24s linear infinite; }
.anim-blob { animation: blob 18s ease-in-out infinite; }
/* Reveal — auto handled by IntersectionObserver */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity .7s ease, transform .7s ease; }
.reveal.in { opacity: 1; transform: translateY(0); }
.reveal-left { opacity: 0; transform: translateX(-32px); transition: opacity .7s ease, transform .7s ease; }
.reveal-left.in { opacity: 1; transform: translateX(0); }
.reveal-right { opacity: 0; transform: translateX(32px); transition: opacity .7s ease, transform .7s ease; }
.reveal-right.in { opacity: 1; transform: translateX(0); }
.reveal-scale { opacity: 0; transform: scale(.93); transition: opacity .7s ease, transform .7s ease; }
.reveal-scale.in { opacity: 1; transform: scale(1); }
.delay-1 { transition-delay: .08s; } .delay-2 { transition-delay: .16s; } .delay-3 { transition-delay: .24s; }
.delay-4 { transition-delay: .32s; } .delay-5 { transition-delay: .40s; } .delay-6 { transition-delay: .48s; }
@media (prefers-reduced-motion: reduce) {
.reveal, .reveal-left, .reveal-right, .reveal-scale { opacity:1; transform:none; transition:none; }
.anim-float, .anim-float-slow, .anim-pulse-glow, .anim-spin-slow, .anim-blob { animation: none; }
html { scroll-behavior: auto; }
}
/* Shine button */
.btn-shine { position: relative; overflow: hidden; }
.btn-shine::before { content:''; position: absolute; top:0; left:-120%; width: 80%; height: 100%; background: linear-gradient(90deg, transparent, rgba(255,255,255,.35), transparent); transform: skewX(-20deg); }
.btn-shine:hover::before { animation: shine .9s ease forwards; }
/* Gradient text */
.gradient-text { background: linear-gradient(120deg,#1e8fc6 0%,#0E73BA 35%,#19bf6a 100%); background-size: 200% 200%; -webkit-background-clip: text; background-clip: text; color: transparent; animation: gradientShift 8s ease infinite; }
/* Mesh gradient backdrop */
.mesh-bg { background:
radial-gradient(at 8% 18%, rgba(30,143,198,.18) 0px, transparent 45%),
radial-gradient(at 92% 22%, rgba(25,191,106,.16) 0px, transparent 50%),
radial-gradient(at 38% 88%, rgba(14,115,186,.20) 0px, transparent 55%);
}
/* Glass card */
.glass { background: rgba(255,255,255,.10); backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px); border: 1px solid rgba(255,255,255,.18); }
/* Kicker với 2 gạch ngang dạng "─── KICKER ───" — đặc trưng trang Trung Chính */
.tc-kicker {
display: inline-flex; align-items: center; gap: 14px;
color: #0E73BA; font-size: 13px; font-weight: 600; letter-spacing: .12em; text-transform: uppercase;
}
.tc-kicker::before, .tc-kicker::after {
content: ''; width: 28px; height: 2px; background: #0E73BA;
}
.tc-kicker.light { color: rgba(255,255,255,.85); }
.tc-kicker.light::before, .tc-kicker.light::after { background: rgba(255,255,255,.85); }
/* Hero title — 2 dòng cách rời, dòng 2 thu nhỏ vừa 1 dòng */
.tc-h1 {
font-size: 50px; line-height: 1.08; font-weight: 300; letter-spacing: -.015em;
display: flex; flex-direction: column; gap: 13px;
}
.tc-h1 .l1 { display: block; }
.tc-h1 .l2 {
display: block; font-weight: 700; font-size: .78em; line-height: 1.15;
white-space: nowrap; letter-spacing: -.01em;
}
.tc-h1 strong { font-weight: 700; }
@media (min-width: 1280px) { .tc-h1 { font-size: 56px; gap: 16px; } }
@media (max-width: 768px)  { .tc-h1 { font-size: 36px; gap: 10px; } .tc-h1 .l2 { white-space: normal; } }
.tc-h2 { font-size: 40px; line-height: 1.15; font-weight: 700; color: #001128; letter-spacing: -.01em; }
@media (max-width: 768px) { .tc-h2 { font-size: 28px; } }
.tc-h2 .accent { color: #0E73BA; }
/* Blue triangle accent (top-left của intro mosaic) */
.tc-triangle::before {
content:''; position:absolute; top:0; left:0; width: 0; height: 0;
border-left: 0 solid transparent; border-right: 180px solid transparent; border-top: 180px solid #0E73BA;
opacity: .92; z-index: 1;
}
.tc-triangle-sm::before {
border-right-width: 96px; border-top-width: 96px;
}
/* Stat block với badge corner cut */
.tc-stat {
position: relative; background: #0E73BA; color: #fff; padding: 22px 22px 22px 22px;
overflow: hidden;
}
.tc-stat::after {
content:''; position:absolute; top:0; right:0; width: 0; height: 0;
border-bottom: 22px solid transparent; border-right: 22px solid #fff;
}
.tc-stat .num { font-size: 36px; font-weight: 800; line-height: 1; }
.tc-stat .lbl { font-size: 14px; opacity: .9; margin-top: 6px; }
/* Pill */
.pill { display: inline-flex; align-items: center; gap: 6px; padding: 4px 10px; border-radius: 999px; font-size: 12px; font-weight: 600; letter-spacing: .02em; }
.pill-urgent { background: rgba(230,86,64,.12); color: #e65640; }
.pill-intern { background: rgba(14,115,186,.10); color: #0E73BA; }
.pill-tag { background: #f5f7fa; color: #0d1b2a; border: 1px solid #e2e6ec; }
.pill-perk { background: rgba(25,191,106,.12); color: #13a25a; }
/* Filter pill */
.filter-pill { display:inline-flex; align-items:center; gap:6px; padding: 10px 16px; border-radius: 999px; font-size: 14px; font-weight: 500; transition: all .15s; border: 1px solid #e2e6ec; background: #fff; color: #0d1b2a; white-space: nowrap; cursor: pointer; }
.filter-pill:hover { border-color: #0E73BA; color: #0E73BA; }
.filter-pill.active { background: #001128; color: #fff; border-color: #001128; }
.filter-pill.active.green { background: #19bf6a; border-color: #19bf6a; }
.filter-pill.green:hover { border-color:#19bf6a; color:#13a25a; }
/* Tab nav (style giống parent: gạch dưới active) */
.tab-link {
display: inline-block; padding: 10px 4px; font-weight: 600; color: #5f6b7a;
border-bottom: 2px solid transparent; transition: color .15s, border-color .15s; cursor: pointer;
margin-right: 28px; white-space: nowrap;
}
.tab-link:hover { color: #0E73BA; }
.tab-link.active { color: #001128; border-bottom-color: #0E73BA; }
/* Image card với overlay caption + arrow icon ở góc dưới phải (style parent) */
.img-card { position: relative; overflow: hidden; border-radius: 0; display: block; }
.img-card img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s ease; }
.img-card:hover img { transform: scale(1.04); }
.img-card .img-overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(10,37,64,.92) 0%, rgba(10,37,64,.15) 60%, transparent 100%); }
.img-card .img-arrow { position: absolute; bottom: 16px; right: 16px; width: 36px; height: 36px; border-radius: 999px; background: rgba(255,255,255,.18); border: 1px solid rgba(255,255,255,.35); backdrop-filter: blur(8px); display: flex; align-items: center; justify-content: center; color: #fff; transition: background .2s; }
.img-card:hover .img-arrow { background: #0E73BA; border-color: #0E73BA; }
/* Job card hover — nâng lên + đổ bóng + viền xanh */
.job-card { transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease; position: relative; overflow: hidden; }
.job-card::after { content:''; position: absolute; inset: 0; background: linear-gradient(135deg, rgba(14,115,186,0) 0%, rgba(14,115,186,0) 60%, rgba(14,115,186,.06) 100%); opacity: 0; transition: opacity .3s; pointer-events: none; }
.job-card:hover { transform: translateY(-5px); box-shadow: 0 22px 44px rgba(0,0,0,0.12), 0 6px 14px rgba(14,115,186,.08); border-color: #0E73BA; }
.job-card:hover::after { opacity: 1; }
.job-card.green:hover { border-color: #19bf6a; box-shadow: 0 22px 44px rgba(0,0,0,0.12), 0 6px 14px rgba(25,191,106,.10); }
/* Phone-tile button */
.btn-call { display:flex; align-items:center; justify-content:center; gap:8px; padding: 14px 16px; border-radius: 0; font-weight: 700; font-size: 16px; transition: all .2s; position: relative; overflow: hidden; }
.btn-call:hover { transform: translateY(-2px); }
/* Accordion */
.accordion-content { max-height: 0; overflow: hidden; transition: max-height .4s ease; }
.accordion-item.open .accordion-content { max-height: 800px; }
.accordion-item.open .accordion-chevron { transform: rotate(45deg); }
.accordion-chevron { transition: transform .3s ease; }
.accordion-item { transition: border-color .2s ease, box-shadow .25s ease, transform .25s ease; }
.accordion-item:hover { border-color: #c7ced8; }
.accordion-item.open { box-shadow: 0 10px 28px rgba(14,115,186,.10); transform: translateY(-1px); }
.accordion-item.green-accent.open { box-shadow: 0 10px 28px rgba(25,191,106,.12); border-color: rgba(25,191,106,.35); }
.accordion-item.green-accent .accordion-chevron { color: #13a25a !important; }
/* Sticky filter */
.sticky-filter { position: sticky; top: 0; z-index: 30; }
/* Hide scrollbar utility */
.no-scrollbar::-webkit-scrollbar { display: none; }
.no-scrollbar { -ms-overflow-style: none; scrollbar-width: none; }
/* Testimonials carousel */
.testi-nav-btn{
width:36px;height:36px;border-radius:9999px;border:1px solid #c7ced8;
background:#fff;color:#0a2540;display:inline-flex;align-items:center;justify-content:center;
cursor:pointer;transition:all .2s ease;
}
.testi-nav-btn:hover{ background:#0E73BA;color:#fff;border-color:#0E73BA;box-shadow:0 6px 18px rgba(14,115,186,.25); }
.testi-nav-btn:disabled{ opacity:.35;cursor:not-allowed; }
.testi-nav-btn:disabled:hover{ background:#fff;color:#0a2540;border-color:#c7ced8;box-shadow:none; }
#testimonials-grid{ cursor:grab; scroll-snap-type: x mandatory; }
#testimonials-grid.dragging{ cursor:grabbing; scroll-behavior:auto; }
#testimonials-grid.dragging *{ user-select:none; pointer-events:none; }
.testi-dot{ width:6px;height:6px;border-radius:9999px;background:#c7ced8;transition:all .25s ease;cursor:pointer;border:0;padding:0; }
.testi-dot.active{ width:22px;background:#0E73BA; }
/* Stat block hover */
.tc-stat { transition: transform .3s ease, box-shadow .3s ease; }
.tc-stat:hover { transform: translateY(-3px) scale(1.02); box-shadow: 0 16px 32px rgba(14,115,186,.25); }
/* Filter pill smoothness */
.filter-pill { transition: all .2s ease; }
.filter-pill:hover { transform: translateY(-1px); }
/* Tab link underline animate */
.tab-link { position: relative; }
.tab-link::after { content:''; position: absolute; bottom: -2px; left: 50%; right: 50%; height: 2px; background: #0E73BA; transition: left .25s ease, right .25s ease; }
.tab-link:hover::after { left: 0; right: 0; }
.tab-link.active::after { left: 0; right: 0; }
/* EVP row icon */
.evp-row { transition: transform .25s ease; }
.evp-row:hover { transform: translateX(4px); }
.evp-row:hover .evp-icon { transform: rotate(-6deg) scale(1.08); }
.evp-row .evp-icon { transition: all .3s ease; }
/* Track toggle pill (form Ứng tuyển nhanh) */
.track-toggle { display: inline-flex; padding: 4px; background: #f5f7fa; border-radius: 999px; border: 1px solid #e2e6ec; }
.track-opt { padding: 10px 22px; border-radius: 999px; font-weight: 600; font-size: 14px; transition: all .25s ease; cursor: pointer; color: #5f6b7a; display: inline-flex; align-items: center; gap: 6px; border: 0; background: transparent; }
.track-opt.active { color: #fff; box-shadow: 0 6px 14px rgba(0,0,0,.12); transform: translateY(-1px); }
.track-opt.active.pro { background: linear-gradient(135deg,#0E73BA,#0661A1); }
.track-opt.active.ldpt { background: linear-gradient(135deg,#19bf6a,#13a25a); }
/* Benefit card hover (legacy) */
.benefit-card { padding: 22px 18px; border-radius: 0; transition: all .3s ease; cursor: default; border: 1px solid transparent; }
.benefit-card:hover { background: #fff; border-color: #e2e6ec; transform: translateY(-4px); box-shadow: 0 18px 38px rgba(0,0,0,.07); }
.benefit-card:hover .benefit-icon { transform: scale(1.1) rotate(-6deg); background: #0E73BA !important; }
.benefit-card:hover .benefit-icon .material-symbols-outlined { color: #fff !important; }
.benefit-icon { transition: all .3s ease; }
/* Bento Phúc Lợi — square corners like trungchinh.com.vn main site */
.bento-benefit { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; }
.bento-cell { position: relative; overflow: hidden; min-height: 200px; display: flex; flex-direction: column; justify-content: space-between; padding: 22px 22px; border-radius: 0; transition: transform .35s ease, box-shadow .35s ease; }
.bento-cell.tall { grid-row: span 2; min-height: 414px; }
.bento-cell.text { color: #fff; }
.bento-cell.text .b-title { font-weight: 700; font-size: 17px; line-height: 1.35; margin-bottom: 8px; }
.bento-cell.text .b-desc { font-size: 13.5px; line-height: 1.55; opacity: .92; }
.bento-cell.text .b-ico { width: 44px; height: 44px; display: flex; align-items: center; justify-content: center; background: rgba(255,255,255,.16); border-radius: 0; margin-bottom: 14px; }
.bento-cell.text .b-ico .material-symbols-outlined { color: #fff; font-size: 24px; }
.bento-cell.bg-blue { background: #1E8FC6; }
.bento-cell.bg-blue-dark { background: #0E73BA; }
.bento-cell.bg-blue-deep { background: #0a4d80; }
.bento-cell.bg-orange { background: #f08a23; }
.bento-cell.bg-navy { background: #0a2540; }
.bento-cell.img { padding: 0; background-size: cover; background-position: center; }
.bento-cell.img::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(10,37,64,0) 55%, rgba(10,37,64,.55) 100%); }
.bento-cell:hover { transform: translateY(-3px); box-shadow: 0 14px 28px rgba(10,37,64,.18); }
@media (max-width: 768px) { .bento-benefit { grid-template-columns: repeat(2, 1fr); } .bento-cell.tall { grid-row: auto; min-height: 220px; } }
/* Counting number style */
.count-num { font-variant-numeric: tabular-nums; }
/* Marquee container */
.marquee { overflow: hidden; mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent); -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent); }
.marquee-track { display: inline-flex; gap: 48px; animation: marquee 38s linear infinite; white-space: nowrap; }
.marquee:hover .marquee-track { animation-play-state: paused; }
/* Img card overlay enhance */
.img-card .img-overlay { transition: background .3s ease; }
.img-card:hover .img-overlay { background: linear-gradient(to top, rgba(0,80,140,.92) 0%, rgba(10,37,64,.30) 60%, rgba(0,0,0,.08) 100%); }
/* Loading skeleton */
.skeleton { background: linear-gradient(90deg, #f0f2f5 0%, #e6e9ee 50%, #f0f2f5 100%); background-size: 200% 100%; animation: shimmer 1.4s infinite; border-radius: 0; }
@keyframes shimmer { 0% { background-position: 200% 0; } 100% { background-position: -200% 0; } }
/* Social card brand colors */
.social-fb   { background: linear-gradient(135deg, #1877f2 0%, #0e5fd0 100%); }
.social-yt   { background: linear-gradient(135deg, #ff0000 0%, #c50000 100%); }
.social-tt   { background: linear-gradient(135deg, #25f4ee 0%, #fe2c55 100%); }
/* Form field focus animation */
.form-field { transition: transform .2s ease, box-shadow .25s ease; }
.form-field:focus-within { transform: translateY(-1px); }
/* Line clamp utility (job card descriptions) */
.line-clamp-2 { display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.line-clamp-3 { display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical; overflow: hidden; }
/* Smaller pill variant inside job cards */
.pill { padding: 3px 8px; font-size: 12px; }
/* Custom scrollbar for job lists */
#pro-jobs-grid::-webkit-scrollbar, #worker-jobs-grid::-webkit-scrollbar { width: 6px; }
#pro-jobs-grid::-webkit-scrollbar-thumb { background: #c7ced8; border-radius: 0; }
#pro-jobs-grid::-webkit-scrollbar-thumb:hover { background: #0E73BA; }
#worker-jobs-grid::-webkit-scrollbar-thumb { background: #c7ced8; border-radius: 0; }
#worker-jobs-grid::-webkit-scrollbar-thumb:hover { background: #19bf6a; }
/* ===================================================================== */
/* CINEMATIC SECTIONS — Why Us + Culture                                  */
/* ===================================================================== */
/* Slow zoom for parallax-like background images */
@keyframes slowZoom { 0%,100% { transform: scale(1.05); } 50% { transform: scale(1.15); } }
.anim-slow-zoom { animation: slowZoom 22s ease-in-out infinite; }
/* Dotted pattern background (very subtle) */
.bg-dots {
background-image: radial-gradient(rgba(0,17,40,.08) 1px, transparent 1px);
background-size: 24px 24px;
}
.bg-dots-light {
background-image: radial-gradient(rgba(255,255,255,.10) 1px, transparent 1px);
background-size: 28px 28px;
}
/* Diagonal stripe pattern */
.bg-stripes-soft {
background-image: repeating-linear-gradient(135deg, rgba(14,115,186,.04) 0 2px, transparent 2px 14px);
}
/* WHY-CARD: each reason rendered as image card with overlay */
.why-card {
position: relative; overflow: hidden; border-radius: 0;
background: #0a2540; isolation: isolate;
transition: transform .4s ease, box-shadow .4s ease;
}
.why-card .bg-img {
position: absolute; inset: 0;
background-size: cover; background-position: center;
transform: scale(1.05); transition: transform 1.2s ease, filter .4s ease;
filter: saturate(1.05) brightness(.85);
}
.why-card .bg-overlay {
position: absolute; inset: 0;
background: linear-gradient(180deg, rgba(0,17,40,.40) 0%, rgba(0,17,40,.65) 55%, rgba(0,17,40,.95) 100%);
transition: background .4s ease;
}
.why-card:hover { transform: translateY(-6px); box-shadow: 0 28px 60px rgba(0,17,40,.30); }
.why-card:hover .bg-img { transform: scale(1.15); filter: saturate(1.15) brightness(.92); }
.why-card:hover .bg-overlay {
background: linear-gradient(180deg, rgba(14,115,186,.30) 0%, rgba(0,17,40,.55) 55%, rgba(0,17,40,.95) 100%);
}
.why-card .why-content { position: relative; z-index: 2; }
.why-card .why-icon {
width: 42px; height: 42px; border-radius: 0;
background: linear-gradient(135deg, rgba(255,255,255,.18), rgba(255,255,255,.05));
backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px);
border: 1px solid rgba(255,255,255,.22);
display: flex; align-items: center; justify-content: center;
transition: transform .35s ease, background .35s ease, border-color .35s ease;
}
.why-card .why-icon .material-symbols-outlined { font-size: 22px !important; }
.why-card:hover .why-icon {
transform: rotate(-8deg) scale(1.08);
background: linear-gradient(135deg, #0E73BA, #1e8fc6);
border-color: rgba(255,255,255,.4);
}
.why-card .why-num {
position: absolute; top: 14px; right: 16px; z-index: 2;
font-size: 48px; font-weight: 900; line-height: 1; letter-spacing: -.04em;
color: rgba(255,255,255,.08); -webkit-text-stroke: 1px rgba(255,255,255,.22);
transition: color .4s ease, -webkit-text-stroke .4s ease;
}
.why-card:hover .why-num { color: rgba(30,143,198,.18); -webkit-text-stroke: 1px rgba(30,143,198,.45); }
/* CINEMATIC STAT BLOCK */
.stat-cine {
position: relative; padding: 28px 26px; border-radius: 0; overflow: hidden;
background: linear-gradient(135deg, #0E73BA 0%, #0661A1 100%); color: #fff;
transition: transform .35s ease, box-shadow .35s ease;
}
.stat-cine::before {
content: ''; position: absolute; inset: 0;
background: radial-gradient(at 20% 0%, rgba(255,255,255,.18) 0px, transparent 50%);
pointer-events: none;
}
.stat-cine::after {
content: ''; position: absolute; right: -20px; bottom: -20px; width: 110px; height: 110px;
border-radius: 50%; background: rgba(255,255,255,.06); pointer-events: none;
}
.stat-cine:hover { transform: translateY(-5px); box-shadow: 0 22px 50px rgba(14,115,186,.35); }
.stat-cine .num { font-size: 44px; font-weight: 900; line-height: 1; letter-spacing: -.02em; }
.stat-cine .lbl { font-size: 13px; opacity: .85; text-transform: uppercase; letter-spacing: .12em; margin-top: 8px; font-weight: 600; }
.stat-cine.green { background: linear-gradient(135deg, #19bf6a 0%, #13a25a 100%); }
.stat-cine.dark  { background: linear-gradient(135deg, #1E8FC6 0%, #0E73BA 100%); }
/* Compact variant — gọn hơn cho stat strip */
.stat-cine.compact { padding: 18px 18px; border-radius: 0; }
.stat-cine.compact .num { font-size: 32px; }
.stat-cine.compact .lbl { font-size: 12px; margin-top: 4px; letter-spacing: .08em; }
@media (min-width: 768px) { .stat-cine.compact { padding: 20px 22px; } .stat-cine.compact .num { font-size: 36px; } }
/* PARALLAX FULL-BLEED STRIP */
.parallax-strip {
position: relative; height: 480px; overflow: hidden;
background-attachment: fixed; background-size: cover; background-position: center;
}
@media (max-width: 1024px) {
.parallax-strip { background-attachment: scroll; height: 380px; }
}
.parallax-strip .strip-overlay {
position: absolute; inset: 0;
background:
linear-gradient(180deg, rgba(0,17,40,.20) 0%, rgba(0,17,40,.45) 50%, rgba(0,17,40,.75) 100%),
radial-gradient(at 30% 60%, rgba(14,115,186,.35) 0px, transparent 55%);
}
/* VALUE-CARD: 4 giá trị cốt lõi với ảnh nền */
.value-card {
position: relative; overflow: hidden; border-radius: 0;
aspect-ratio: 3/4; min-height: 380px;
isolation: isolate;
transition: transform .45s cubic-bezier(.2,.7,.2,1), box-shadow .45s ease;
}
.value-card .bg-img {
position: absolute; inset: 0;
background-size: cover; background-position: center;
transform: scale(1.06); transition: transform 1.4s cubic-bezier(.2,.7,.2,1), filter .6s ease;
filter: saturate(1.1) brightness(.78);
}
.value-card .bg-overlay {
position: absolute; inset: 0;
background: linear-gradient(180deg, rgba(0,17,40,.20) 0%, rgba(0,17,40,.55) 50%, rgba(0,17,40,.94) 100%);
transition: background .5s ease;
}
.value-card:hover { transform: translateY(-10px); box-shadow: 0 36px 70px rgba(0,17,40,.40); }
.value-card:hover .bg-img { transform: scale(1.18); filter: saturate(1.25) brightness(.88); }
.value-card:hover .bg-overlay {
background: linear-gradient(180deg, rgba(14,115,186,.25) 0%, rgba(0,17,40,.55) 50%, rgba(0,17,40,.95) 100%);
}
.value-card .v-inner { position: relative; z-index: 2; height: 100%; display: flex; flex-direction: column; justify-content: flex-end; padding: 28px; color: #fff; }
.value-card .v-icon {
width: 60px; height: 60px; border-radius: 0;
background: linear-gradient(135deg, rgba(255,255,255,.22), rgba(255,255,255,.06));
backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px);
border: 1px solid rgba(255,255,255,.30);
display: flex; align-items: center; justify-content: center; margin-bottom: 18px;
transition: transform .4s ease, background .4s ease;
}
.value-card:hover .v-icon { transform: rotate(-10deg) scale(1.1); background: linear-gradient(135deg, #1e8fc6, #0E73BA); }
.value-card .v-title { font-size: 26px; font-weight: 800; letter-spacing: -.01em; line-height: 1.15; margin-bottom: 8px; }
.value-card .v-desc { font-size: 14px; line-height: 1.55; color: rgba(255,255,255,.85); }
.value-card .v-tag {
position: absolute; top: 22px; left: 22px; z-index: 3;
display: inline-flex; align-items: center; gap: 6px;
padding: 6px 12px; border-radius: 999px;
background: rgba(255,255,255,.14); backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px);
border: 1px solid rgba(255,255,255,.22);
color: #fff; font-size: 12px; font-weight: 700; letter-spacing: .16em; text-transform: uppercase;
}
@media (max-width: 640px) {
.value-card { aspect-ratio: auto; min-height: 220px; border-radius: 0; }
.value-card .v-inner { padding: 18px; }
.value-card .v-icon { width: 44px; height: 44px; border-radius: 0; margin-bottom: 10px; }
.value-card .v-icon .material-symbols-outlined { font-size: 22px !important; }
.value-card .v-title { font-size: 19px; margin-bottom: 6px; }
.value-card .v-desc { font-size: 13px; line-height: 1.5; }
.value-card .v-tag { top: 14px; left: 14px; padding: 4px 9px; font-size: 10px; letter-spacing: .12em; }
.value-card:hover { transform: none; box-shadow: 0 12px 28px rgba(0,17,40,.22); }
}
/* SECTION HEADER CINEMATIC — kicker + title centered with decorative lines */
.sec-head-cine .deco-line {
display: inline-block; height: 1px; width: 60px;
background: linear-gradient(90deg, transparent, #0E73BA);
vertical-align: middle;
}
.sec-head-cine .deco-line.r { background: linear-gradient(90deg, #0E73BA, transparent); }
/* ===== PATCH D — Mobile overflow & responsive safety net ===== */
html, body { max-width: 100vw; }
img, video, iframe, svg { max-width: 100%; height: auto; }
/* ===== Hero intro logo — paired with description ===== */
.hero-intro {
display: flex; align-items: center; gap: 18px;
max-width: 640px; margin-bottom: 36px;
}
.hero-intro-text { color: rgba(255,255,255,.88); font-size: 16.5px; line-height: 1.6; }
.hero-intro-text strong { color: #fff; font-weight: 700; }
@media (max-width: 640px) {
.hero-intro-text { font-size: 15px; }
}
/* ===== Job tabs ===== */
.job-tabs {
display: grid; grid-template-columns: 1fr 1fr; gap: 10px;
background: #fff; border: 1px solid #e5ebf2; border-radius: 0;
padding: 6px; box-shadow: 0 6px 22px rgba(10,37,64,.06);
max-width: 760px; margin-left: auto; margin-right: auto;
}
.job-tab {
display: inline-flex; align-items: center; gap: 10px;
padding: 10px 14px; border-radius: 0; background: transparent;
color: #4a5568; cursor: pointer; border: 0; text-align: left;
transition: background .2s ease, color .2s ease, box-shadow .2s ease;
width: 100%;
}
.job-tab:hover { background: #f3f7fb; color: #0a2540; }
.job-tab.active {
background: linear-gradient(135deg, #0E73BA, #1E8FC6);
color: #fff; box-shadow: 0 8px 22px rgba(14,115,186,.30);
}
.job-tab[data-jtab="worker"].active {
background: linear-gradient(135deg, #19BF6A, #15a05a);
box-shadow: 0 8px 22px rgba(25,191,106,.30);
}
.job-tab .job-tab-label { display: flex; flex-direction: column; line-height: 1.15; flex: 1; min-width: 0; }
.job-tab .job-tab-title { font-weight: 700; font-size: 14px; }
.job-tab .job-tab-sub { font-size: 12px; opacity: .75; margin-top: 2px; }
.job-tab.active .job-tab-sub { opacity: .9; color: rgba(255,255,255,.85); }
.job-tab .job-tab-count {
background: rgba(14,115,186,.1); color: #0E73BA; font-weight: 700; font-size: 12px;
padding: 4px 10px; border-radius: 999px; min-width: 32px; text-align: center;
transition: background .2s ease, color .2s ease;
}
.job-tab .job-tab-count.green { background: rgba(25,191,106,.12); color: #15a05a; }
.job-tab.active .job-tab-count { background: rgba(255,255,255,.22); color: #fff; }
.job-panel { display: none; }
.job-panel.active { display: block; animation: jp-fade .3s ease; }
@keyframes jp-fade { from { opacity: 0; transform: translateY(6px); } to { opacity: 1; transform: none; } }
@media (max-width: 600px) {
.job-tabs { grid-template-columns: 1fr; }
.job-tab { padding: 9px 12px; }
.job-tab .job-tab-title { font-size: 13px; }
.job-tab .job-tab-sub { font-size: 12px; }
}
/* compensate scroll spacing */
section[id] { scroll-margin-top: 24px; }
pre, code { white-space: pre-wrap; word-break: break-word; }
@media (max-width: 640px) {
.tc-h1, .tc-h2 { word-break: break-word; overflow-wrap: anywhere; hyphens: auto; }
/* Force single column for any 2/3/4-col grids that still try to fit < 640px */
.force-1col-sm { grid-template-columns: 1fr !important; }
}
@media (max-width: 400px) {
.tc-h1 { font-size: 30px !important; }
.tc-h2 { font-size: 24px !important; }
}
/* Long words / emails / URLs never push viewport */
a, p, li, span, div { overflow-wrap: anywhere; }
/* But preserve tabular numerics */
.count-num, .num { overflow-wrap: normal; }
/* === SQUARE LAYOUT — đồng bộ phong cách trungchinh.com.vn nhưng cho phép bo nhẹ trên element nhỏ === */
/* Thẻ/khối lớn: vuông tuyệt đối */
.bento-cell, .value-card, .vacancy-card, .testimonial-card, .img-card, .stat-cine,
.press-card, .voice-card, .culture-tile, .ld-track, .pro-track, .track-opt,
.benefit-card, .core-card, [class*="bg-img"], section > div > .grid > div { border-radius: 0 !important; }
/* Input/button: bo nhẹ 4px cho mềm hơn */
input, select, textarea { border-radius: 0 !important; }
button:not(.keep-square), .btn, a.btn, [role="button"]:not(.keep-square) { border-radius: 0 !important; }
/* Pill-shaped giữ tròn */
.keep-round, .keep-round *, .anim-blob, [class*="blur-3xl"], [class*="blur-2xl"], [class*="rounded-full"] { border-radius: 9999px !important; }
/* Icon vuông cho icon trong các card vuông */
.bento-cell .b-ico, .value-card .v-icon { border-radius: 0 !important; }
/* Bento full-bleed: chạm cạnh */
.bento-benefit { gap: 0 !important; }
/* Value-card full-bleed: chạm cạnh nhưng vẫn có nhịp */
#van-hoa .value-card { border-radius: 0 !important; }

/* === block from index.html L696-740 === */
/* ===== Nav transparent-at-top → white-on-scroll (giống site mẹ) ===== */
    #tc-header .logo-color { display: none; }
    #tc-header .logo-mono  { display: block; }
    #tc-header.is-scrolled .logo-color { display: block; }
    #tc-header.is-scrolled .logo-mono  { display: none; }

    /* Main nav background */
    #tc-mainnav {
      background: rgba(0, 17, 40, 0.28);
      border-bottom: 1px solid rgba(255,255,255,.10);
      backdrop-filter: blur(14px) saturate(140%);
      -webkit-backdrop-filter: blur(14px) saturate(140%);
      transition: background-color .25s ease, border-color .25s ease, box-shadow .25s ease;
    }
    #tc-header.is-scrolled #tc-mainnav {
      background: rgba(255,255,255,0.96);
      border-bottom-color: #E5EBF2;
      box-shadow: 0 4px 18px -10px rgba(0,17,40,.18);
    }

    /* Text color swap */
    #tc-header .nav-item,
    #tc-header .nav-logo-text,
    #tc-header .nav-logo-sub,
    #tc-header .nav-back-link,
    #tc-header .nav-search,
    #tc-header .nav-burger span { transition: color .25s ease, background-color .25s ease, border-color .25s ease; }

    #tc-header .nav-item           { color: #ffffff; }
    #tc-header .nav-logo-text      { color: #ffffff; }
    #tc-header .nav-logo-sub       { color: rgba(255,255,255,.85); }
    #tc-header .nav-back-link      { color: rgba(255,255,255,.85); }
    #tc-header .nav-search         { color: #ffffff; border-color: rgba(255,255,255,.55); background: rgba(255,255,255,.08); }
    #tc-header .nav-search:hover   { background: rgba(255,255,255,.18); border-color: #ffffff; }
    #tc-header .nav-burger span    { background-color: #ffffff !important; }

    #tc-header.is-scrolled .nav-item       { color: #111F2E; }
    #tc-header.is-scrolled .nav-logo-text  { color: #001128; }
    #tc-header.is-scrolled .nav-logo-sub   { color: #0E73BA; }
    #tc-header.is-scrolled .nav-back-link  { color: #5f6b7a; }
    #tc-header.is-scrolled .nav-search     { color: #111F2E; border-color: #D2D8DE; background: transparent; }
    #tc-header.is-scrolled .nav-search:hover { background:#F4F9FF; border-color:#0E73BA; }
    #tc-header.is-scrolled .nav-burger span { background-color: #001128 !important; }

/* === block from index.html L904-904 === */
@keyframes kenburns { from { transform: scale(1.05); } to { transform: scale(1.18) translate(-2%, -1%); } }

/* === block from index.html L1866-1868 === */
#faq .accordion-item.green-accent .accordion-chevron { color: #13a25a !important; }

/* === block from index.html L1926-2130 === */
#ung-tuyen-nhanh .tc-kicker.light { color:#0E73BA; }
#ung-tuyen-nhanh .tc-kicker.light::before, #ung-tuyen-nhanh .tc-kicker.light::after { background:#0E73BA; }
/* Form animation when track changes */
.track-panel { display: none; animation: fadeUp .35s ease both; }
.track-panel.active { display: block; }
/* Light contact tile — thay thế glass trên nền sáng */
#ung-tuyen-nhanh .contact-tile {
background:#ffffff; border:1px solid #e5e7eb;
box-shadow: 0 1px 3px rgba(0,0,0,0.06), 0 1px 2px rgba(0,0,0,0.04);
transition: box-shadow .2s ease, border-color .2s ease, transform .2s ease;
}
#ung-tuyen-nhanh .contact-tile:hover {
box-shadow: 0 10px 25px rgba(14,115,186,0.08);
border-color: rgba(14,115,186,0.30);
transform: translateY(-1px);
}
#ung-tuyen-nhanh .stat-tile {
background:#ffffff; border:1px solid #e5e7eb;
box-shadow: 0 1px 3px rgba(0,0,0,0.06);
}
/* ===== Form Card — refined elegant version ===== */
#ung-tuyen-nhanh .form-card {
background: #ffffff;
border: 1px solid #eef1f5;
border-radius: 0;
box-shadow: 0 1px 2px rgba(15,23,42,.04), 0 12px 40px -12px rgba(15,23,42,.10);
padding: 32px 32px 30px;
position: relative;
overflow: hidden;
}
#ung-tuyen-nhanh .form-card::before {
content: ""; position: absolute; top: 0; left: 0; right: 0; height: 4px;
background: linear-gradient(90deg, #0E73BA 0%, #00a3e0 50%, #f59e0b 100%);
border-radius: 0;
}
@media (max-width: 640px) {
#ung-tuyen-nhanh .form-card { padding: 24px 20px; border-radius: 0; }
}
/* Form header */
#ung-tuyen-nhanh .form-card h3 {
font-size: 24px; font-weight: 800; color: #0f172a; letter-spacing: -.01em;
}
#ung-tuyen-nhanh .form-card .form-sub {
color: #64748b; font-size: 13.5px; margin-top: 6px; line-height: 1.55;
}
#ung-tuyen-nhanh .form-badge {
display: inline-flex; align-items: center; gap: 5px;
font-size: 12px; font-weight: 700; letter-spacing: .8px;
color: #047857; background: rgba(16,185,129,.10);
padding: 6px 10px; border-radius: 999px;
border: 1px solid rgba(16,185,129,.22);
white-space: nowrap;
}
/* Step indicator */
#ung-tuyen-nhanh .step-meter {
display: flex; align-items: center; gap: 10px;
margin-top: 18px; padding-top: 18px; border-top: 1px dashed #e2e8f0;
}
#ung-tuyen-nhanh .step-meter .dot {
width: 6px; height: 6px; border-radius: 50%; background: #cbd5e1;
}
#ung-tuyen-nhanh .step-meter .dot.on { background: #0E73BA; box-shadow: 0 0 0 4px rgba(14,115,186,.12); }
#ung-tuyen-nhanh .step-meter .lbl { font-size: 12px; color: #64748b; letter-spacing: .4px; }
#ung-tuyen-nhanh .step-meter .lbl strong { color: #0f172a; font-weight: 600; }
/* Track toggle override — elegant pill */
#ung-tuyen-nhanh .track-toggle {
display: inline-flex; gap: 6px; padding: 5px;
background: #f1f5f9; border-radius: 0;
width: 100%;
}
#ung-tuyen-nhanh .track-opt {
flex: 1; display: inline-flex; align-items: center; justify-content: center; gap: 7px;
padding: 10px 14px; border-radius: 0;
font-size: 13.5px; font-weight: 600; color: #475569;
background: transparent; border: none; cursor: pointer;
transition: all .2s ease;
}
#ung-tuyen-nhanh .track-opt:hover { color: #0f172a; }
#ung-tuyen-nhanh .track-opt.active.pro {
background: #ffffff; color: #0E73BA;
box-shadow: 0 1px 2px rgba(15,23,42,.06), 0 2px 6px rgba(14,115,186,.10);
}
#ung-tuyen-nhanh .track-opt.active.ldpt {
background: #ffffff; color: #b45309;
box-shadow: 0 1px 2px rgba(15,23,42,.06), 0 2px 6px rgba(245,158,11,.12);
}
/* Inputs */
#ung-tuyen-nhanh .form-field label.field-label {
display: block; font-size: 12.5px; font-weight: 600; color: #334155;
margin-bottom: 7px; letter-spacing: .1px;
}
#ung-tuyen-nhanh .form-card input[type="text"],
#ung-tuyen-nhanh .form-card input[type="tel"],
#ung-tuyen-nhanh .form-card input[type="email"],
#ung-tuyen-nhanh .form-card select {
width: 100%;
padding: 11px 14px;
font-size: 14px; color: #0f172a;
background: #fafbfc;
border: 1px solid #e2e8f0;
border-radius: 0;
transition: all .18s ease;
}
#ung-tuyen-nhanh .form-card input::placeholder { color: #94a3b8; }
#ung-tuyen-nhanh .form-card input:hover,
#ung-tuyen-nhanh .form-card select:hover { border-color: #cbd5e1; background: #fff; }
#ung-tuyen-nhanh .form-card input:focus,
#ung-tuyen-nhanh .form-card select:focus {
outline: none;
background: #ffffff;
border-color: #0E73BA;
box-shadow: 0 0 0 4px rgba(14,115,186,.10);
}
#ung-tuyen-nhanh .form-card .req { color: #ef4444; font-weight: 700; }
/* CV upload */
#ung-tuyen-nhanh .cv-drop {
border: 1.5px dashed #cbd5e1; border-radius: 0;
padding: 22px 18px; text-align: center;
background: #fafbfc; cursor: pointer;
transition: all .2s ease;
}
#ung-tuyen-nhanh .cv-drop:hover { border-color: #0E73BA; background: #f0f7fc; }
#ung-tuyen-nhanh .cv-drop .cv-ic {
width: 40px; height: 40px; margin: 0 auto 8px;
border-radius: 0; background: rgba(14,115,186,.10);
display: inline-flex; align-items: center; justify-content: center;
color: #0E73BA;
}
#ung-tuyen-nhanh .cv-drop .cv-main { font-size: 13.5px; color: #334155; font-weight: 500; }
#ung-tuyen-nhanh .cv-drop .cv-sub { font-size: 12px; color: #94a3b8; margin-top: 4px; }
/* Salary chips */
#ung-tuyen-nhanh .salary-chips { display: flex; flex-wrap: wrap; gap: 7px; }
#ung-tuyen-nhanh .salary-chips label { cursor: pointer; }
#ung-tuyen-nhanh .salary-chips .chip {
display: inline-flex; align-items: center;
padding: 7px 14px; border-radius: 999px;
background: #ffffff; border: 1px solid #e2e8f0;
font-size: 13px; font-weight: 600; color: #475569;
transition: all .18s ease;
}
#ung-tuyen-nhanh .salary-chips label:hover .chip { border-color: #cbd5e1; color: #0f172a; }
#ung-tuyen-nhanh .salary-chips input:checked + .chip {
background: #f59e0b; color: #fff; border-color: #f59e0b;
box-shadow: 0 4px 12px rgba(245,158,11,.30);
}
/* Tip box */
#ung-tuyen-nhanh .tip-box {
background: linear-gradient(135deg, rgba(245,158,11,.06), rgba(245,158,11,.02));
border: 1px solid rgba(245,158,11,.20);
border-radius: 0;
padding: 14px 16px;
display: flex; gap: 12px; align-items: flex-start;
}
#ung-tuyen-nhanh .tip-box .tip-ic {
width: 32px; height: 32px; flex: 0 0 32px;
border-radius: 0; background: rgba(245,158,11,.15);
display: inline-flex; align-items: center; justify-content: center;
color: #b45309;
}
#ung-tuyen-nhanh .tip-box .tip-txt { font-size: 13px; color: #475569; line-height: 1.55; }
#ung-tuyen-nhanh .tip-box .tip-txt strong { color: #b45309; }
/* Consent */
#ung-tuyen-nhanh .consent-row {
display: flex; align-items: flex-start; gap: 10px;
padding: 12px 14px; background: #f8fafc; border-radius: 0;
border: 1px solid #eef1f5;
}
#ung-tuyen-nhanh .consent-row input[type="checkbox"] {
width: 16px; height: 16px; margin-top: 2px; accent-color: #0E73BA; flex-shrink: 0;
}
#ung-tuyen-nhanh .consent-row label { font-size: 12px; color: #475569; line-height: 1.55; cursor: pointer; }
#ung-tuyen-nhanh .consent-row .nd13-link {
color: #0E73BA; font-weight: 600; text-decoration: underline; text-underline-offset: 2px;
background: none; border: none; padding: 0; cursor: pointer;
}
#ung-tuyen-nhanh .consent-row .nd13-link:hover { color: #0661A1; }
/* Submit button */
#ung-tuyen-nhanh .submit-btn {
width: 100%; padding: 14px 20px;
background: linear-gradient(135deg, #0E73BA 0%, #0080d4 100%);
color: #fff; font-weight: 700; font-size: 15px;
border: none; border-radius: 0;
display: inline-flex; align-items: center; justify-content: center; gap: 8px;
box-shadow: 0 6px 18px -4px rgba(14,115,186,.45), inset 0 1px 0 rgba(255,255,255,.18);
cursor: pointer; transition: all .2s ease;
letter-spacing: .2px;
}
#ung-tuyen-nhanh .submit-btn:hover {
transform: translateY(-1px);
box-shadow: 0 10px 26px -6px rgba(14,115,186,.55), inset 0 1px 0 rgba(255,255,255,.22);
}
#ung-tuyen-nhanh .submit-btn:active { transform: translateY(0); }
/* Form footer */
#ung-tuyen-nhanh .form-foot {
display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between;
gap: 10px; padding-top: 14px; border-top: 1px solid #eef1f5;
font-size: 12px; color: #64748b;
}
#ung-tuyen-nhanh .form-foot .secure-pill {
display: inline-flex; align-items: center; gap: 5px;
color: #047857; font-weight: 600;
}
#ung-tuyen-nhanh .form-foot a { color: #0E73BA; font-weight: 700; }

/* === block from index.html L3075-3181 === */
.tc-modal { padding: 0; border: 0; background: transparent; max-width: 100vw; max-height: 100vh; }
.tc-modal::backdrop { background: rgba(0, 17, 40, 0.55); backdrop-filter: blur(4px); }
.tc-modal[open] { display: flex; align-items: flex-start; justify-content: center; }
.tc-modal-card { background: #fff; max-width: 760px; width: calc(100vw - 32px); max-height: calc(100vh - 48px); overflow-y: auto; border-radius: 0; box-shadow: 0 30px 80px rgba(0,17,40,.35); position: relative; margin: 24px 16px; animation: modalIn .35s cubic-bezier(.16,1,.3,1); }
@keyframes modalIn { from { opacity: 0; transform: translateY(20px) scale(.97); } to { opacity: 1; transform: translateY(0) scale(1); } }
.tc-modal-close { position: absolute; top: 14px; right: 14px; width: 40px; height: 40px; border-radius: 999px; background: rgba(255,255,255,.92); border: 1px solid #e2e6ec; display: inline-flex; align-items: center; justify-content: center; cursor: pointer; z-index: 2; transition: background .2s, transform .2s; }
.tc-modal-close:hover { background: #fff; transform: rotate(90deg); }
.tc-modal-img { width: 100%; aspect-ratio: 16/9; object-fit: cover; display: block; border-radius: 0; }
.tc-modal-body { padding: 28px 28px 24px; }
@media (max-width: 640px) { .tc-modal-body { padding: 22px 18px 18px; } .tc-modal-card { margin: 12px 8px; } }
/* ===== Enriched Job modal ===== */
.job-modal-card { max-width: 860px; }
.job-modal-hero {
position: relative; padding: 28px 32px 26px;
background: linear-gradient(135deg, #0A2540 0%, #0E73BA 60%, #1E8FC6 100%);
color: #fff; overflow: hidden;
}
.job-modal-hero.green {
background: linear-gradient(135deg, #0A2540 0%, #15a05a 55%, #19BF6A 100%);
}
.job-modal-hero-overlay {
position: absolute; inset: 0; pointer-events: none; opacity: .35;
background:
radial-gradient(at 14% 28%, rgba(255,255,255,.25) 0px, transparent 38%),
radial-gradient(at 86% 12%, rgba(255,255,255,.15) 0px, transparent 32%),
radial-gradient(at 78% 92%, rgba(255,255,255,.18) 0px, transparent 40%);
}
.job-modal-hero-body { position: relative; z-index: 1; }
.job-modal-title { font-weight: 800; font-size: 26px; line-height: 1.2; margin-bottom: 8px; }
.job-modal-subtitle { color: rgba(255,255,255,.85); font-size: 14px; display: flex; flex-wrap: wrap; gap: 14px 18px; }
.job-modal-subtitle .item { display: inline-flex; align-items: center; gap: 6px; }
.job-modal-subtitle .material-symbols-outlined { font-size: 18px; opacity: .9; }
.job-modal-body { padding: 22px 26px 22px !important; }
.job-stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 10px; margin-bottom: 22px; }
.job-stat {
background: #f4f9ff; border: 1px solid #e1ecf6; border-radius: 0;
padding: 12px 12px 10px; display: flex; flex-direction: column; gap: 4px; min-width: 0;
}
.job-stat .lbl { color: #5b6b7d; font-size: 12px; font-weight: 600; text-transform: uppercase; letter-spacing: .04em; display: inline-flex; align-items: center; gap: 4px; }
.job-stat .val { color: #0a2540; font-size: 14px; font-weight: 700; line-height: 1.25; }
.job-stat.salary { background: linear-gradient(135deg,#e6f7ee,#f4fbf6); border-color:#cdebd7; }
.job-stat.salary .val { color: #15a05a; }
.job-stat.urgent { background: linear-gradient(135deg,#fff1ed,#fff8f4); border-color:#f5cabb; }
.job-stat.urgent .val { color: #d94a32; }
@media (max-width: 640px) {
.job-modal-hero { padding: 22px 20px; }
.job-modal-title { font-size: 21px; }
.job-modal-body { padding: 18px 18px 18px !important; }
.job-stats { grid-template-columns: repeat(2, 1fr); }
}
.job-section { margin-bottom: 22px; }
.job-section-title {
display: flex; align-items: center; gap: 8px;
font-weight: 700; color: #0a2540; font-size: 15px; margin-bottom: 10px;
padding-bottom: 8px; border-bottom: 1px solid #eef2f6;
}
.job-section-body { color: #2c3e50; font-size: 14.5px; line-height: 1.65; }
.job-bullet { list-style: none; padding: 0; margin: 0; display: grid; gap: 8px; }
.job-bullet li {
position: relative; padding-left: 26px; color: #2c3e50; font-size: 14px; line-height: 1.6;
}
.job-bullet li::before {
content: ""; position: absolute; left: 4px; top: 8px; width: 8px; height: 8px;
border-radius: 0; background: linear-gradient(135deg, #0E73BA, #1E8FC6);
box-shadow: 0 0 0 3px rgba(14,115,186,.10);
}
.job-perks { display: grid; grid-template-columns: repeat(2, 1fr); gap: 8px; }
@media (max-width: 640px) { .job-perks { grid-template-columns: 1fr; } }
.job-perk {
display: flex; align-items: flex-start; gap: 10px;
background: #f5fbf7; border: 1px solid #d6ebe0; border-radius: 0;
padding: 10px 12px; color: #15602f; font-size: 13.5px; line-height: 1.5;
}
.job-perk .material-symbols-outlined { color: #19BF6A; font-size: 20px; flex-shrink: 0; margin-top: 1px; }
.job-steps {
list-style: none; padding: 0; margin: 0; display: grid; grid-template-columns: repeat(2, 1fr); gap: 10px;
counter-reset: jstep;
}
@media (max-width: 640px) { .job-steps { grid-template-columns: 1fr; } }
.job-steps li {
background: #fff; border: 1px solid #e5ebf2; border-radius: 0;
padding: 10px 12px 12px; display: flex; flex-direction: column; gap: 2px;
}
.job-steps li b { color: #0E73BA; font-size: 13px; font-weight: 700; }
.job-steps li span { color: #4a5568; font-size: 12.5px; line-height: 1.45; }
#job-modal-keywords .chip {
display: inline-flex; align-items: center; padding: 4px 10px;
background: #eef4fa; color: #0a2540; font-size: 12px; font-weight: 600;
border-radius: 999px; border: 1px solid #d8e3ee;
}
.job-modal-footer {
margin-top: 18px; padding-top: 16px; border-top: 1px solid #eef2f6;
display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 12px;
}
.job-modal-deadline {
display: inline-flex; align-items: center; gap: 8px;
background: #fff5e6; color: #b45309; border: 1px solid #fde2b8;
padding: 6px 12px; border-radius: 999px; font-size: 12.5px; font-weight: 600;
}
.job-modal-deadline.passed { background: #fde2e2; color: #b91c1c; border-color: #f5b7b7; }
.job-modal-deadline.urgent { background: #ffe9e2; color: #c0341d; border-color: #f7c1ae; }
.prose-tc p { margin-bottom: .9em; }
.prose-tc strong { color: #001128; }
.prose-tc ul, .prose-tc ol { margin-left: 1.4em; margin-bottom: .9em; }
.prose-tc li { margin-bottom: .35em; }