/* HoHo B2B — 對齊 hohoho.com.tw 官網視覺（common-work.css） */
:root {
  --hoho-yellow: #ffce00;
  --hoho-yellow-light: #ffe14c;
  --hoho-yellow-bg: rgba(255, 206, 0, 0.16);
  --hoho-yellow-pale: #fff9e6;
  --hoho-orange: #f39500;
  --hoho-blue: #2095ea;
  --hoho-blue-link: #35a6de;
  --hoho-teal: #00afc7;
  --hoho-text: #212529;
  --hoho-text-muted: #707070;
  --hoho-text-light: #b3b3b3;
  --hoho-border: #bcbdbe;
  --hoho-border-light: #ced4da;
  --hoho-bg: #ffffff;
  --hoho-bg-alt: #f8f9fa;
  --hoho-bg-warm: #f2f2f0;
  --font: "Noto Sans TC", "Microsoft JhengHei", "Roboto", sans-serif;
  --radius: 6px;
  --radius-lg: 8px;
  --shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  --shadow-card: 0 2px 4px rgba(0, 0, 0, 0.08);
  --header-h: 64px;
  --container: min(1140px, calc(100% - 2rem));
  --transition: all 0.15s ease-in-out;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font);
  font-size: 16px;
  line-height: 1.6;
  letter-spacing: 0.025rem;
  color: var(--hoho-text);
  background: var(--hoho-bg);
  -webkit-font-smoothing: antialiased;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: var(--hoho-blue-link);
  text-decoration: none;
}

a:hover {
  opacity: 0.85;
  text-decoration: underline;
}

.container {
  width: var(--container);
  margin-inline: auto;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.skip-link {
  position: absolute;
  top: -100%;
  left: 1rem;
  z-index: 9999;
  padding: 0.75rem 1rem;
  background: var(--hoho-yellow);
  color: var(--hoho-text);
  border-radius: var(--radius);
  font-weight: 700;
  text-decoration: none;
}

.skip-link:focus {
  top: 1rem;
}

/* —— 按鈕（對齊 .btn-default / .btn-accept / .btn-ghost / .btn-submit）—— */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 12px 20px;
  font-family: inherit;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.4;
  text-align: center;
  text-decoration: none;
  border: none;
  border-radius: var(--radius);
  cursor: pointer;
  appearance: none;
  outline: none;
  transition: var(--transition);
}

.btn:hover {
  opacity: 0.8;
  text-decoration: none;
}

.btn:active {
  transform: scale(0.99);
}

.btn-primary {
  color: var(--hoho-text);
  background-color: var(--hoho-yellow);
}

.btn-primary:hover {
  color: var(--hoho-text);
  opacity: 0.8;
}

.btn-outline,
.btn-ghost {
  color: var(--hoho-text);
  background-color: #fff;
  border: 1px solid var(--hoho-border);
  font-weight: 400;
}

.btn-outline:hover,
.btn-ghost:hover {
  color: var(--hoho-text);
  background-color: #fff;
  opacity: 0.8;
}

.btn-submit {
  color: #fff;
  background-color: var(--hoho-blue);
}

.btn-submit:hover {
  color: #fff;
  opacity: 0.8;
}

.btn-white {
  color: var(--hoho-text);
  background-color: #fff;
  border: 1px solid var(--hoho-border);
}

.btn-white:hover {
  color: var(--hoho-text);
  background-color: #fff;
}

.btn-lg {
  padding: 15px 24px;
  font-size: 18px;
}

.btn-block {
  width: 100%;
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: #fff;
  border-bottom: 1px solid var(--hoho-border-light);
  box-shadow: var(--shadow-card);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: var(--header-h);
  gap: 1rem;
}

@media (min-width: 992px) {
  .header-inner {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
  }

  .logo {
    justify-self: start;
  }

  .nav {
    justify-self: center;
  }

  .header-actions {
    justify-self: end;
  }

  .nav-toggle {
    justify-self: end;
    grid-column: 3;
  }
}

.logo img {
  height: 72px;
  width: auto;
}

.nav-list {
  display: none;
  list-style: none;
  margin: 0;
  padding: 0;
  gap: 2rem;
}

