@charset "UTF-8";
:root {
  --c-brand:        #0e7c5b;
  --c-brand-deep:   #0a5c42;
  --c-brand-light:  #e6f3ee;
  --c-brand-glow:   rgba(14, 124, 91, 0.12);
  --c-accent:       #f0a030;
  --c-accent-deep:  #c47a10;
  --c-accent-light: #fef7ec;
  --c-accent-glow:  rgba(240, 160, 48, 0.35);
  --c-text:         #1a1f2e;
  --c-text-soft:    #526477;
  --c-text-muted:   #8896a8;
  --c-bg:           #f6f8fb;
  --c-white:        #ffffff;
  --c-border:       #e2e8f0;
  --c-border-soft:  #eef1f6;
  --s-xs:   0 1px  2px  rgba(0, 0, 0, 0.04);
  --s-sm:   0 2px  8px  rgba(0, 0, 0, 0.06);
  --s-md:   0 8px  28px rgba(0, 0, 0, 0.08);
  --s-lg:   0 16px 44px rgba(0, 0, 0, 0.10);
  --s-xl:   0 24px 64px rgba(0, 0, 0, 0.14);
  --s-glow: 0 0 0 4px    var(--c-brand-glow);
  --r-sm:   8px;
  --r-md:   14px;
  --r-lg:   20px;
  --r-xl:   28px;
  --r-pill: 999px;
  --e-out:   cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --e-snap:  cubic-bezier(0.34, 1.56, 0.64, 1);
  --e-smooth:cubic-bezier(0.4,  0,    0.2,  1);
  --mw:      1200px;
  --gutter:  20px;
}
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
  -moz-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
}
body {
  font-family:
    "PingFang SC",
    "Hiragino Sans GB",
    "Microsoft YaHei",
    "Helvetica Neue",
    Arial,
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    sans-serif;
  color: var(--c-text);
  background: var(--c-bg);
  line-height: 1.72;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}
