:root {
  --ink: #181113;
  --night: #151015;
  --night-2: #26191c;
  --paper: #fffaf2;
  --surface: #fffdf8;
  --muted: #74695f;
  --line: #eadbc7;
  --amber: #f2a544;
  --amber-2: #ffd18a;
  --teal: #1ba7a6;
  --rose: #d64f68;
  --white: #ffffff;
  --shadow: 0 18px 44px rgba(24, 17, 19, 0.16);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: "PingFang TC", "Noto Sans TC", "Microsoft JhengHei", system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  line-height: 1.6;
}

body.menu-open {
  overflow: hidden;
}

img,
svg {
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 99;
  transform: translateY(-160%);
  border-radius: 8px;
  background: var(--white);
  color: var(--ink);
  padding: 10px 14px;
  box-shadow: var(--shadow);
}

.skip-link:focus {
  transform: translateY(0);
}

.container {
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
}

.site-header {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  z-index: 20;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(21, 16, 21, 0.74);
  color: var(--white);
  backdrop-filter: blur(18px);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 72px;
  gap: 22px;
}

.brand {
  display: inline-flex;
  align-items: center;
  min-width: 162px;
  gap: 10px;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 8px;
  background: linear-gradient(135deg, var(--amber), var(--rose));
  color: var(--night);
  font-weight: 900;
}

.brand strong,
.brand small {
  display: block;
}

.brand small {
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.78rem;
}

.site-nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 8px;
  font-size: 0.95rem;
}

.site-nav a {
  border-radius: 8px;
  padding: 10px 12px;
  color: rgba(255, 255, 255, 0.86);
}

.site-nav a:hover,
.site-nav a:focus-visible {
  background: rgba(255, 255, 255, 0.1);
  color: var(--white);
}

.site-nav .nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-left: 4px;
  background: var(--amber);
  color: var(--night);
  font-weight: 800;
}

.site-nav .nav-cta:hover,
.site-nav .nav-cta:focus-visible {
  background: var(--amber-2);
  color: var(--night);
}

.menu-button {
  display: none;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
  color: var(--white);
  cursor: pointer;
}

.hero {
  isolation: isolate;
  position: relative;
  min-height: 86svh;
  display: flex;
  align-items: center;
  padding: 112px 0 56px;
  overflow: hidden;
  color: var(--white);
  background: var(--night);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(14, 10, 12, 0.96) 0%, rgba(14, 10, 12, 0.72) 39%, rgba(14, 10, 12, 0.2) 72%),
    linear-gradient(0deg, rgba(14, 10, 12, 0.34), rgba(14, 10, 12, 0.05));
  pointer-events: none;
}

.hero::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1;
  height: 120px;
  background: linear-gradient(0deg, var(--night), rgba(21, 16, 21, 0));
  pointer-events: none;
}

.hero-media {
  position: absolute;
  inset: 0;
  z-index: 0;
}

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

.hero-inner {
  position: relative;
  z-index: 2;
}

.hero-copy {
  max-width: 690px;
}

.breadcrumb {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 18px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.88rem;
}

.breadcrumb a:hover,
.breadcrumb a:focus-visible {
  color: var(--white);
}

.breadcrumb span::before {
  content: "/";
  margin-right: 8px;
  color: rgba(255, 255, 255, 0.38);
}

.eyebrow {
  margin: 0 0 10px;
  color: var(--teal);
  font-size: 0.9rem;
  font-weight: 900;
  text-transform: uppercase;
}

.hero h1,
.section h2 {
  margin: 0;
  line-height: 1.08;
}

.hero h1 {
  font-size: 3.5rem;
  font-weight: 950;
}

.hero-lede {
  max-width: 620px;
  margin: 22px 0 0;
  color: rgba(255, 255, 255, 0.84);
  font-size: 1.08rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  border: 1px solid transparent;
  border-radius: 8px;
  padding: 12px 18px;
  gap: 10px;
  font-weight: 900;
}

.btn-primary {
  background: var(--amber);
  color: var(--night);
}

.btn-primary:hover,
.btn-primary:focus-visible {
  background: var(--amber-2);
}