.nav-list a {
  color: var(--hoho-text);
  font-weight: 500;
  font-size: 15px;
  text-decoration: none;
}

.nav-list a:hover {
  color: var(--hoho-orange);
  opacity: 1;
  text-decoration: none;
}

.header-actions {
  display: none;
  align-items: center;
  gap: 0.5rem;
}

.header-actions .btn-primary {
  padding: 10px 22px;
  font-size: 15px;
  min-width: 108px;
}

.nav-toggle {
  display: flex;
  flex-direction: column;
  gap: 5px;
  padding: 0.5rem;
  background: none;
  border: none;
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--hoho-text);
  border-radius: 2px;
}

.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  padding: 0.75rem 1rem 1rem;
  border-top: 1px solid var(--hoho-border-light);
  background: #fff;
}

.mobile-nav[hidden] {
  display: none;
}

.mobile-nav a {
  padding: 0.75rem;
  color: var(--hoho-text);
  font-weight: 500;
  text-decoration: none;
}

.mobile-nav .btn {
  margin-top: 0.5rem;
}

@media (min-width: 992px) {
  .nav-list {
    display: flex;
  }

  .header-actions {
    display: flex;
  }

  .nav-toggle {
    display: none;
  }

  .mobile-nav {
    display: none !important;
  }
}

/* Hero */
.hero {
  padding: 2rem 0 0;
  background: #fff;
}

.hero .container {
  width: min(1240px, calc(100% - 2rem));
}

.hero-grid {
  display: grid;
  gap: 2rem;
  align-items: center;
}

@media (min-width: 992px) {
  .hero-grid {
    grid-template-columns: minmax(0, 480px) minmax(0, 1fr);
    gap: 1rem 1.25rem;
    align-items: center;
  }
}

@media (min-width: 1200px) {
  .hero-grid {
    grid-template-columns: minmax(0, 500px) minmax(0, 1.35fr);
    gap: 1rem 1.5rem;
  }
}

.hero-tag {
  display: inline-block;
  margin: 0 0 1rem;
  padding: 6px 14px;
  font-size: 13px;
  font-weight: 700;
  line-height: 1.4;
  color: var(--hoho-orange);
  background: rgba(243, 149, 0, 0.12);
  border-radius: 999px;
}

.hero h1 {
  font-size: clamp(1.65rem, 3.2vw, 2.125rem);
  font-weight: 700;
  line-height: 1.45;
  margin: 0 0 1rem;
  color: var(--hoho-text);
}

.hero-lead {
  font-size: 15px;
  line-height: 1.75;
  color: var(--hoho-text-muted);
  margin: 0 0 1.5rem;
  max-width: 28em;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.75rem 1rem;
  list-style: none;
  margin: 0 0 1.5rem;
  padding: 0;
  max-width: 420px;
}

.hero-stats li {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
}

.hero-stats strong {
  font-size: clamp(1.25rem, 2.5vw, 1.5rem);
  font-weight: 700;
  color: var(--hoho-orange);
  line-height: 1.2;
  white-space: nowrap;
}

.hero-stats span {
  font-size: 12px;
  color: var(--hoho-text-muted);
  line-height: 1.35;
}

.hero-cta {
  max-width: 280px;
}

.btn-hero-cta {
  width: 100%;
  padding: 14px 24px;
  font-size: 17px;
}

.hero-visual {
  margin: 0;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
}

@media (min-width: 992px) {
  .hero-visual {
    min-width: 0;
    width: 100%;
    max-width: none;
  }
}

.hero-visual img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  object-position: center;
}

@media (max-width: 991px) {
  .hero-stats {
    max-width: none;
  }

  .hero-cta {
    max-width: none;
  }

  .hero-visual {
    order: -1;
  }
}

/* Trust bar */
.trust-bar {
  padding: 1.75rem 0;
  margin-top: 2.5rem;
  background: var(--hoho-text);
  color: #fff;
}

.trust-grid {
  display: grid;
  gap: 1.5rem;
}

@media (min-width: 768px) {
  .trust-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
  }
}

.trust-grid h2 {
  font-size: 1.1rem;
  font-weight: 700;
  margin: 0 0 0.4rem;
  line-height: 1.45;
}

