:root {
  --green: #6fb92c;
  --orange: #f5931e;
  --ink: #1c2620;
  --ink-soft: #4a564e;
  --paper: #ffffff;
  --paper-soft: #f6f8f4;
  --line: #e6ebe3;
  --radius: 14px;
  --max: 1160px;
  font-size: 16px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: "Helvetica Neue", Arial, "Noto Sans TC", "PingFang HK", sans-serif;
  color: var(--ink);
  background: var(--paper);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

img { display: block; max-width: 100%; }

.wrap {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 24px;
}

a { color: inherit; }

/* ---------- Header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255,255,255,0.92);
  backdrop-filter: saturate(180%) blur(10px);
  border-bottom: 1px solid var(--line);
}

.site-header .wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 76px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  font-size: 1.15rem;
  text-decoration: none;
  letter-spacing: 0.01em;
}

.brand img { height: 40px; width: auto; }

.brand-word .further { color: var(--green); }
.brand-word .fly { color: var(--orange); }

.nav-links {
  display: flex;
  align-items: center;
  gap: 30px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-links a {
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--ink-soft);
  transition: color 0.2s ease;
}

.nav-links a:hover { color: var(--green); }

.nav-cta {
  background: var(--ink);
  color: #fff !important;
  padding: 10px 18px;
  border-radius: 999px;
  font-weight: 600 !important;
}

.nav-cta:hover { background: var(--green) !important; }

.nav-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 1.6rem;
  cursor: pointer;
  color: var(--ink);
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 26px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.98rem;
  text-decoration: none;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.2s ease, color 0.2s ease;
}

.btn:hover { transform: translateY(-2px); }

.btn-primary {
  background: linear-gradient(120deg, var(--green), var(--orange));
  color: #fff;
}
.btn-primary:hover { box-shadow: 0 10px 24px -8px rgba(111,185,44,0.55); }

.btn-outline {
  background: transparent;
  border-color: var(--ink);
  color: var(--ink);
}
.btn-outline:hover { border-color: var(--green); color: var(--green); }

.btn-light {
  background: #fff;
  color: var(--ink);
}
.btn-light:hover { box-shadow: 0 10px 24px -10px rgba(0,0,0,0.25); }

.btn-block { width: 100%; justify-content: center; }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  overflow: hidden;
  padding: 90px 0 70px;
  background: radial-gradient(1200px 500px at 80% -10%, rgba(245,147,30,0.10), transparent),
              radial-gradient(900px 500px at 0% 10%, rgba(111,185,44,0.12), transparent);
}

.hero .wrap {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 56px;
  align-items: center;
}

.eyebrow {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--green);
  margin-bottom: 18px;
}

.hero h1 {
  font-size: clamp(2.2rem, 4.2vw, 3.4rem);
  line-height: 1.12;
  margin: 0 0 20px;
  font-weight: 800;
}

.hero h1 .accent { color: var(--orange); }

.hero p.lead {
  font-size: 1.15rem;
  color: var(--ink-soft);
  max-width: 46ch;
  margin: 0 0 34px;
}

.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.hero-media {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 30px 60px -25px rgba(28,38,32,0.35);
}

.hero-media img { width: 100%; height: 460px; object-fit: cover; }

.hero-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(200deg, rgba(111,185,44,0.18), rgba(245,147,30,0.12));
}

.hero-badge {
  position: absolute;
  left: -18px;
  bottom: -18px;
  background: #fff;
  padding: 16px 20px;
  border-radius: 16px;
  box-shadow: 0 18px 40px -18px rgba(0,0,0,0.35);
  z-index: 2;
  max-width: 240px;
}

.hero-badge strong { display: block; font-size: 1.4rem; color: var(--green); }
.hero-badge span { font-size: 0.82rem; color: var(--ink-soft); }

/* ---------- Section shell ---------- */
section { padding: 96px 0; }

.section-alt { background: var(--paper-soft); }

.section-head {
  max-width: 640px;
  margin: 0 0 56px;
}

.section-head.center { margin-left: auto; margin-right: auto; text-align: center; }

.section-tag {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 14px;
}

.section-head h2 {
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  margin: 0 0 16px;
  font-weight: 800;
}

.section-head p {
  color: var(--ink-soft);
  font-size: 1.05rem;
  margin: 0;
}

/* ---------- Brand story (Home, part 2) ---------- */
.story {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 64px;
  align-items: center;
}

.story-logo {
  background: var(--paper-soft);
  border-radius: 24px;
  padding: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.story-logo img { width: 100%; max-width: 260px; }

.story-copy h3 {
  font-size: 1.6rem;
  margin: 0 0 18px;
  font-weight: 800;
}

.story-copy p {
  color: var(--ink-soft);
  font-size: 1.05rem;
  margin: 0 0 16px;
}

.story-copy p.quote {
  color: var(--ink);
  font-weight: 600;
  font-size: 1.15rem;
  border-left: 3px solid var(--green);
  padding-left: 18px;
  margin-top: 24px;
}

/* ---------- Service cards ---------- */
.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 28px;
}

.card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 32px 28px;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 40px -22px rgba(28,38,32,0.25);
  border-color: transparent;
}