a { color: var(--c-brand); text-decoration: none; }
a:hover { color: var(--c-brand-deep); }
img { max-width: 100%; height: auto; display: block; }
ul { list-style: none; }
.container { width: 100%; max-width: var(--mw); margin: 0 auto; padding: 0 var(--gutter); }
@keyframes pulse {
  0%, 100% { transform: scale(1);     opacity: 1; }
  50%      { transform: scale(1.12);  opacity: 0.7; }
}
@keyframes pulseRing {
  0%   { box-shadow: 0 0 0 0 var(--c-accent-glow); }
  70%  { box-shadow: 0 0 0 18px transparent; }
  100% { box-shadow: 0 0 0 0 transparent; }
}
@keyframes shake {
  0%, 100% { transform: translateX(0); }
  20%      { transform: translateX(-9px); }
  40%      { transform: translateX(9px); }
  60%      { transform: translateX(-6px); }
  80%      { transform: translateX(5px); }
}
@keyframes ripple {
  to { transform: scale(4); opacity: 0; }
}
@keyframes cdPopIn {
  0%   { opacity: 0; transform: scale(0.78); }
  100% { opacity: 1; transform: scale(1); }
}
.navbar {
  position: -webkit-sticky;
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.92);
  -webkit-backdrop-filter: blur(16px);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid transparent;
  transition: border-color 0.3s, box-shadow 0.3s;
}
.navbar.scrolled { border-color: var(--c-border-soft); box-shadow: var(--s-sm); }
.navbar .container { display: flex; align-items: center; justify-content: space-between; min-height: 62px; padding-top: 8px; padding-bottom: 8px; }
.nav-brand { display: flex; align-items: center; gap: 10px; flex-shrink: 0; }
.nav-icon {
  width: 42px; height: 42px; border-radius: 12px;
  background: linear-gradient(135deg, var(--c-brand), var(--c-brand-deep));
  color: #fff; font-size: 1.25rem; font-weight: 800;
  display: flex; align-items: center; justify-content: center;
  position: relative; overflow: hidden;
}
.nav-icon::after { content: ""; position: absolute; top: -6px; right: -6px; width: 20px; height: 20px; background: var(--c-accent); border-radius: 50%; opacity: 0.55; }
.nav-name { font-size: 0.95rem; font-weight: 700; color: var(--c-brand-deep); letter-spacing: 0.5px; white-space: nowrap; }
.nav-sub { font-size: 0.7rem; color: var(--c-text-muted); white-space: nowrap; }
.nav-title { font-size: 1.15rem; font-weight: 700; color: var(--c-text); text-align: center; flex: 1; padding: 0 12px; }
.hero { position: relative; padding: 56px 0 64px; background: linear-gradient(170deg, #e9f4ef 0%, #f0f6f3 35%, #f6f8fb 100%); overflow: hidden; }
.hero::before { content: ""; position: absolute; top: -80px; right: -60px; width: 360px; height: 360px; background: radial-gradient(circle, rgba(14, 124, 91, 0.07) 0%, transparent 70%); border-radius: 50%; }
.hero::after { content: ""; position: absolute; bottom: -40px; left: 10%; width: 200px; height: 200px; background: radial-gradient(circle, rgba(240, 160, 48, 0.06) 0%, transparent 70%); border-radius: 50%; }
.hero-content { position: relative; z-index: 1; max-width: 680px; }
.hero-badge { display: inline-flex; align-items: center; gap: 7px; background: var(--c-white); border: 1px solid var(--c-border); padding: 6px 18px 6px 10px; border-radius: var(--r-pill); font-size: 0.84rem; font-weight: 600; color: var(--c-brand); margin-bottom: 22px; box-shadow: var(--s-xs); }
.hero-badge .live { width: 9px; height: 9px; background: var(--c-brand); border-radius: 50%; animation: pulse 1.8s infinite; }
.hero-title { font-size: 2.2rem; font-weight: 900; line-height: 1.28; color: var(--c-text); margin-bottom: 16px; letter-spacing: -0.3px; }
.hero-title mark { background: linear-gradient(180deg, transparent 62%, rgba(14, 124, 91, 0.18) 62%); color: var(--c-brand-deep); }
.hero-desc { font-size: 1.06rem; color: var(--c-text-soft); line-height: 1.75; max-width: 560px; margin-bottom: 28px; }
.hero-cta {
  display: inline-flex; align-items: center; gap: 8px;
  background: linear-gradient(135deg, var(--c-accent), var(--c-accent-deep));
  color: #fff; padding: 14px 36px; border-radius: var(--r-pill);
  font-size: 1.04rem; font-weight: 700; letter-spacing: 0.5px;
  border: none; cursor: pointer;
  transition: transform 0.25s var(--e-snap), box-shadow 0.25s;
  box-shadow: 0 6px 22px var(--c-accent-glow);
  animation: pulseRing 2.4s infinite;
}
.hero-cta:hover { transform: translateY(-2px) scale(1.03); box-shadow: 0 10px 30px rgba(240, 160, 48, 0.45); }
.hero-cta:active { transform: translateY(0) scale(0.98); }
.hero-cta svg { width: 18px; height: 18px; fill: currentColor; transition: transform 0.3s; }
.hero-cta:hover svg { transform: translateX(3px); }
.hero-stats { display: flex; gap: 36px; margin-top: 36px; flex-wrap: wrap; }
.hero-stat { text-align: left; }
.hero-stat-num { font-size: 1.6rem; font-weight: 900; color: var(--c-brand); line-height: 1.2; }
.hero-stat-label { font-size: 0.8rem; color: var(--c-text-muted); margin-top: 2px; }
.query-section { padding: 36px 0 56px; }
.query-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; align-items: start; }
.query-card {
  background: var(--c-white); border-radius: var(--r-lg); padding: 34px;
  border: 1px solid var(--c-border-soft); box-shadow: var(--s-md);
  position: relative; overflow: hidden; transition: box-shadow 0.35s, transform 0.35s;
}
.query-card::before { content: ""; position: absolute; top: 0; left: 0; right: 0; height: 4px; background: linear-gradient(90deg, var(--c-brand), #2aac7e); }
.query-card:hover { box-shadow: var(--s-lg); transform: translateY(-2px); }
.query-card-head { display: flex; align-items: center; gap: 12px; margin-bottom: 24px; padding-bottom: 18px; border-bottom: 1px solid var(--c-border-soft); }
.query-card-icon { width: 48px; height: 48px; border-radius: 14px; background: var(--c-brand-light); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.query-card-icon svg { width: 24px; height: 24px; fill: var(--c-brand); }
.query-card h3 { font-size: 1.12rem; font-weight: 700; }
.query-card .sub { font-size: 0.8rem; color: var(--c-text-muted); margin-top: 2px; }
.form-row { margin-bottom: 18px; }
.form-label { display: block; font-size: 0.88rem; font-weight: 600; color: var(--c-text); margin-bottom: 7px; }
.form-select {
  width: 100%; padding: 13px 44px 13px 16px;
  border: 2px solid var(--c-border); border-radius: var(--r-sm);
  font-size: 1rem; color: var(--c-text); background: var(--c-bg); cursor: pointer;
  transition: border-color 0.25s, box-shadow 0.25s;
  -webkit-appearance: none; -moz-appearance: none; appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg width='14' height='9' viewBox='0 0 14 9' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1.5l6 6 6-6' stroke='%238896a8' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 16px center;
}
.form-select:focus { outline: none; border-color: var(--c-brand); box-shadow: var(--s-glow); }
.btn-submit {
  width: 100%; padding: 15px 24px; border: none; border-radius: var(--r-sm);
  background: linear-gradient(135deg, var(--c-accent), var(--c-accent-deep));
  color: #fff; font-size: 1.06rem; font-weight: 700; letter-spacing: 0.8px;
  cursor: pointer; position: relative; overflow: hidden;
  transition: transform 0.25s var(--e-snap), box-shadow 0.25s;
}
.btn-submit:hover { transform: translateY(-2px); box-shadow: 0 8px 26px var(--c-accent-glow); }
.btn-submit:active { transform: translateY(0); }
.btn-submit:disabled { background: #cbd5e1; color: #94a3b8; cursor: not-allowed; transform: none; box-shadow: none; }
.btn-submit .ripple { position: absolute; border-radius: 50%; background: rgba(255, 255, 255, 0.35); transform: scale(0); animation: ripple 0.7s linear; pointer-events: none; }
.tips-card { background: linear-gradient(155deg, #fef9f0, #fdf5e6); border-radius: var(--r-lg); padding: 34px; border: 1px solid #f0d99a; box-shadow: var(--s-md); transition: box-shadow 0.35s, transform 0.35s; }
.tips-card:hover { box-shadow: var(--s-lg); transform: translateY(-2px); }
.tips-head { display: flex; align-items: center; gap: 12px; margin-bottom: 22px; padding-bottom: 16px; border-bottom: 2px solid #f0d89c; }
.tips-icon { width: 42px; height: 42px; border-radius: 50%; background: linear-gradient(135deg, var(--c-accent), var(--c-accent-deep)); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.tips-icon svg { width: 20px; height: 20px; fill: #fff; }
.tips-title { font-size: 1.15rem; font-weight: 800; color: #b76e0e; }
.tips-items { display: flex; flex-direction: column; gap: 18px; }
.tips-item { display: flex; align-items: flex-start; gap: 12px; font-size: 0.9rem; color: var(--c-text); line-height: 1.65; }
.tips-item .dot { width: 20px; height: 20px; border-radius: 6px; background: var(--c-brand-light); display: flex; align-items: center; justify-content: center; flex-shrink: 0; margin-top: 3px; }
.tips-item .dot svg { width: 11px; height: 11px; fill: var(--c-brand); }
.cd-overlay { display: none; position: fixed; top: 0; right: 0; bottom: 0; left: 0; z-index: 9999; background: rgba(15, 23, 42, 0.68); -webkit-backdrop-filter: blur(6px); backdrop-filter: blur(6px); justify-content: center; align-items: center; flex-direction: column; }
.cd-overlay.active { display: flex; }
.cd-box { background: var(--c-white); border-radius: var(--r-xl); padding: 46px 56px; text-align: center; box-shadow: 0 28px 72px rgba(0, 0, 0, 0.28); }
.cd-overlay.active .cd-box { animation: cdPopIn 0.42s var(--e-snap); }
.cd-ring { width: 130px; height: 130px; margin: 0 auto 16px; position: relative; display: flex; align-items: center; justify-content: center; }
.cd-ring svg { position: absolute; top: 0; left: 0; transform: rotate(-90deg); width: 130px; height: 130px; }
.cd-ring .bg { fill: none; stroke: var(--c-border); stroke-width: 7; }
.cd-ring .fg { fill: none; stroke: var(--c-brand); stroke-width: 7; stroke-linecap: round; transition: stroke-dashoffset 1s linear; }
.cd-num { position: relative; z-index: 1; font-size: 3.8rem; font-weight: 900; color: var(--c-brand); line-height: 1; animation: pulse 1s infinite; }
.cd-label { font-size: 0.95rem; color: var(--c-text-muted); font-weight: 500; }
.section { padding: 70px 0; }
.section-alt { background: var(--c-white); }
.section-hd { text-align: center; margin-bottom: 46px; }
.section-tag { display: inline-block; font-size: 0.8rem; font-weight: 700; color: var(--c-brand); background: var(--c-brand-light); padding: 4px 16px; border-radius: var(--r-pill); margin-bottom: 14px; letter-spacing: 0.5px; text-transform: uppercase; }
.section-tt { font-size: 1.86rem; font-weight: 900; color: var(--c-text); margin-bottom: 10px; }
.section-sub { font-size: 1rem; color: var(--c-text-soft); max-width: 600px; margin: 0 auto; }
.career-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.career-card { background: var(--c-white); border-radius: var(--r-md); padding: 32px 26px; text-align: center; border: 1px solid var(--c-border-soft); box-shadow: var(--s-sm); transition: transform 0.35s, box-shadow 0.35s; position: relative; overflow: hidden; }
.career-card:hover { transform: translateY(-5px); box-shadow: var(--s-lg); }
.career-card::after { content: ""; position: absolute; bottom: 0; left: 20%; right: 20%; height: 3px; background: linear-gradient(90deg, transparent, var(--c-brand), transparent); opacity: 0; transition: opacity 0.35s; }
.career-card:hover::after { opacity: 1; }
.career-card .ico { width: 60px; height: 60px; margin: 0 auto 18px; background: var(--c-brand-light); border-radius: 16px; display: flex; align-items: center; justify-content: center; transition: transform 0.3s var(--e-snap); }
.career-card:hover .ico { transform: scale(1.1) rotate(-3deg); }
.career-card .ico svg { width: 30px; height: 30px; fill: var(--c-brand); }
.career-card h4 { font-size: 1.08rem; font-weight: 700; margin-bottom: 10px; }
.career-card p { font-size: 0.86rem; color: var(--c-text-soft); line-height: 1.68; }
.sched-card { background: var(--c-white); border-radius: var(--r-lg); padding: 38px; border: 1px solid var(--c-border-soft); box-shadow: var(--s-md); max-width: 820px; margin: 0 auto; }
.sched-table { width: 100%; border-collapse: collapse; }
.sched-table thead th { background: var(--c-brand); color: #fff; padding: 14px 18px; font-size: 0.88rem; font-weight: 600; text-align: center; }
.sched-table thead th:first-child { border-radius: var(--r-sm) 0 0 0; }
.sched-table thead th:last-child { border-radius: 0 var(--r-sm) 0 0; }
.sched-table td { padding: 14px 18px; text-align: center; font-size: 0.88rem; color: var(--c-text); border-bottom: 1px solid var(--c-border-soft); }
.sched-table tbody tr:last-child td { border-bottom: none; }
.sched-table tbody tr { transition: background-color 0.25s; }
.sched-table tbody tr:hover td { background: var(--c-brand-light); }
.sched-note { margin-top: 18px; padding: 13px 18px; background: var(--c-accent-light); border-left: 4px solid var(--c-accent); border-radius: 4px; font-size: 0.83rem; color: #8a6d14; line-height: 1.65; }
.value-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
.value-card { display: flex; gap: 20px; align-items: flex-start; background: var(--c-white); border-radius: var(--r-md); padding: 28px; border: 1px solid var(--c-border-soft); box-shadow: var(--s-sm); transition: transform 0.35s, box-shadow 0.35s; }
.value-card:hover { transform: translateY(-3px); box-shadow: var(--s-lg); }
.value-num { width: 50px; height: 50px; border-radius: 14px; background: linear-gradient(135deg, var(--c-brand), var(--c-brand-deep)); color: #fff; font-size: 1.25rem; font-weight: 900; display: flex; align-items: center; justify-content: center; flex-shrink: 0; transition: transform 0.3s var(--e-snap); }
.value-card:hover .value-num { transform: scale(1.12) rotate(-5deg); }
.value-body h4 { font-size: 1.04rem; font-weight: 700; color: var(--c-text); margin-bottom: 7px; }
.value-body p { font-size: 0.86rem; color: var(--c-text-soft); line-height: 1.68; }
.cases-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.case-card { background: var(--c-white); border-radius: var(--r-md); overflow: hidden; border: 1px solid var(--c-border-soft); box-shadow: var(--s-sm); transition: transform 0.35s, box-shadow 0.35s; }
.case-card:hover { transform: translateY(-5px); box-shadow: var(--s-lg); }
.case-avatar { height: 150px; background: linear-gradient(135deg, #e6f3ee, #d4ede3); display: flex; align-items: center; justify-content: center; position: relative; overflow: hidden; }
.case-avatar::after { content: ""; position: absolute; bottom: -30px; right: -30px; width: 100px; height: 100px; background: rgba(14, 124, 91, 0.08); border-radius: 50%; }
.case-avatar .av { width: 70px; height: 70px; background: var(--c-white); border-radius: 50%; display: flex; align-items: center; justify-content: center; box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08); z-index: 1; transition: transform 0.35s var(--e-snap); }
.case-card:hover .case-avatar .av { transform: scale(1.12); }
.case-avatar .av svg { width: 34px; height: 34px; fill: var(--c-brand); }
.case-body { padding: 22px; }
.case-body h5 { font-size: 1.04rem; font-weight: 700; margin-bottom: 4px; }
.case-tag { display: inline-block; font-size: 0.76rem; color: var(--c-brand); background: var(--c-brand-light); padding: 3px 12px; border-radius: var(--r-pill); margin-bottom: 12px; font-weight: 600; }
.case-body p { font-size: 0.84rem; color: var(--c-text-soft); line-height: 1.68; }
.trust-row { padding: 44px 0; background: var(--c-white); border-top: 1px solid var(--c-border-soft); border-bottom: 1px solid var(--c-border-soft); }
.trust-grid { display: flex; justify-content: center; align-items: center; gap: 50px; flex-wrap: wrap; text-align: center; }
.trust-item { display: flex; align-items: center; gap: 10px; }
.trust-item svg { width: 28px; height: 28px; fill: var(--c-brand); }
.trust-item span { font-size: 0.88rem; font-weight: 600; color: var(--c-text-soft); }
.cta-banner { background: linear-gradient(150deg, var(--c-brand), #086347); padding: 58px 0; text-align: center; color: #fff; position: relative; overflow: hidden; }
.cta-banner::before { content: ""; position: absolute; top: -40px; right: -40px; width: 220px; height: 220px; background: rgba(255, 255, 255, 0.04); border-radius: 50%; }
.cta-banner::after { content: ""; position: absolute; bottom: -40px; left: 10%; width: 160px; height: 160px; background: rgba(255, 255, 255, 0.03); border-radius: 50%; }
.cta-banner .container { position: relative; z-index: 1; }
.cta-banner h2 { font-size: 1.7rem; font-weight: 800; margin-bottom: 8px; }
.cta-banner p { font-size: 1rem; opacity: 0.88; margin-bottom: 26px; }
.cta-btn { display: inline-flex; align-items: center; gap: 8px; padding: 16px 48px; background: var(--c-white); color: var(--c-brand-deep); font-size: 1.08rem; font-weight: 700; border-radius: var(--r-pill); border: none; cursor: pointer; letter-spacing: 0.5px; transition: background-color 0.3s var(--e-snap), color 0.3s var(--e-snap), transform 0.3s var(--e-snap); box-shadow: 0 6px 20px rgba(0, 0, 0, 0.18); }
.cta-btn:hover { background: var(--c-accent); color: #fff; transform: translateY(-2px) scale(1.04); }
.cta-btn:active { transform: translateY(0) scale(0.98); }
.cta-btn svg { width: 18px; height: 18px; fill: currentColor; transition: transform 0.3s; }
.cta-btn:hover svg { transform: translateX(3px); }
.site-footer { background: #111827; color: #9ca3af; padding: 44px 0 32px; font-size: 0.84rem; }
.footer-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 34px; margin-bottom: 28px; }
.footer-col h4 { color: #fff; font-size: 0.92rem; font-weight: 600; margin-bottom: 14px; }
.footer-col p, .footer-col a { color: #9ca3af; font-size: 0.8rem; line-height: 2; display: block; }
.footer-col a:hover { color: #fff; }
.footer-hr { border: none; border-top: 1px solid rgba(255, 255, 255, 0.08); margin: 22px 0; }
.footer-legal { text-align: center; font-size: 0.78rem; color: rgba(255, 255, 255, 0.35); }
.footer-legal p { margin-bottom: 5px; }
.aos-hidden { opacity: 0; transform: translateY(34px); transition: opacity 0.65s var(--e-out), transform 0.65s var(--e-out); }
.aos-visible { opacity: 1; transform: translateY(0); }
@media (max-width: 1024px) {
  .career-grid, .cases-grid { grid-template-columns: repeat(2, 1fr); }
  .hero-title { font-size: 1.8rem; }
  .nav-title { font-size: 1rem; }
}
@media (max-width: 768px) {
  .navbar .container { flex-wrap: wrap; justify-content: center; gap: 6px; padding-top: 10px; padding-bottom: 10px; }
  .nav-brand { order: 1; }
  .nav-title { order: 3; width: 100%; text-align: center; font-size: 0.95rem; }
  .nav-sub { display: none; }
  .hero { padding: 36px 0 44px; }
  .hero-title { font-size: 1.5rem; }
  .hero-desc { font-size: 0.9rem; }
  .hero-stats { gap: 24px; }
  .hero-stat-num { font-size: 1.3rem; }
  .query-grid { grid-template-columns: 1fr; gap: 20px; }
  .career-grid { grid-template-columns: 1fr; gap: 16px; }
  .value-grid { grid-template-columns: 1fr; gap: 16px; }
  .cases-grid { grid-template-columns: 1fr; gap: 16px; }
  .footer-grid { grid-template-columns: 1fr; gap: 22px; text-align: center; }
  .trust-grid { gap: 30px; }
  .section { padding: 50px 0; }
  .section-tt { font-size: 1.4rem; }
  .cd-box { padding: 30px; }
  .cd-num { font-size: 2.8rem; }
  .cd-ring, .cd-ring svg { width: 100px; height: 100px; }
  .sched-card { padding: 20px; }
  .sched-table th, .sched-table td { padding: 10px 8px; font-size: 0.76rem; }
}
@media (max-width: 480px) {
  .container { padding: 0 14px; }
  .hero { padding: 30px 0 38px; }
  .hero-title { font-size: 1.3rem; }
  .hero-desc { font-size: 0.84rem; }
  .hero-cta { padding: 13px 28px; font-size: 0.95rem; }
  .hero-stats { gap: 18px; }
  .query-card, .tips-card { padding: 22px; }
  .btn-submit { padding: 13px 20px; font-size: 0.95rem; }
  .cd-box { padding: 22px 18px; border-radius: var(--r-md); }
  .cd-num { font-size: 2.4rem; }
  .cd-ring, .cd-ring svg { width: 86px; height: 86px; }
  .section { padding: 42px 0; }
  .section-tt { font-size: 1.28rem; }
  .career-card, .value-card, .case-card { padding: 20px; }
  .cta-banner { padding: 42px 0; }
  .cta-banner h2 { font-size: 1.3rem; }
  .cta-btn { padding: 15px 36px; font-size: 1rem; }
}
@media print {
  *, *::before, *::after { background: transparent !important; color: #000 !important; box-shadow: none !important; text-shadow: none !important; }
  .navbar, .cd-overlay, .hero-cta, .btn-submit, .cta-banner, .trust-row, .ripple { display: none !important; }
  .container { max-width: 100%; padding: 0; }
  body { font-size: 12pt; line-height: 1.5; }
  a[href]::after { content: " (" attr(href) ")"; font-size: 0.8em; }
}
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.01ms !important; animation-iteration-count: 1 !important; transition-duration: 0.01ms !important; scroll-behavior: auto !important; }
  .hero-cta { animation: none; }
  .aos-hidden { opacity: 1; transform: none; }
  .cd-num { animation: none; }
}