.trust-grid p {
  margin: 0;
  font-size: 14px;
  opacity: 0.88;
}

.accent {
  color: var(--hoho-yellow);
}

/* Sections */
.section {
  padding: 3.5rem 0;
}

.section-alt {
  background: var(--hoho-bg-warm);
}

.section-header {
  text-align: center;
  max-width: 40rem;
  margin: 0 auto 2rem;
}

.section-header.align-left {
  text-align: left;
  margin-left: 0;
  margin-right: 0;
}

.section-header h2 {
  font-size: clamp(1.4rem, 2.5vw, 1.75rem);
  font-weight: 700;
  margin: 0 0 0.65rem;
  line-height: 1.35;
  color: var(--hoho-text);
}

.section-header p {
  margin: 0;
  color: var(--hoho-text-muted);
  font-size: 15px;
}

/* Service cards — 3×2 網格 */
.service-grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: 1fr;
}

@media (min-width: 600px) {
  .service-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 992px) {
  .service-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 1.15rem;
  }
}

.card-grid {
  display: grid;
  gap: 1rem;
}

.card-grid-3 {
  grid-template-columns: 1fr;
}

@media (min-width: 768px) {
  .card-grid-3 {
    grid-template-columns: repeat(3, 1fr);
  }
}

.card {
  display: flex;
  flex-direction: column;
  padding: 1.35rem 1.25rem;
  background: #fff;
  border: 1px solid var(--hoho-border-light);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card);
  transition: var(--transition);
}

.service-grid .card {
  height: 100%;
}

.card:hover {
  border-color: var(--hoho-yellow);
  box-shadow: var(--shadow);
}

.card h3 {
  margin: 0 0 0.85rem;
  padding-bottom: 0.65rem;
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--hoho-text);
  border-bottom: 3px solid var(--hoho-yellow);
}

.card ul {
  flex: 1;
  margin: 0;
  padding-left: 1.15rem;
  font-size: 14px;
  color: var(--hoho-text-muted);
}

.card li + li {
  margin-top: 0.3rem;
}

.card-benefit {
  margin: 1rem 0 0;
  padding: 10px 14px;
  font-size: 13px;
  font-weight: 500;
  line-height: 1.5;
  text-align: center;
  color: var(--hoho-text);
  background: #e3f2fd;
  border-radius: var(--radius);
}

.card--extended .card-benefit {
  margin-top: auto;
  padding-top: 12px;
  padding-bottom: 12px;
}

/* Industry */
.industry-grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: 1fr;
}

@media (min-width: 600px) {
  .industry-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 992px) {
  .industry-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.industry-card {
  display: flex;
  flex-direction: column;
  padding: 0;
  background: #fff;
  border-radius: var(--radius-lg);
  border: 1px solid var(--hoho-border-light);
  box-shadow: var(--shadow-card);
  overflow: hidden;
  transition: var(--transition);
}

.industry-card:hover {
  border-color: var(--hoho-yellow);
  box-shadow: var(--shadow);
}

.industry-card__media {
  margin: 0;
  aspect-ratio: 5 / 3;
  overflow: hidden;
  background: var(--hoho-bg-alt);
}

.industry-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: transform 0.35s ease;
}

.industry-card:hover .industry-card__media img {
  transform: scale(1.03);
}

.industry-card__body {
  display: flex;
  flex-direction: column;
  flex: 1;
  padding: 1.15rem 1.25rem 1.25rem;
}

.industry-card h3 {
  margin: 0 0 0.65rem;
  font-size: 1rem;
  font-weight: 700;
}

.industry-card ul {
  margin: 0;
  padding-left: 1.15rem;
  font-size: 14px;
  color: var(--hoho-text-muted);
}

.industry-card-featured {
  border: 2px solid var(--hoho-yellow);
}

.industry-card-featured .industry-card__body {
  background: var(--hoho-yellow-bg);
}

.industry-highlight {
  font-size: 13px;
  font-weight: 700;
  color: var(--hoho-orange);
  margin: -0.2rem 0 0.5rem;
}

.text-link {
  display: inline-block;
  margin-top: 0.65rem;
  font-weight: 700;
  color: var(--hoho-blue-link);
  text-decoration: none;
}