.card-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  margin-bottom: 20px;
  background: linear-gradient(135deg, rgba(111,185,44,0.16), rgba(245,147,30,0.16));
}

.card h3 {
  font-size: 1.15rem;
  margin: 0 0 10px;
  font-weight: 700;
}

.card p {
  color: var(--ink-soft);
  font-size: 0.98rem;
  margin: 0;
}

/* ---------- Split section (Employers / Candidates) ---------- */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.split.reverse .split-media { order: 2; }
.split.reverse .split-copy { order: 1; }

.split-media img {
  border-radius: 24px;
  width: 100%;
  height: 420px;
  object-fit: cover;
  box-shadow: 0 30px 60px -30px rgba(28,38,32,0.35);
}

.split-copy h2 {
  font-size: clamp(1.7rem, 2.8vw, 2.2rem);
  margin: 0 0 18px;
  font-weight: 800;
}

.split-copy > p.lead {
  color: var(--ink-soft);
  font-size: 1.05rem;
  margin: 0 0 36px;
}

.steps {
  display: flex;
  flex-direction: column;
  gap: 26px;
  margin-bottom: 36px;
}

.step {
  display: flex;
  gap: 18px;
}

.step-num {
  flex: none;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  color: #fff;
  background: linear-gradient(135deg, var(--green), var(--orange));
}

.step h4 {
  margin: 0 0 4px;
  font-size: 1.05rem;
  font-weight: 700;
}

.step p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 0.96rem;
}

.link-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 700;
  color: var(--green);
  text-decoration: none;
}

.link-cta:hover { color: var(--orange); }

/* ---------- About extras ---------- */
.meaning {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
  margin-top: 48px;
}

.meaning-card {
  padding: 32px;
  border-radius: var(--radius);
  color: #fff;
}

