@charset "UTF-8";
:root {
  --red: #d7354a;
  --red-dark: #a71f35;
  --blue: #146b8c;
  --blue-dark: #0b4865;
  --teal: #16978f;
  --teal-pale: #e8f7f5;
  --sky: #eef7fb;
  --ink: #17313e;
  --muted: #5c707a;
  --line: #dce8ec;
  --white: #ffffff;
  --shadow: 0 16px 42px rgba(20, 71, 91, .11);
  --radius: 20px;
  --max: 1180px;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  font-family: "Noto Sans TC", "PingFang TC", "Microsoft JhengHei", Arial, sans-serif;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}
body.menu-open { overflow: hidden; }
img { display: block; max-width: 100%; }
a { color: var(--blue); text-decoration-thickness: 1px; text-underline-offset: 3px; }
a:hover { color: var(--red); }
button, input, textarea, select { font: inherit; }
.visually-hidden { position: absolute !important; width: 1px !important; height: 1px !important; padding: 0 !important; margin: -1px !important; overflow: hidden !important; clip: rect(0, 0, 0, 0) !important; white-space: nowrap !important; border: 0 !important; }
button, a { -webkit-tap-highlight-color: transparent; }
:focus-visible { outline: 3px solid #f5a9b5; outline-offset: 3px; }
.skip-link { position: fixed; z-index: 1000; left: 1rem; top: -5rem; padding: .7rem 1rem; color: #fff; background: var(--ink); border-radius: 8px; }
.skip-link:focus { top: 1rem; }
.container { width: min(calc(100% - 40px), var(--max)); margin-inline: auto; }
.narrow { width: min(calc(100% - 40px), 820px); margin-inline: auto; }
.site-header { position: sticky; z-index: 100; top: 0; background: rgba(255,255,255,.96); border-bottom: 1px solid rgba(220,232,236,.85); backdrop-filter: blur(15px); }
.header-inner { min-height: 82px; display: flex; align-items: center; gap: 24px; }
.brand { display: flex; align-items: center; gap: 12px; color: var(--ink); text-decoration: none; min-width: 250px; }
.brand img { width: 56px; height: 48px; object-fit: contain; border-radius: 9px; }
.brand-text { display: grid; line-height: 1.15; }
.brand-text strong { font-size: 1.04rem; letter-spacing: .03em; }
.brand-text span { color: var(--muted); font-size: .68rem; margin-top: 4px; }
.nav-toggle { display: none; margin-left: auto; width: 44px; height: 44px; border: 1px solid var(--line); border-radius: 12px; background: #fff; color: var(--ink); }
.nav-toggle span, .nav-toggle::before, .nav-toggle::after { content: ""; display: block; width: 20px; height: 2px; margin: 5px auto; background: currentColor; transition: .2s; }
.nav-toggle .visually-hidden { display: none; }
.site-nav { display: flex; align-items: center; gap: 4px; margin-left: auto; }
.site-nav a { padding: 9px 10px; color: var(--ink); border-radius: 9px; font-size: .9rem; text-decoration: none; white-space: nowrap; }
.site-nav a:hover, .site-nav a[aria-current="page"] { color: var(--red-dark); background: #fff1f3; }
.lang-switcher { display: flex; border: 1px solid var(--line); border-radius: 10px; padding: 3px; margin-left: 6px; }
.lang-switcher button { min-width: 31px; padding: 4px 7px; border: 0; border-radius: 7px; color: var(--muted); background: transparent; font-size: .72rem; cursor: pointer; }
.lang-switcher button.active { color: #fff; background: var(--blue); }
.hero { position: relative; overflow: hidden; padding: 76px 0; background: linear-gradient(135deg, #f6fbfd 0%, #fff 52%, #fff3f4 100%); }
.hero::before, .hero::after { content: ""; position: absolute; border-radius: 999px; filter: blur(2px); opacity: .45; }
.hero::before { width: 360px; height: 360px; top: -210px; right: 12%; background: #a9e4df; }
.hero::after { width: 260px; height: 260px; bottom: -170px; left: 4%; background: #f5b6c0; }
.hero-grid { position: relative; z-index: 1; display: grid; grid-template-columns: 1.08fr .92fr; align-items: center; gap: 70px; }
.eyebrow { display: inline-flex; align-items: center; gap: 8px; margin: 0 0 16px; color: var(--red-dark); font-size: .8rem; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; }
.eyebrow::before { content: ""; width: 30px; height: 3px; border-radius: 4px; background: var(--red); }
h1, h2, h3 { margin-top: 0; color: var(--ink); line-height: 1.22; }
h1 { max-width: 760px; margin-bottom: 22px; font-size: clamp(2.3rem, 5vw, 4.5rem); letter-spacing: -.035em; }
.page-hero h1 { font-size: clamp(2.2rem, 4vw, 3.7rem); }
h2 { margin-bottom: 18px; font-size: clamp(1.8rem, 3vw, 2.65rem); letter-spacing: -.02em; }
h3 { margin-bottom: 10px; font-size: 1.25rem; }
.lead { max-width: 690px; margin: 0 0 28px; color: var(--muted); font-size: clamp(1rem, 1.5vw, 1.18rem); }
.hero-actions, .cta-actions { display: flex; flex-wrap: wrap; gap: 12px; }
.btn { display: inline-flex; min-height: 48px; align-items: center; justify-content: center; gap: 9px; padding: 11px 20px; border: 1px solid transparent; border-radius: 12px; font-weight: 800; text-decoration: none; cursor: pointer; transition: transform .2s, box-shadow .2s, background .2s; }
.btn:hover { transform: translateY(-2px); }
.btn-primary { color: #fff; background: var(--red); box-shadow: 0 10px 22px rgba(215,53,74,.24); }
.btn-primary:hover { color: #fff; background: var(--red-dark); }
.btn-secondary { color: var(--blue-dark); background: #fff; border-color: #bed5dd; }
.btn-secondary:hover { color: var(--blue-dark); border-color: var(--blue); box-shadow: 0 10px 24px rgba(20,107,140,.12); }
.btn-teal { color: #fff; background: var(--teal); }
.btn-teal:hover { color: #fff; background: #0f7974; }
.hero-visual { position: relative; }
.hero-visual img { width: 100%; height: 470px; object-fit: cover; border-radius: 30px 30px 90px 30px; box-shadow: var(--shadow); }
.hero-visual.logo-visual { display: grid; min-height: 420px; place-items: center; padding: 45px; border: 1px solid var(--line); border-radius: 30px 30px 90px 30px; background: #fff; box-shadow: var(--shadow); }
.hero-visual.logo-visual img { width: min(100%, 430px); height: auto; border-radius: 0; box-shadow: none; object-fit: contain; }
.floating-note { position: absolute; right: -24px; bottom: 24px; max-width: 240px; padding: 17px 20px; color: #fff; background: var(--blue-dark); border-radius: 16px; box-shadow: var(--shadow); font-weight: 700; }
.trust-bar { border-block: 1px solid var(--line); background: #fff; }
.trust-grid { display: grid; grid-template-columns: repeat(3,1fr); }
.trust-item { padding: 24px; text-align: center; border-right: 1px solid var(--line); }
.trust-item:last-child { border: 0; }
.trust-item strong { display: block; color: var(--blue-dark); font-size: 1.04rem; }
.trust-item span { color: var(--muted); font-size: .9rem; }
.section { padding: 86px 0; }
.section-soft { background: var(--sky); }
.section-teal { background: var(--teal-pale); }
.section-heading { display: flex; align-items: end; justify-content: space-between; gap: 28px; margin-bottom: 34px; }
.section-heading > div { max-width: 720px; }
.section-heading p, .card p, .prose p, .prose li { color: var(--muted); }
.grid-2 { display: grid; grid-template-columns: repeat(2,minmax(0,1fr)); gap: 26px; }
.grid-3 { display: grid; grid-template-columns: repeat(3,minmax(0,1fr)); gap: 24px; }
.grid-4 { display: grid; grid-template-columns: repeat(4,minmax(0,1fr)); gap: 18px; }
.card { overflow: hidden; border: 1px solid var(--line); border-radius: var(--radius); background: #fff; box-shadow: 0 10px 28px rgba(20,71,91,.06); }
.card-body { padding: 25px; }
.card img { width: 100%; height: 230px; object-fit: cover; }
.card h3 { min-height: 1.5em; }
.card p { margin: 0 0 18px; }
.card-link { display: inline-flex; align-items: center; gap: 7px; font-weight: 800; text-decoration: none; }
.card-link::after { content: "→"; }
.icon-card { padding: 28px; }
.icon-badge { display: grid; width: 48px; height: 48px; place-items: center; margin-bottom: 18px; color: #fff; background: var(--teal); border-radius: 14px; font-size: 1.25rem; font-weight: 900; }
.media-split { display: grid; grid-template-columns: .94fr 1.06fr; align-items: center; gap: 64px; }
.media-split.reverse { grid-template-columns: 1.06fr .94fr; }
.media-split.reverse .media { order: 2; }
.media img { width: 100%; height: 500px; object-fit: cover; border-radius: 28px; box-shadow: var(--shadow); }
.prose ul, .check-list { padding: 0; list-style: none; }
.check-list li { position: relative; margin: 12px 0; padding-left: 31px; color: var(--ink); }
.check-list li::before { content: "✓"; position: absolute; left: 0; top: 2px; display: grid; width: 21px; height: 21px; place-items: center; color: #fff; background: var(--teal); border-radius: 50%; font-size: .72rem; font-weight: 900; }
.callout { padding: 28px 30px; border-left: 5px solid var(--red); border-radius: 0 16px 16px 0; background: #fff4f5; }
.callout p:last-child { margin-bottom: 0; }
.page-hero { padding: 66px 0; }
.breadcrumbs { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 22px; color: var(--muted); font-size: .84rem; }
.breadcrumbs a { color: var(--muted); }
.page-hero .hero-grid { grid-template-columns: 1.12fr .88fr; }
.page-hero .hero-visual img { height: 360px; }
.process { counter-reset: steps; }
.process .icon-card { position: relative; padding-top: 72px; }
.process .icon-card::before { counter-increment: steps; content: counter(steps, decimal-leading-zero); position: absolute; top: 20px; left: 28px; color: var(--red); font-size: 1.6rem; font-weight: 900; }
.tag-list { display: flex; flex-wrap: wrap; gap: 9px; margin: 20px 0; padding: 0; list-style: none; }
.tag-list li { padding: 7px 12px; color: var(--blue-dark); background: #e7f4f8; border-radius: 999px; font-size: .86rem; font-weight: 700; }
.cta-band { position: relative; overflow: hidden; padding: 52px; color: #fff; background: linear-gradient(125deg,var(--blue-dark),var(--teal)); border-radius: 28px; }
.cta-band::after { content: "♥"; position: absolute; right: 30px; bottom: -75px; color: rgba(255,255,255,.08); font-size: 14rem; line-height: 1; }
.cta-band h2, .cta-band p { position: relative; z-index: 1; color: #fff; max-width: 760px; }
.cta-band .btn { position: relative; z-index: 1; }
.contact-grid { display: grid; grid-template-columns: .8fr 1.2fr; gap: 32px; }
.contact-card { padding: 28px; }
.contact-list { display: grid; gap: 18px; margin: 0; }
.contact-list div { padding-bottom: 18px; border-bottom: 1px solid var(--line); }
.contact-list div:last-child { padding-bottom: 0; border: 0; }
.contact-list dt { color: var(--muted); font-size: .8rem; font-weight: 800; text-transform: uppercase; letter-spacing: .08em; }
.contact-list dd { margin: 5px 0 0; font-weight: 700; }
.form-card { padding: 32px; }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.field { display: grid; gap: 7px; }
.field.full { grid-column: 1 / -1; }
.field label { font-weight: 800; font-size: .9rem; }
.field input, .field textarea, .field select { width: 100%; padding: 12px 14px; color: var(--ink); background: #fbfdfe; border: 1px solid #cbdce2; border-radius: 10px; }
.field textarea { min-height: 140px; resize: vertical; }
.form-note { margin: 16px 0 0; color: var(--muted); font-size: .83rem; }
.recruitment-form { position: relative; z-index: 1; max-width: 820px; margin-top: 28px; padding: 26px; color: var(--ink); background: rgba(255,255,255,.98); border-radius: 18px; }
.recruitment-form .form-note { margin-bottom: 0; }
.recruitment-form .btn { width: max-content; }
.site-footer { margin-top: 86px; color: #d9e8ee; background: #102f3d; }
.footer-main { display: grid; grid-template-columns: 1.25fr .7fr 1fr; gap: 55px; padding: 55px 0 42px; }
.footer-main h2 { color: #fff; font-size: 1.15rem; }
.footer-main p, .footer-main a { color: #c8dbe3; }
.footer-main ul { margin: 0; padding: 0; list-style: none; }
.footer-main li { margin: 8px 0; }
.footer-brand { display: flex; align-items: center; gap: 14px; margin-bottom: 16px; }
.footer-brand img { width: 64px; height: 54px; padding: 5px; object-fit: contain; background: #fff; border-radius: 10px; }
.footer-brand strong { display: block; color: #fff; }
.footer-brand span { display: block; color: #b5ccd5; font-size: .72rem; }
.footer-bottom { padding: 18px 0; border-top: 1px solid rgba(255,255,255,.12); color: #a9c2cc; font-size: .78rem; }
.whatsapp-float { position: fixed; z-index: 90; right: 22px; bottom: 22px; display: flex; width: 58px; height: 58px; align-items: center; justify-content: center; color: #fff; background: #20a869; border: 4px solid #fff; border-radius: 50%; box-shadow: 0 12px 28px rgba(13,94,58,.28); text-decoration: none; font-size: 1.45rem; font-weight: 900; }
.whatsapp-float:hover { color: #fff; background: #148854; }
.reveal { opacity: 0; transform: translateY(16px); transition: opacity .55s ease, transform .55s ease; }
.reveal.visible { opacity: 1; transform: none; }
@media (max-width: 1020px) {
  .header-inner { min-height: 72px; }
  .brand { min-width: 0; }
  .brand-text span { display: none; }
  .nav-toggle { display: block; }
  .site-nav { position: fixed; inset: 72px 0 auto; display: none; max-height: calc(100vh - 72px); flex-direction: column; align-items: stretch; gap: 2px; overflow-y: auto; padding: 18px 20px 26px; background: #fff; border-top: 1px solid var(--line); box-shadow: 0 22px 35px rgba(20,71,91,.12); }
  .site-nav.open { display: flex; }
  .site-nav a { padding: 12px; font-size: 1rem; }
  .lang-switcher { justify-content: center; margin: 10px 0 0; }
  .lang-switcher button { flex: 1; padding: 8px; }
  .hero-grid, .page-hero .hero-grid { grid-template-columns: 1fr 1fr; gap: 38px; }
  .grid-4 { grid-template-columns: repeat(2,1fr); }
  .footer-main { grid-template-columns: 1fr 1fr; }
  .footer-main > :first-child { grid-column: 1 / -1; }
}
@media (max-width: 760px) {
  .container, .narrow { width: min(calc(100% - 28px), var(--max)); }
  .brand img { width: 50px; height: 43px; }
  .brand-text strong { font-size: .92rem; }
  .hero, .page-hero { padding: 50px 0; }
  .hero-grid, .page-hero .hero-grid, .media-split, .media-split.reverse, .contact-grid { grid-template-columns: 1fr; gap: 34px; }
  .hero-visual { order: -1; }
  .page-hero .hero-visual { order: 0; }
  .hero-visual img, .page-hero .hero-visual img { height: 330px; border-radius: 22px 22px 60px 22px; }
  .hero-visual.logo-visual { min-height: 300px; padding: 28px; order: 0; }
  .floating-note { right: 12px; bottom: 12px; }
  h1 { font-size: clamp(2.2rem, 12vw, 3.2rem); }
  .section { padding: 62px 0; }
  .section-heading { display: block; }
  .grid-2, .grid-3 { grid-template-columns: 1fr; }
  .trust-grid { grid-template-columns: 1fr; }
  .trust-item { padding: 17px; border-right: 0; border-bottom: 1px solid var(--line); }
  .media-split.reverse .media { order: 0; }
  .media img { height: 360px; }
  .cta-band { padding: 34px 25px; }
  .form-grid { grid-template-columns: 1fr; }
  .field.full { grid-column: auto; }
  .footer-main { grid-template-columns: 1fr; gap: 30px; }
  .footer-main > :first-child { grid-column: auto; }
  .whatsapp-float { right: 14px; bottom: 14px; }
}
@media (max-width: 430px) {
  .brand-text strong { max-width: 155px; font-size: .82rem; }
  .hero-actions .btn, .cta-actions .btn { width: 100%; }
  .grid-4 { grid-template-columns: 1fr; }
  .card img { height: 210px; }
  .floating-note { position: static; max-width: none; margin-top: 12px; }
}
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { scroll-behavior: auto !important; transition-duration: .01ms !important; animation-duration: .01ms !important; }
  .reveal { opacity: 1; transform: none; }
}
@media print { .site-header, .whatsapp-float, .hero-actions, .cta-actions { display: none; } .section { padding: 30px 0; } }