.text-link:hover {
  text-decoration: underline;
  opacity: 1;
}

/* Logo 輪播 — 各類商用方案下方 */
.logo-carousel {
  position: relative;
  padding: 2.5rem 0 3rem;
  background: linear-gradient(180deg, #fff 0%, #fff8e8 45%, #fff5d6 100%);
  overflow: hidden;
}

.logo-carousel__viewport {
  overflow: hidden;
  width: min(1240px, calc(100% - 2rem));
  margin-inline: auto;
}

.logo-carousel__track {
  display: flex;
  gap: 1.25rem;
  transition: transform 0.55s ease;
  will-change: transform;
}

.logo-carousel__item {
  flex: 0 0 calc(50% - 0.625rem);
  min-width: 0;
  text-align: center;
}

@media (min-width: 768px) {
  .logo-carousel__item {
    flex: 0 0 calc(33.333% - 0.834rem);
  }
}

@media (min-width: 992px) {
  .logo-carousel__item {
    flex: 0 0 calc(25% - 0.9375rem);
  }
}

.logo-carousel__card {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 150px;
  padding: 1.5rem 1.75rem;
  background: #fff;
  border-radius: var(--radius-lg);
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
  border: 1px solid rgba(0, 0, 0, 0.04);
}

.logo-carousel__card img {
  max-width: 100%;
  max-height: 108px;
  width: auto;
  height: auto;
  object-fit: contain;
}

.logo-carousel__caption {
  margin: 0.75rem 0 0;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.55;
  color: var(--hoho-text);
}

.logo-carousel__controls {
  pointer-events: none;
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: min(1240px, calc(100% - 1rem));
  margin-inline: auto;
  left: 0;
  right: 0;
  padding: 0 0.25rem;
}

.logo-carousel__btn {
  pointer-events: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  padding: 0;
  font-size: 28px;
  line-height: 1;
  color: var(--hoho-text);
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid var(--hoho-border-light);
  border-radius: 50%;
  box-shadow: var(--shadow-card);
  cursor: pointer;
  transition: var(--transition);
}

.logo-carousel__btn:hover {
  background: var(--hoho-yellow);
  border-color: var(--hoho-yellow);
  opacity: 1;
}

@media (max-width: 767px) {
  .logo-carousel__controls {
    display: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  .logo-carousel__track {
    transition: none;
  }
}

/* 實作案例 */
.case-showcase {
  padding: 2.5rem 0 3rem;
  background: #fff;
}

.case-showcase__label {
  margin: 0 0 1.25rem;
  font-size: 14px;
  font-weight: 500;
  color: var(--hoho-text-muted);
}

.case-showcase__tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
}

.case-showcase__tab {
  padding: 0.5rem 1rem;
  font-family: inherit;
  font-size: 14px;
  font-weight: 500;
  color: var(--hoho-text-muted);
  background: var(--hoho-bg-alt);
  border: 1px solid var(--hoho-border-light);
  border-radius: 999px;
  cursor: pointer;
  transition: var(--transition);
}

.case-showcase__tab:hover {
  color: var(--hoho-text);
  border-color: var(--hoho-yellow);
}

.case-showcase__tab.is-active {
  color: var(--hoho-text);
  font-weight: 700;
  background: var(--hoho-yellow-bg);
  border-color: var(--hoho-yellow);
}

.case-panel {
  display: none;
}

.case-panel.is-active {
  display: block;
}

.case-panel__grid {
  display: grid;
  gap: 2rem;
  align-items: start;
}

@media (min-width: 992px) {
  .case-panel__grid {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1.15fr);
    gap: 2.5rem;
  }
}

.case-panel__title {
  margin: 0 0 1.25rem;
  font-size: clamp(1.35rem, 2.5vw, 1.65rem);
  font-weight: 700;
  line-height: 1.35;
  color: var(--hoho-text);
}

.case-panel__block + .case-panel__block {
  margin-top: 1rem;
}

.case-panel__block h4 {
  margin: 0 0 0.5rem;
  font-size: 15px;
  font-weight: 700;
  color: var(--hoho-text);
}