.meaning-card.further { background: linear-gradient(135deg, #6fb92c, #4d8a1c); }
.meaning-card.fly { background: linear-gradient(135deg, #f5931e, #d9720a); }

.meaning-card h3 {
  margin: 0 0 12px;
  font-size: 1.4rem;
  font-weight: 800;
}

.meaning-card p {
  margin: 0;
  opacity: 0.95;
}

.meaning-card .words {
  margin-top: 14px;
  font-weight: 700;
  letter-spacing: 0.02em;
}

/* ---------- Stats strip ---------- */
.stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 60px;
  padding-top: 48px;
  border-top: 1px solid var(--line);
}

.stat strong {
  display: block;
  font-size: 2rem;
  font-weight: 800;
  color: var(--green);
}

.stat span {
  color: var(--ink-soft);
  font-size: 0.9rem;
}

/* ---------- Contact ---------- */
.contact-wrap {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 56px;
}

.contact-info h2 {
  font-size: clamp(1.8rem, 3vw, 2.3rem);
  margin: 0 0 18px;
  font-weight: 800;
}

.contact-info p {
  color: var(--ink-soft);
  margin: 0 0 28px;
}

.contact-detail {
  display: flex;
  gap: 14px;
  margin-bottom: 20px;
  align-items: flex-start;
}

.contact-detail .dot {
  flex: none;
  width: 38px;
  height: 38px;
  border-radius: 10px;
  background: var(--paper-soft);
  display: flex;
  align-items: center;
  justify-content: center;
}

.contact-detail strong { display: block; font-size: 0.95rem; }
.contact-detail span { color: var(--ink-soft); font-size: 0.92rem; }

.form-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 40px;
  box-shadow: 0 30px 60px -35px rgba(28,38,32,0.3);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.field { margin-bottom: 20px; }

.field label {
  display: block;
  font-size: 0.85rem;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--ink);
}

.field input,
.field select,
.field textarea {
  width: 100%;
  padding: 13px 14px;
  border-radius: 10px;
  border: 1px solid var(--line);
  font-family: inherit;
  font-size: 0.96rem;
  background: var(--paper-soft);
  transition: border-color 0.2s ease, background 0.2s ease;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--green);
  background: #fff;
}

.field textarea { min-height: 120px; resize: vertical; }

.form-note {
  font-size: 0.82rem;
  color: var(--ink-soft);
  margin-top: 14px;
  text-align: center;
}

.form-success {
  display: none;
  margin-top: 16px;
  padding: 14px 16px;
  border-radius: 10px;
  background: rgba(111,185,44,0.12);
  color: #3f6e17;
  font-size: 0.92rem;
  font-weight: 600;
}

.form-success.show { display: block; }

/* ---------- Footer ---------- */
.site-footer {
  background: var(--ink);
  color: rgba(255,255,255,0.75);
  padding: 56px 0 28px;
}

.footer-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 32px;
  padding-bottom: 36px;
  border-bottom: 1px solid rgba(255,255,255,0.12);
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  font-size: 1.1rem;
  color: #fff;
}

.footer-brand img { height: 34px; border-radius: 6px; background: #fff; padding: 3px; }

.footer-tag { max-width: 320px; font-size: 0.9rem; margin-top: 10px; }

.footer-links {
  display: flex;
  gap: 60px;
  flex-wrap: wrap;
}

.footer-col h5 {
  color: #fff;
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin: 0 0 14px;
}

.footer-col a {
  display: block;
  text-decoration: none;
  color: rgba(255,255,255,0.75);
  font-size: 0.92rem;
  margin-bottom: 10px;
}

.footer-col a:hover { color: var(--orange); }

.footer-bottom {
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 0.82rem;
}

/* ---------- Responsive ---------- */
@media (max-width: 900px) {
  .hero .wrap,
  .story,
  .split,
  .split.reverse .split-media,
  .split.reverse .split-copy,
  .contact-wrap {
    grid-template-columns: 1fr;
  }
  .split.reverse .split-media,
  .split.reverse .split-copy { order: initial; }
  .hero-media img { height: 340px; }
  .meaning { grid-template-columns: 1fr; }
  .stats { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 760px) {
  section { padding: 64px 0; }
  .nav-links {
    position: fixed;
    top: 76px;
    left: 0;
    right: 0;
    background: #fff;
    flex-direction: column;
    align-items: flex-start;
    padding: 24px;
    gap: 18px;
    border-bottom: 1px solid var(--line);
    transform: translateY(-120%);
    transition: transform 0.25s ease;
  }
  .nav-links.open { transform: translateY(0); }
  .nav-toggle { display: block; }
  .form-row { grid-template-columns: 1fr; }
  .footer-top { flex-direction: column; }
  .stats { grid-template-columns: repeat(2, 1fr); }
}