.btn-secondary {
  border-color: rgba(255, 255, 255, 0.24);
  background: rgba(255, 255, 255, 0.08);
  color: var(--white);
}

.btn-secondary:hover,
.btn-secondary:focus-visible {
  background: rgba(255, 255, 255, 0.16);
}

.hero-notes {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.hero-notes span {
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
  padding: 8px 11px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.9rem;
}

.trust-strip {
  background: var(--night);
  color: var(--white);
  padding: 24px 0;
}

.strip-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.strip-grid div {
  border-left: 3px solid var(--amber);
  padding-left: 14px;
}

.strip-grid strong,
.strip-grid span {
  display: block;
}

.strip-grid span {
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.92rem;
}

.section {
  padding: 84px 0;
}

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

.section-dark {
  background:
    linear-gradient(135deg, rgba(242, 165, 68, 0.1), rgba(27, 167, 166, 0.08)),
    var(--night);
  color: var(--white);
}

.section-process {
  background: #f3e9dc;
}

.section-recruit {
  background:
    linear-gradient(110deg, rgba(27, 167, 166, 0.13), rgba(214, 79, 104, 0.09)),
    var(--surface);
}

.section-faq {
  background: #f8f0e5;
}

.section-contact {
  background: var(--night-2);
  color: var(--white);
}

.section-heading {
  max-width: 720px;
  margin-bottom: 34px;
  text-align: center;
}

.section-heading:not(.align-left) {
  margin-right: auto;
  margin-left: auto;
}

.section-heading.align-left {
  text-align: left;
}

.section h2 {
  font-size: 2.35rem;
  font-weight: 950;
}

.section-heading p:not(.eyebrow) {
  margin: 14px 0 0;
  color: var(--muted);
  font-size: 1.03rem;
}

.section-dark .section-heading p:not(.eyebrow),
.section-contact .contact-copy p {
  color: rgba(255, 255, 255, 0.7);
}

.card-grid,
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.service-card,
.pricing-card {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
  padding: 24px;
  box-shadow: 0 12px 30px rgba(24, 17, 19, 0.08);
}

.service-card svg,
.recruit-list svg {
  width: 30px;
  height: 30px;
  color: var(--rose);
}

.service-card h3,
.pricing-card h3 {
  margin: 18px 0 8px;
  font-size: 1.2rem;
}

.service-card p,
.pricing-card li {
  color: var(--muted);
}

.service-card p {
  margin: 0;
}

.process-layout,
.area-layout,
.faq-layout,
.recruit-layout,
.contact-layout {
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  gap: 46px;
  align-items: start;
}

.steps {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.steps li {
  min-height: 190px;
  border: 1px solid #dfcdb6;
  border-radius: 8px;
  background: rgba(255, 253, 248, 0.72);
  padding: 22px;
}

.steps span {
  color: var(--rose);
  font-weight: 950;
}

.steps strong {
  display: block;
  margin-top: 10px;
  font-size: 1.12rem;
}

.steps p {
  margin: 8px 0 0;
  color: var(--muted);
}

.pricing-card {
  border-color: rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.06);
  box-shadow: none;
}

.pricing-card.featured {
  border-color: rgba(242, 165, 68, 0.72);
  background: rgba(242, 165, 68, 0.1);
}

.plan-label {
  margin: 0;
  color: var(--teal);
  font-weight: 900;
}

.pricing-card h3 {
  color: var(--white);
}

.price {
  margin: 12px 0 18px;
  color: var(--amber-2);
  font-size: 1.75rem;
  font-weight: 950;
}

.price span {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.98rem;
  font-weight: 700;
}

.pricing-card ul {
  margin: 0;
  padding-left: 20px;
}

.pricing-card li {
  color: rgba(255, 255, 255, 0.72);
}

.pricing-card li + li {
  margin-top: 8px;
}

.area-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.area-list span {
  border: 1px solid #dfcdb6;
  border-radius: 8px;
  background: var(--surface);
  padding: 12px 16px;
  font-weight: 800;
  box-shadow: 0 8px 20px rgba(24, 17, 19, 0.06);
}

.faq-list {
  display: grid;
  gap: 12px;
}

.faq-list article {
  border: 1px solid #dfcdb6;
  border-radius: 8px;
  background: var(--surface);
  padding: 20px;
  box-shadow: 0 10px 24px rgba(24, 17, 19, 0.06);
}

.faq-list h3 {
  margin: 0 0 8px;
  font-size: 1.08rem;
}

.faq-list p {
  margin: 0;
  color: var(--muted);
}

.recruit-layout {
  align-items: center;
}

.recruit-layout h2,
.contact-copy h2 {
  margin: 0;
  font-size: 2.35rem;
  line-height: 1.08;
}

.recruit-layout p {
  max-width: 520px;
  color: var(--muted);
}

.recruit-list {
  display: grid;
  gap: 12px;
}

.recruit-list article {
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 8px 14px;
  align-items: center;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 253, 248, 0.78);
  padding: 18px;
}