.case-panel__block ul {
  margin: 0;
  padding-left: 1.15rem;
  font-size: 14px;
  line-height: 1.75;
  color: var(--hoho-text-muted);
}

.case-panel__block li + li {
  margin-top: 0.25rem;
}

.case-panel__images {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
}

.case-panel__images img {
  width: 100%;
  height: 100%;
  min-height: 160px;
  object-fit: cover;
  object-position: center;
  border-radius: var(--radius-lg);
  display: block;
}

@media (min-width: 768px) {
  .case-panel__images img {
    min-height: 220px;
  }
}

.case-showcase__nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin-top: 1.75rem;
}

.case-showcase__arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  padding: 0;
  font-size: 24px;
  line-height: 1;
  color: var(--hoho-text);
  background: #fff;
  border: 1px solid var(--hoho-border-light);
  border-radius: 50%;
  cursor: pointer;
  transition: var(--transition);
}

.case-showcase__arrow:hover {
  background: var(--hoho-yellow);
  border-color: var(--hoho-yellow);
}

.case-showcase__dots {
  display: flex;
  gap: 0.5rem;
}

.case-showcase__dot {
  width: 8px;
  height: 8px;
  padding: 0;
  border: none;
  border-radius: 50%;
  background: var(--hoho-border);
  cursor: pointer;
  transition: var(--transition);
}

.case-showcase__dot.is-active {
  width: 24px;
  border-radius: 4px;
  background: var(--hoho-yellow);
}

/* IT split */
.split {
  display: grid;
  gap: 1.5rem;
}

@media (min-width: 992px) {
  .split {
    grid-template-columns: 1fr 1fr;
    align-items: start;
  }
}

.check-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.check-list li {
  position: relative;
  padding-left: 1.5rem;
  margin-bottom: 0.55rem;
  font-size: 15px;
}

.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.45em;
  width: 8px;
  height: 8px;
  background: var(--hoho-yellow);
  border-radius: 2px;
}

.team-panel {
  padding: 1.35rem;
  background: var(--hoho-text);
  color: #fff;
  border-radius: var(--radius);
  border-top: 4px solid var(--hoho-yellow);
}

.team-panel h3 {
  margin: 0 0 1rem;
  font-size: 1.15rem;
  font-weight: 700;
}

.team-block + .team-block {
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
}

.team-block h4 {
  margin: 0 0 0.45rem;
  font-size: 14px;
  font-weight: 700;
  color: var(--hoho-yellow);
}

.team-block ul {
  margin: 0;
  padding-left: 1.1rem;
  font-size: 14px;
  opacity: 0.92;
}

.it-carousel {
  position: relative;
}

.it-carousel__viewport {
  overflow: hidden;
  border-radius: var(--radius);
}

.it-carousel__track {
  display: flex;
  transition: transform 0.55s ease;
}

.it-carousel__slide {
  flex: 0 0 100%;
  width: 100%;
  aspect-ratio: 3 / 2;
  height: auto;
  display: block;
  object-fit: cover;
}

.it-carousel__arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  font-size: 1.4rem;
  line-height: 1;
  color: var(--hoho-text);
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid var(--hoho-border-light);
  border-radius: 999px;
  cursor: pointer;
  transition: var(--transition);
}

.it-carousel__arrow:hover {
  background: #fff;
  border-color: var(--hoho-yellow);
}

.it-carousel__arrow--prev {
  left: 0.75rem;
}

.it-carousel__arrow--next {
  right: 0.75rem;
}

.it-carousel__dots {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 0.85rem;
}

.it-carousel__dot {
  width: 9px;
  height: 9px;
  padding: 0;
  border: none;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.4);
  cursor: pointer;
  transition: var(--transition);
}

.it-carousel__dot.is-active {
  width: 22px;
  background: var(--hoho-yellow);
}

/* Plans */
.plan-grid {
  display: grid;
  gap: 1rem;
}

@media (min-width: 768px) {
  .plan-grid {
    grid-template-columns: repeat(3, 1fr);
    align-items: stretch;
  }
}

.plan-card {
  display: flex;
  flex-direction: column;
  padding: 1.35rem;
  background: #fff;
  border: 1px solid var(--hoho-border-light);
  border-radius: var(--radius);
  box-shadow: var(--shadow-card);
}

.plan-card-popular {
  border: 2px solid var(--hoho-yellow);
  box-shadow: 0 4px 16px rgba(255, 206, 0, 0.35);
  position: relative;
}

.plan-card-popular::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--hoho-yellow);
  border-radius: var(--radius) var(--radius) 0 0;
}

.plan-tag {
  font-size: 13px;
  font-weight: 700;
  color: var(--hoho-orange);
  margin: 0 0 0.4rem;
}

.plan-card h3 {
  margin: 0 0 0.3rem;
  font-size: 1.05rem;
  font-weight: 700;
}

.plan-meta {
  font-size: 14px;
  color: var(--hoho-text-muted);
  margin: 0 0 1rem;
  padding-bottom: 0.75rem;
  border-bottom: 1px dashed var(--hoho-border-light);
}

.plan-card ul {
  flex: 1;
  margin: 0 0 1.15rem;
  padding-left: 1.15rem;
  font-size: 14px;
  color: var(--hoho-text-muted);
}

/* Process */
.process-steps {
  display: grid;
  gap: 1rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

@media (min-width: 768px) {
  .process-steps {
    grid-template-columns: repeat(4, 1fr);
  }
}

.process-steps li {
  text-align: center;
  padding: 1.25rem 1rem;
  background: #fff;
  border: 1px solid var(--hoho-border-light);
  border-radius: var(--radius);
  box-shadow: var(--shadow-card);
}

.step-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  margin-bottom: 0.65rem;
  background: var(--hoho-yellow);
  color: var(--hoho-text);
  font-weight: 700;
  font-size: 18px;
  border-radius: var(--radius);
}

.process-steps h3 {
  margin: 0 0 0.3rem;
  font-size: 15px;
  font-weight: 700;
}

.process-steps p {
  margin: 0;
  font-size: 13px;
  color: var(--hoho-text-muted);
}

/* FAQ */
.faq-layout {
  display: grid;
  gap: 1.5rem;
}

@media (min-width: 768px) {
  .faq-layout {
    grid-template-columns: 0.85fr 1.15fr;
    align-items: start;
  }
}

.faq-item {
  border: 1px solid var(--hoho-border-light);
  border-radius: var(--radius);
  margin-bottom: 0.65rem;
  background: #fff;
  overflow: hidden;
}

.faq-item summary {
  padding: 1rem 1.15rem;
  font-weight: 700;
  font-size: 15px;
  cursor: pointer;
  list-style: none;
  color: var(--hoho-text);
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  content: "+";
  float: right;
  color: var(--hoho-orange);
  font-weight: 700;
}

.faq-item[open] summary::after {
  content: "−";
}

.faq-item[open] summary {
  background: var(--hoho-yellow-bg);
  border-bottom: 1px solid var(--hoho-border-light);
}

.faq-item p {
  margin: 0;
  padding: 0.85rem 1.15rem 1rem;
  font-size: 14px;
  color: var(--hoho-text-muted);
}

/* CTA banner */
.cta-banner {
  padding: 2.5rem 0;
  background: var(--hoho-yellow);
  color: var(--hoho-text);
  border-top: 4px solid var(--hoho-yellow-light);
  border-bottom: 4px solid var(--hoho-yellow-light);
}

.cta-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1.25rem;
}

.cta-inner h2 {
  margin: 0 0 0.35rem;
  font-size: 1.4rem;
  font-weight: 700;
}

.cta-inner p {
  margin: 0;
  font-size: 15px;
}

.cta-inner .btn-white:hover {
  opacity: 0.8;
}

/* Contact */
.contact-grid {
  display: grid;
  gap: 2rem;
}

@media (min-width: 992px) {
  .contact-grid {
    grid-template-columns: 0.9fr 1.1fr;
  }
}

.contact-info {
  font-style: normal;
  font-size: 15px;
  color: var(--hoho-text-muted);
}

.contact-info p {
  margin: 0 0 1rem;
}

.contact-info a {
  color: var(--hoho-blue-link);
}