.recruit-list span {
  grid-column: 2;
  color: var(--muted);
}

.contact-layout {
  align-items: center;
}

.contact-panel {
  display: grid;
  gap: 12px;
}

.contact-row {
  display: grid;
  grid-template-columns: 36px 84px 1fr;
  align-items: center;
  gap: 12px;
  min-height: 66px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.07);
  padding: 14px 16px;
}

.contact-row:hover,
.contact-row:focus-visible {
  background: rgba(255, 255, 255, 0.12);
}

.contact-row svg {
  color: var(--amber);
}

.contact-row span {
  color: rgba(255, 255, 255, 0.64);
}

.contact-row strong {
  overflow-wrap: anywhere;
}

.site-footer {
  background: #0f0b0d;
  color: rgba(255, 255, 255, 0.68);
  padding: 24px 0;
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  font-size: 0.9rem;
}

.footer-inner p {
  margin: 0;
}

[data-lucide] {
  width: 19px;
  height: 19px;
  flex: 0 0 auto;
}

@media (min-width: 720px) {
  .hero h1 {
    font-size: 5.35rem;
  }

  .hero-lede {
    font-size: 1.18rem;
  }
}

@media (min-width: 1040px) {
  .hero h1 {
    font-size: 6.6rem;
  }
}

@media (max-width: 900px) {
  .menu-button {
    display: inline-flex;
  }

  .site-nav {
    position: fixed;
    top: 72px;
    right: 0;
    left: 0;
    display: grid;
    justify-content: stretch;
    gap: 6px;
    padding: 14px 16px 18px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.14);
    background: rgba(21, 16, 21, 0.96);
    transform: translateY(-130%);
    transition: transform 180ms ease;
  }

  .site-nav.is-open {
    transform: translateY(0);
  }

  .site-nav a,
  .site-nav .nav-cta {
    justify-content: flex-start;
    margin-left: 0;
  }

  .strip-grid,
  .card-grid,
  .pricing-grid,
  .process-layout,
  .area-layout,
  .faq-layout,
  .recruit-layout,
  .contact-layout {
    grid-template-columns: 1fr;
  }

  .process-layout,
  .area-layout,
  .faq-layout,
  .recruit-layout,
  .contact-layout {
    gap: 28px;
  }
}

@media (max-width: 640px) {
  .container {
    width: min(100% - 24px, 1120px);
  }

  .hero {
    min-height: 82svh;
    padding-top: 106px;
  }

  .hero::before {
    background:
      linear-gradient(90deg, rgba(14, 10, 12, 0.94) 0%, rgba(14, 10, 12, 0.72) 56%, rgba(14, 10, 12, 0.36) 100%);
  }

  .hero-media img {
    object-position: 58% center;
  }

  .hero h1 {
    font-size: 3.15rem;
  }

  .hero-actions {
    display: grid;
  }

  .btn {
    width: 100%;
  }

  .hero-notes span {
    width: 100%;
  }

  .section {
    padding: 62px 0;
  }

  .section h2,
  .recruit-layout h2,
  .contact-copy h2 {
    font-size: 2rem;
  }

  .steps {
    grid-template-columns: 1fr;
  }

  .steps li {
    min-height: auto;
  }

  .contact-row {
    grid-template-columns: 32px 1fr;
  }

  .contact-row strong {
    grid-column: 2;
  }

  .footer-inner {
    display: grid;
  }
}