.contact-form {
  padding: 1.5rem;
  background: #fff;
  border: 1px solid var(--hoho-border-light);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.form-label {
  font-weight: 700;
  font-size: 15px;
  margin: 0 0 0.5rem;
}

.radio-group {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  margin-bottom: 1.15rem;
  font-size: 14px;
}

.radio-group label {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  cursor: pointer;
}

.form-row {
  margin-bottom: 0.9rem;
}

.form-row label {
  display: block;
  font-weight: 700;
  font-size: 14px;
  margin-bottom: 0.3rem;
}

.form-row input,
.form-row select,
.form-row textarea {
  width: 100%;
  padding: 10px 12px;
  font-family: inherit;
  font-size: 16px;
  color: var(--hoho-text);
  border: 1px solid var(--hoho-border);
  border-radius: var(--radius);
  background: #fff;
  transition: var(--transition);
}

.form-row input:focus,
.form-row select:focus,
.form-row textarea:focus {
  outline: 1px solid var(--hoho-yellow);
  outline-offset: -1px;
  border-color: var(--hoho-yellow);
}

.checkbox-label {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  font-size: 13px;
  margin-bottom: 1.15rem;
  cursor: pointer;
  color: var(--hoho-text-muted);
}

.checkbox-label a {
  color: var(--hoho-blue-link);
}

.form-hint {
  margin-top: 0.65rem;
  font-size: 14px;
  color: var(--hoho-text-muted);
  min-height: 1.25em;
}

.form-hint.success {
  color: #0d7a4a;
}

.form-hint.error {
  color: #c0392b;
}

fieldset {
  border: none;
  margin: 0;
  padding: 0;
}

/* Footer — 官網淺灰底 */
.site-footer {
  padding: 2.75rem 0 0;
  background: #2b2b2b;
  color: rgba(255, 255, 255, 0.75);
  font-size: 14px;
  border-top: 1px solid #2b2b2b;
}

.footer-grid {
  display: grid;
  gap: 2rem 1.5rem;
  padding-bottom: 2rem;
}

@media (min-width: 640px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (min-width: 992px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr 1.4fr;
  }
}

.site-footer a {
  color: rgba(255, 255, 255, 0.75);
  transition: var(--transition);
}

.site-footer a:hover {
  color: var(--hoho-yellow);
  text-decoration: none;
}

.footer-heading {
  font-size: 15px;
  font-weight: 700;
  margin: 0 0 0.85rem;
  padding-bottom: 0.5rem;
  color: #fff;
  border-bottom: 2px solid var(--hoho-yellow);
  display: inline-block;
}

.site-footer ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.site-footer li + li {
  margin-top: 0.45rem;
}

.footer-contact p {
  margin: 0 0 0.6rem;
  line-height: 1.65;
}

.footer-phone {
  font-size: 1.05rem;
  font-weight: 700;
}

.footer-phone a {
  color: #fff;
}

.footer-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-top: 0.9rem;
}

.btn-sm {
  padding: 0.5rem 1rem;
  font-size: 13px;
}

.footer-bottom {
  padding: 1.25rem 0;
  background: #2b2b2b;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.6);
  font-size: 13px;
}

.footer-bottom__inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 0.5rem 1.5rem;
}

.footer-company {
  margin: 0;
  line-height: 1.6;
}

.footer-copy {
  margin: 0;
  white-space: nowrap;
}

/* 浮動諮詢 — 對齊官網側邊「企業諮詢」 */
.float-cta {
  position: fixed;
  right: 0;
  bottom: 100px;
  z-index: 90;
  padding: 10px 14px;
  background: var(--hoho-yellow);
  color: var(--hoho-text) !important;
  font-weight: 700;
  font-size: 14px;
  line-height: 1.3;
  text-align: center;
  text-decoration: none;
  border-radius: var(--radius) 0 0 var(--radius);
  box-shadow: var(--shadow);
  border: 1px solid var(--hoho-yellow-light);
  border-right: none;
}

.float-cta:hover {
  color: var(--hoho-text) !important;
  background: var(--hoho-yellow-light);
  opacity: 1;
  text-decoration: none;
}

@media (min-width: 992px) {
  .float-cta {
    bottom: 80px;
  }
}
