:root {
  --brand-yellow: #f5c000;
  --brand-ink: #111111;
  --brand-emerald: #0f766e;
  --brand-sand: #faf6eb;
  --brand-ivory: #fffdf7;
  --brand-storm: #1f2937;
  --radius-lg: 1.2rem;
  --radius-md: 0.9rem;
  --shadow-soft: 0 14px 32px rgba(0, 0, 0, 0.1);
}

* {
  box-sizing: border-box;
}

html,
body {
  width: 100%;
  overflow-x: hidden;
}

body {
  margin: 0;
  color: var(--brand-storm);
  font-family: "Noto Sans TC", "Microsoft JhengHei", sans-serif;
  line-height: 1.65;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  color: var(--brand-ink);
  font-family: "Noto Serif TC", "Microsoft JhengHei", serif;
  letter-spacing: 0.01em;
}

a {
  color: var(--brand-emerald);
  text-decoration: none;
}

a:hover {
  color: #0b5e58;
}

.site-navbar .navbar-brand {
  display: flex;
  align-items: center;
  color: #ffffff;
  font-size: 1.75rem;
  font-weight: 700;
  letter-spacing: 0.03em;
}

.site-navbar .navbar-brand i {
  color: var(--brand-yellow);
}

.site-navbar .navbar-toggler {
  border: 1px solid rgba(255, 255, 255, 0.45);
  padding: 0.5rem 0.65rem;
}

.site-navbar .navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255,255,255,0.94%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

.site-navbar .navbar-toggler:focus {
  box-shadow: 0 0 0 0.2rem rgba(245, 192, 0, 0.35);
}

.site-navbar .nav-link {
  color: #222222;
  font-size: 1.25rem;
  border-radius: 999px;
  min-height: 44px;
  display: flex;
  align-items: center;
  padding: 0.14rem 1rem !important;
  transition:
    background-color 0.2s ease,
    color 0.2s ease;
}

.site-navbar .nav-link:hover,
.site-navbar .nav-link.active {
  color: #0066cc;
  background: #e4eefb;
}

.site-navbar .dropdown-menu {
  margin-top: 1rem;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: #1b1f27;
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.22);
  padding: 0.38rem;
  min-width: 176px;
}

.site-navbar .dropdown-item {
  border-radius: 8px;
  color: rgba(255, 255, 255, 0.92);
  font-size: 1.25rem;
  padding: 0.48rem 0.72rem;
  margin-bottom: 0.42rem;
}

.site-navbar .dropdown-item:hover,
.site-navbar .dropdown-item.active {
  color: #111111;
  background: var(--brand-yellow);
}

@media (min-width: 992px) {
  .site-navbar .dropdown {
    position: relative;
  }

  .site-navbar .dropdown-menu {
    display: block;
    margin-top: 0;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(6px);
    transition:
      opacity 0.18s ease,
      transform 0.18s ease,
      visibility 0.18s ease;
  }

  .site-navbar .dropdown:hover > .dropdown-menu,
  .site-navbar .dropdown-menu:hover {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0);
  }

  .site-navbar .dropdown:hover > .dropdown-menu {
    display: block;
  }
}

@media (max-width: 575.98px) {
  .site-navbar .navbar-brand {
    font-size: 1.25rem;
  }
}

.btn-highlight {
  background: var(--brand-yellow);
  color: var(--brand-ink);
  border: 0;
  font-weight: 700;
  border-radius: 999px;
  padding: 0.7rem 1.2rem;
  min-height: 44px;
}

.btn-highlight:hover {
  background: #f0bc00;
  color: var(--brand-ink);
}

.hero {
  padding: 9rem 0 5rem;
}

.hero-box {
  background: linear-gradient(130deg, #ffffff 0%, #fff8de 56%, #f7f5ef 100%);
  border: 1px solid rgba(17, 17, 17, 0.08);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
  padding: 2rem;
}

.hero-kicker {
  display: inline-block;
  background: rgba(15, 118, 110, 0.1);
  color: #0f766e;
  border-radius: 999px;
  padding: 0.35rem 0.8rem;
  font-size: 0.88rem;
  font-weight: 700;
  margin-bottom: 0.8rem;
}

.hero h1 {
  font-size: clamp(1.9rem, 4.5vw, 3rem);
  margin-bottom: 0.8rem;
}

.hero p {
  font-size: 1.05rem;
  margin-bottom: 1.2rem;
}

.hero-metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.8rem;
  margin-top: 1.2rem;
}

.metric {
  background: #ffffff;
  border: 1px solid rgba(17, 17, 17, 0.1);
  border-radius: var(--radius-md);
  padding: 0.9rem 0.8rem;
  text-align: center;
}

.metric strong {
  font-size: 1.2rem;
  display: block;
  color: var(--brand-ink);
}

.section-space {
  padding: 4.4rem 0;
}

.section-title {
  margin-bottom: 1.2rem;
}

.section-title h2 {
  margin-bottom: 0.6rem;
}

.card-elevated {
  border: 0;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
  background: var(--brand-ivory);
  height: 100%;
}

.feature-card {
  padding: 1.35rem;
}

.feature-icon {
  width: 3rem;
  height: 3rem;
  border-radius: 0.8rem;
  background: var(--brand-yellow);
  color: var(--brand-ink);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  margin-bottom: 0.9rem;
}

.panel-dark {
  background: linear-gradient(140deg, #111111 0%, #2d2d2d 100%);
  color: #f9f9f9;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
  padding: 1.8rem;
}

.panel-dark h3 {
  color: #ffffff;
}

.list-check {
  list-style: none;
  padding-left: 0;
  margin-bottom: 0;
}

.list-check li {
  margin-bottom: 0.7rem;
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
}

.list-check i {
  color: var(--brand-yellow);
  margin-top: 0.2rem;
}

.pricing-card {
  padding: 1.4rem;
}

.price-tag {
  color: var(--brand-ink);
  font-size: 2rem;
  font-weight: 800;
}

.badge-plan {
  background: rgba(15, 118, 110, 0.14);
  color: #0f766e;
  font-weight: 700;
}

.news-card {
  overflow: hidden;
}

.news-cover {
  height: 180px;
  background: linear-gradient(
    140deg,
    rgba(15, 118, 110, 0.25),
    rgba(245, 192, 0, 0.42)
  );
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  font-size: 1.8rem;
}

.form-control,
.form-select {
  min-height: 46px;
  border-radius: 0.7rem;
  border: 1px solid rgba(17, 17, 17, 0.18);
}

.form-control:focus,
.form-select:focus {
  border-color: var(--brand-emerald);
  box-shadow: 0 0 0 0.15rem rgba(15, 118, 110, 0.2);
}

.site-footer {
  margin-top: 3.5rem;
  background: #111111;
  color: rgba(255, 255, 255, 0.85);
  padding: 1.2rem 0;
}

.site-footer a {
  color: var(--brand-yellow);
}

.site-footer.footer-light {
  margin-top: 0;
  background: #f8fbff;
  color: #111827;
  padding: 3.4rem 0 1.4rem;
  border-top: 0;
}

.site-footer.footer-light a {
  color: #464647;
}

.site-footer.footer-light a:hover {
  color: #0066cc;
}

.site-footer.footer-light .footer-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.5rem 4rem;
  margin: 0 8rem;
}

.site-footer.footer-light .footer-grid h4 {
  font-family: "Noto Sans TC", "Microsoft JhengHei", sans-serif;
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: #1a1a1a;
}

.site-footer.footer-light .footer-link {
  display: block;
  line-height: 1.95;
  font-size: 1.125rem;
}

.site-footer.footer-light .social-row {
  display: flex;
  gap: 1.625rem;
  margin-top: 1rem;
}

.site-footer.footer-light .social-row a {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: #d8e6f8;
  color: #0e62c9;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition:
    transform 0.2s ease,
    background-color 0.2s ease;
}

.site-footer.footer-light .social-row a:hover {
  background: #c5dbf7;
  transform: translateY(-2px);
}

.site-footer.footer-light .copyright {
  margin-top: 2.2rem;
  padding-top: 0.9rem;
  text-align: center;
  color: #6b7280;
  border-top: 1px solid #ced8e6;
  font-size: 1.12rem;
}

@media (max-width: 991.98px) {
  .site-footer.footer-light .footer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .site-footer.footer-light .footer-grid h4 {
    font-size: 1.35rem;
  }

  .site-footer.footer-light .footer-link {
    font-size: 1rem;
  }

  .site-footer.footer-light .copyright {
    font-size: 0.95rem;
  }
}

@media (max-width: 575.98px) {
  .site-footer.footer-light .footer-grid {
    grid-template-columns: 1fr;
    gap: 1.25rem;
    margin: 0 2rem;
  }

  .site-footer.footer-light .footer-grid h4 {
    font-size: 1.125rem;
  }
}

.contact-page {
  --contact-blue: #0c5ebf;
  --contact-soft-blue: #e8f2ff;
  --contact-text: #1f2a3d;
  --contact-muted: #667085;
  --contact-bg: #f2f4f7;
  color: var(--contact-text);
  background: var(--contact-bg);
}

.contact-page .container-wide {
  max-width: 1360px;
}

.contact-page .site-navbar {
  background: #ffffff;
  border-bottom: 1px solid #e6eaf2;
  box-shadow: none;
  backdrop-filter: none;
  padding: 0.64rem 0;
  transition:
    box-shadow 0.28s ease,
    border-color 0.28s ease;
}

.contact-page .site-navbar.scrolled {
  border-color: #d9e2f0;
  box-shadow: 0 10px 22px rgba(11, 61, 132, 0.08);
}

.contact-page .site-navbar .navbar-brand {
  color: #0b70dd;
}

.contact-page .site-navbar .navbar-brand i {
  color: #0b70dd;
}

.contact-page .site-navbar .navbar-toggler {
  border: 1px solid #d0d9ea;
}

.contact-page .site-navbar .navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%2813,84,171,0.88%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2.2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

.contact-page .site-navbar .nav-link:hover {
  color: #0066cc;
  background: #edf5ff;
}

.contact-page .site-navbar .dropdown-menu,
.home-page .site-navbar .dropdown-menu,
.news-page .site-navbar .dropdown-menu,
.taxi-cam-page .site-navbar .dropdown-menu,
.plans-page .site-navbar .dropdown-menu {
  border: 1px solid #dce5f2;
  background: #ffffff;
  box-shadow: 0 12px 24px rgba(8, 53, 118, 0.12);
}

.contact-page .site-navbar .dropdown-item,
.home-page .site-navbar .dropdown-item,
.news-page .site-navbar .dropdown-item,
.taxi-cam-page .site-navbar .dropdown-item,
.plans-page .site-navbar .dropdown-item {
  color: #1f2b3f;
}

.contact-page .site-navbar .dropdown-item:hover,
.contact-page .site-navbar .dropdown-item.active,
.home-page .site-navbar .dropdown-item:hover,
.home-page .site-navbar .dropdown-item.active,
.news-page .site-navbar .dropdown-item:hover,
.news-page .site-navbar .dropdown-item.active,
.taxi-cam-page .site-navbar .dropdown-item:hover,
.taxi-cam-page .site-navbar .dropdown-item.active,
.plans-page .site-navbar .dropdown-item:hover,
.plans-page .site-navbar .dropdown-item.active {
  color: #0066cc;
  background: #edf5ff;
}

.contact-page .contact-hero {
  position: relative;
  margin-top: 73px;
  min-height: clamp(330px, 30vw, 530px);
  /* background: url("../images/contact-banner.png") center top / cover no-repeat; */
  background-image: var(--contact-hero-bg);
  background-position: center top;
  background-size: cover;
  background-repeat: no-repeat;
  overflow: hidden;
}

.contact-page .contact-hero::before {
  content: "";
  position: absolute;
  inset: 0;
}

.contact-page .contact-hero-inner {
  position: relative;
  z-index: 2;
  min-height: clamp(20rem, 30vw, 32rem);
  display: flex;
  align-items: center;
}

.contact-page .contact-hero-copy {
  max-width: 380px;
  color: #0e4ea4;
}

.contact-page .contact-hero-title-mobile {
  display: none;
}

.contact-page .contact-hero-copy h1 {
  color: #0053b9;
  font-size: clamp(2rem, 7vw, 3.1rem);
  margin-bottom: 0.45rem;
  line-height: 1.2;
  font-weight: 800;
  font-family: "Noto Sans TC", "Microsoft JhengHei", sans-serif;
}

.contact-page .contact-hero .main-title {
  position: relative;
  color: #0f67c6;
  font-size: clamp(1.02rem, 2vw, 1.55rem);
  font-weight: 500;
  line-height: 1.4;
  margin: 0;
  margin-bottom: 1.2rem;
  padding-bottom: 0.68rem;
}

.contact-page .contact-hero .main-title::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 72px;
  height: 2px;
  border-radius: 99px;
  background: #67a1df;
}

.contact-page .contact-hero .hero-desc {
  color: #0f67c6;
  font-size: clamp(0.9rem, 1.15vw, 1.03rem);
  line-height: 1.78;
  margin: 0;
}

.contact-page .contact-service {
  background: #f3f4f6;
  padding-top: clamp(2.6rem, 4.8vw, 4rem);
  padding-bottom: clamp(3.1rem, 5.8vw, 4.8rem);
}

.contact-page .contact-feature-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(1rem, 9vw, 6.875rem);
}

.contact-page .contact-feature-card {
  display: grid;
  grid-template-columns: 44px minmax(0, 1fr);
  column-gap: 0.85rem;
  align-items: center;
  background: #f8f8f8;
  border-radius: 15px;
  padding: clamp(1rem, 2vw, 2.8rem) clamp(1rem, 2vw, 2.8rem) 1rem;
  box-shadow: 0px 4px 10px 0px rgba(0, 0, 0, 0.1);
  transition:
    transform 0.28s ease,
    box-shadow 0.28s ease;
}

.contact-page .contact-feature-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 28px rgba(19, 51, 100, 0.14);
}

.contact-page .feature-icon-wrap {
  width: 80px;
  height: 80px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0;
  color: #ffffff;
  background: radial-gradient(circle at 30% 30%, #1d7be0 0%, #0a5fc4 72%);
  box-shadow: 0 0 0 4px rgba(13, 100, 198, 0.12);
  animation: contactPulse 2.8s ease-in-out infinite;
  grid-column: 1;
  grid-row: 1 / span 2;
  font-size: 2rem;
}

.contact-page .contact-feature-card h3 {
  margin: 0 0 0.15rem;
  font-family: "Noto Sans TC", "Microsoft JhengHei", sans-serif;
  color: #2a2a2a;
  font-size: clamp(1.28rem, 2.1vw, 1.875rem);
  font-weight: 700;
  grid-column: 2;
  grid-row: 1;
  text-align: right;
}

.contact-page .contact-feature-card .feature-kicker {
  margin: 0;
  color: #0066cc;
  font-size: clamp(0.96rem, 1.2vw, 1.5rem);
  font-weight: 600;
  grid-column: 2;
  grid-row: 2;
  text-align: right;
}

.contact-page .contact-feature-card .feature-text {
  margin: 0.8rem 0 0;
  color: #565f6d;
  font-size: clamp(1rem, 1vw, 1.125rem);
  line-height: 1.7;
  grid-column: 1 / -1;
  grid-row: 3;
}

.contact-page .contact-support-head {
  text-align: center;
  margin: clamp(2.2rem, 4vw, 3.5rem) auto clamp(1.5rem, 4vw, 4rem);
  max-width: 860px;
}

.contact-page .contact-support-head h2 {
  margin: 0 0 0.5rem;
  color: #222;
  font-family: "Noto Sans TC", "Microsoft JhengHei", sans-serif;
  font-size: clamp(1.875rem, 3vw, 2.25rem);
  font-weight: 700;
  line-height: 1.2;
}

.contact-page .contact-support-head p {
  margin: 0;
  color: #666;
  font-size: clamp(0.875rem, 1vw, 1.125rem);
  line-height: 1.7;
}

.contact-page .contact-quick-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 4.125rem;
}

.contact-page .contact-quick-card {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  background: #ffffff;
  border: 1.5px solid #8db4df;
  border-radius: 10px;
  min-height: 92px;
  padding: 0.9rem 1rem;
  box-shadow: 0 5px 14px rgba(16, 80, 166, 0.08);
  transition:
    transform 0.24s ease,
    box-shadow 0.24s ease;
}

.contact-page .contact-quick-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 20px rgba(16, 80, 166, 0.14);
}

.contact-page .quick-icon {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #0053b9;
  background: #edf5ff;
  flex-shrink: 0;
}

.contact-page .contact-quick-card h3 {
  margin: 0;
  font-size: 0.92rem;
  color: #3f4958;
  font-family: "Noto Sans TC", "Microsoft JhengHei", sans-serif;
  font-weight: 600;
}

.contact-page .contact-quick-card p {
  margin: 0.16rem 0 0;
  font-size: 0.9rem;
  color: #556070;
  line-height: 1.42;
}

.contact-page .contact-quick-card a {
  color: inherit;
}

.contact-page .contact-quick-card a:hover {
  color: #0d63c8;
}

@media (max-width: 1400.98px) {
  .contact-page .contact-hero-inner {
    padding: 0 2rem;
  }

  .contact-page .feature-icon-wrap {
    width: 60px;
    height: 60px;
    font-size: 1.5rem;
    animation: none;
  }
}

@keyframes contactPulse {
  0%,
  100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.06);
  }
}

.news-page {
  --news-primary: #0053b9;
  --news-primary-dark: #0a4ba0;
  --news-text: #10203c;
  --news-muted: #60708c;
  --news-card-shadow: 0 12px 32px rgba(8, 33, 88, 0.08);
  --news-card-shadow-hover: 0 20px 44px rgba(8, 33, 88, 0.18);
  color: var(--news-text);
  background: #f2f4f7;
}

.news-page .container-wide {
  max-width: 1360px;
}

.news-page .site-navbar {
  background: #ffffff;
  border-bottom: 1px solid #e6eaf2;
  box-shadow: none;
  backdrop-filter: none;
  padding: 0.64rem 0;
  transition:
    box-shadow 0.28s ease,
    border-color 0.28s ease;
}

.news-page .site-navbar.scrolled {
  border-color: #d9e2f0;
  box-shadow: 0 10px 22px rgba(11, 61, 132, 0.08);
}

.news-page .site-navbar .navbar-brand {
  color: #0b70dd;
}

.news-page .site-navbar .navbar-brand i {
  color: #0b70dd;
}

.news-page .site-navbar .navbar-toggler {
  border: 1px solid #d0d9ea;
}

.news-page .site-navbar .navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%2813,84,171,0.88%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2.2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

.news-page .site-navbar .nav-link:hover {
  color: #0066cc;
  background: #edf5ff;
}

.news-page .news-hero {
  position: relative;
  margin-top: 73px;
  min-height: clamp(330px, 32vw, 530px);
  color: #ffffff;
  /* background: url("../images/news-banner.png") center center / cover no-repeat; */
  background-image: var(--news-hero-bg);
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  overflow: hidden;
}

.news-page .news-hero::before {
  content: "";
  position: absolute;
  inset: 0;
}

.news-page .news-hero-inner {
  position: relative;
  z-index: 2;
  min-height: clamp(20rem, 30vw, 32rem);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: end;
  text-align: left;
  padding-left: clamp(1rem, 5vw, 5.4rem);
  max-width: min(100%, 900px);
}

.news-page .news-hero-copy {
  max-width: min(100%, 900px);
  padding-left: clamp(1rem, 5vw, 5.4rem);
  margin-left: 15rem;
}

.news-page .news-hero-title-mobile {
  display: none;
}

.news-page .news-hero-copy h1 {
  color: #0066cc;
  font-family: "Noto Sans TC", "Microsoft JhengHei", sans-serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 0.5rem;
}

.news-page .news-hero .main-title {
  position: relative;
  color: #0066cc;
  font-size: clamp(1rem, 2vw, 1.5rem);
  font-weight: 500;
  line-height: 1.4;
  margin-bottom: 1.35rem;
  padding-bottom: 0.75rem;
}

.news-page .news-hero .main-title::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 74px;
  height: 2px;
  border-radius: 99px;
  background: #5c93cf;
}

.news-page .news-hero .hero-desc {
  color: #0066cc;
  font-size: clamp(0.86rem, 1.06vw, 1rem);
  line-height: 1.78;
  margin: 0;
}

.news-page .news-list {
  background: #ffffff;
  padding-top: clamp(2.8rem, 5vw, 4.8rem);
  padding-bottom: clamp(3.4rem, 6vw, 5.4rem);
}

.news-page .news-item {
  border-radius: 10px;
  border: 1px solid rgba(13, 84, 171, 0.12);
  overflow: hidden;
  cursor: pointer;
  box-shadow: var(--news-card-shadow);
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}

.news-page .news-item:hover {
  transform: translateY(-6px);
  box-shadow: var(--news-card-shadow-hover);
}

.news-page .news-thumb {
  position: relative;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: #dbe8f8;
}

.news-page .news-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.45s ease;
}

.news-page .news-item:hover .news-thumb img {
  transform: scale(1.06);
}

.news-page .news-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  border-radius: 999px;
  background: var(--news-primary);
  color: #ffffff;
  padding: 0.3rem 0.7rem;
  font-size: 0.78rem;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 0.36rem;
}

.news-page .news-title {
  font-family: "Noto Sans TC", "Microsoft JhengHei", sans-serif;
  font-size: 1.25rem;
  line-height: 1.4;
  font-weight: 700;
  margin-bottom: 0.7rem;
  color: #333333;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  min-height: calc(20px * 1.4 * 2);
}

.news-page .news-title-link {
  color: #333333;
  transition: color 0.2s ease;
}

.news-page .news-item:hover .news-title-link,
.news-page .news-title-link:hover {
  color: var(--news-primary);
}

.news-page .news-excerpt {
  color: #4b5563;
  margin-bottom: 0.95rem;
  font-size: 14px;
  line-height: 1.7;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  min-height: calc(14px * 1.7 * 3);
}

.news-page .news-link {
  color: var(--news-primary);
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  min-height: 44px;
  transition:
    color 0.2s ease,
    gap 0.2s ease;
  font-size: 0.875rem;
}

.news-page .news-item .card-body {
  display: flex;
  flex-direction: column;
}

.news-page .news-item .news-link {
  margin-top: auto;
}

.news-page .news-link:hover {
  color: var(--news-primary-dark);
  gap: 0.55rem;
}

.news-page .news-pagination-wrap {
  margin-top: 2.1rem;
}

.news-page .pagination {
  gap: 0.5rem;
}

.news-page .pagination .page-link {
  min-width: 44px;
  min-height: 44px;
  border-radius: 10px;
  border: 1px solid rgba(13, 84, 171, 0.16);
  color: var(--news-primary);
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.news-page .pagination .page-item.active .page-link {
  background: var(--news-primary);
  border-color: var(--news-primary);
  color: #ffffff;
}

.news-page .pagination .page-link:hover {
  background: #eef5ff;
}

.news-detail-page .news-detail-main {
  padding-top: 104px;
  padding-bottom: 3.8rem;
  background: #f2f4f7;
}

.news-detail-page .news-article {
  max-width: 860px;
  margin: 0 auto;
  background: transparent;
}

.news-detail-page .news-back-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: #4b5565;
  font-weight: 600;
  margin-bottom: 1.1rem;
  min-height: 44px;
}

.news-detail-page .news-back-link:hover {
  color: #0066cc;
}

.news-detail-page .news-detail-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.8rem 1rem;
  color: #78869d;
  font-size: 0.95rem;
  margin-bottom: 0.85rem;
}

.news-detail-page .news-detail-date {
  background: #e9f2ff;
  color: #0066cc;
  border-radius: 999px;
  padding: 0.28rem 0.66rem;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}

.news-detail-page .news-article h1 {
  font-family: "Noto Sans TC", "Microsoft JhengHei", sans-serif;
  font-size: clamp(1.875rem, 4.2vw, 3rem);
  line-height: 1.16;
  letter-spacing: 0;
  margin-bottom: 1.35rem;
  color: #0e1b33;
  padding-bottom: 1.4rem;
  border-bottom: 1px solid #dce4ee;
}

.news-detail-page .news-detail-figure {
  margin: 0 0 1.45rem;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 14px 34px rgba(9, 41, 98, 0.12);
}

.news-detail-page .news-detail-figure img {
  width: 100%;
  display: block;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.news-detail-page .news-detail-content {
  padding: 1rem 0 1.35rem;
  border-bottom: 1px solid #dce4ee;
}

.news-detail-page .news-detail-content p {
  color: #4f607c;
  font-size: 1.125rem;
  line-height: 1.6;
  margin-bottom: 1rem;
}

.news-detail-page .news-detail-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  padding-top: 1.2rem;
}

.news-detail-page .news-detail-tags a {
  color: #8592a8;
  font-weight: 600;
}

.news-detail-page .news-detail-tags a:hover {
  color: #0066cc;
}

.reveal {
  opacity: 0;
  transform: translateY(16px);
  transition:
    opacity 0.5s ease,
    transform 0.5s ease;
}

.reveal.show {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 575.98px) {
  .news-page .news-title {
    font-size: 1.125rem;
  }
}

@media (max-width: 991.98px) {
  .hero {
    padding-top: 8.2rem;
  }

  .hero-box {
    padding: 1.35rem;
  }

  .hero-metrics {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .site-navbar .nav-link {
    margin-bottom: 0.35rem;
  }

  .contact-page .site-navbar .navbar-collapse {
    margin-top: 10px;
    padding: 8px;
    border-radius: 12px;
    background: #ffffff;
    border: 1px solid #e4e9f2;
  }

  .contact-page .contact-hero {
    margin-top: 67px;
    min-height: auto;
    padding-top: clamp(170px, 42vw, 300px);
    padding-bottom: 1rem;
    background-image: none !important;
  }

  .contact-page .contact-hero::before {
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    height: clamp(170px, 42vw, 300px);
    background-image: var(--contact-hero-bg);
    background-position: center center;
    background-size: cover;
    background-repeat: no-repeat;
    z-index: 1;
  }

  .contact-page .contact-hero-inner {
    min-height: auto;
    padding-top: 0.72rem;
    padding-bottom: 0;
    padding-left: 1rem;
    padding-right: 1rem;
  }

  .contact-page .contact-hero-copy h1 {
    font-size: clamp(2rem, 7vw, 3rem);
  }

  .contact-page .contact-hero-title-mobile {
    display: block;
    position: absolute;
    top: clamp(24px, 10vw, 64px);
    left: clamp(0.3rem, 10vw, 2rem);
    z-index: 4;
    max-width: min(56vw, 15rem);
    color: #0053b9;
    font-family: "Noto Sans TC", "Microsoft JhengHei", sans-serif;
    font-weight: 800;
    line-height: 1.2;
    letter-spacing: 0.02em;
    text-align: right;
    text-shadow: 0 2px 10px rgba(255, 255, 255, 0.88);
    margin: 0;
    font-size: clamp(1.65rem, 6.2vw, 2.2rem);
    opacity: 1 !important;
  }

  .contact-page .contact-hero-copy .contact-hero-title-desktop {
    display: none;
  }

  .contact-page .contact-hero .main-title {
    font-size: clamp(0.95rem, 3.6vw, 1.22rem);
    margin-bottom: 0.92rem;
    padding-bottom: 0.55rem;
  }

  .contact-page .contact-hero .main-title::after {
    width: 56px;
  }

  .contact-page .contact-hero .hero-desc {
    font-size: clamp(0.8rem, 2.55vw, 0.94rem);
    line-height: 1.66;
  }

  .contact-page .contact-feature-grid {
    grid-template-columns: 1fr;
  }

  .contact-page .contact-quick-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .news-page .site-navbar .navbar-collapse {
    margin-top: 10px;
    padding: 8px;
    border-radius: 12px;
    background: #ffffff;
    border: 1px solid #e4e9f2;
  }

  .news-page .news-hero {
    margin-top: 67px;
    min-height: auto;
    padding-top: clamp(170px, 42vw, 300px);
    padding-bottom: 1rem;
    background-image: none !important;
  }

  .news-page .news-hero::before {
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    height: clamp(170px, 42vw, 300px);
    background-image: var(--news-hero-bg);
    background-position: center center;
    background-size: cover;
    background-repeat: no-repeat;
    z-index: 1;
  }

  .news-page .news-hero-inner {
    min-height: auto;
    padding-left: 1.1rem;
    padding-right: 1.1rem;
    padding-top: 0.72rem;
    padding-bottom: 0;
    align-items: flex-start;
  }

  .news-page .news-hero-copy {
    margin-left: 0;
    padding-left: 0;
  }

  .news-page .news-hero-copy h1 {
    font-size: clamp(1.78rem, 6vw, 2.45rem);
  }

  .news-page .news-hero-title-mobile {
    display: block;
    position: absolute;
    top: clamp(24px, 8vw, 64px);
    right: clamp(0.3rem, 1.5vw, 0.8rem);
    z-index: 4;
    max-width: min(56vw, 15rem);
    color: #0066cc;
    font-family: "Noto Sans TC", "Microsoft JhengHei", sans-serif;
    font-weight: 800;
    line-height: 1.2;
    letter-spacing: 0.02em;
    text-align: right;
    text-shadow: 0 2px 10px rgba(255, 255, 255, 0.88);
    margin: 0;
    font-size: clamp(1.65rem, 6.2vw, 2.2rem);
    opacity: 1 !important;
  }

  .news-page .news-hero-copy .news-hero-title-desktop {
    display: none;
  }

  .news-page .news-hero .main-title {
    font-size: clamp(1rem, 3.6vw, 1.24rem);
    margin-bottom: 1rem;
    padding-bottom: 0.58rem;
  }

  .news-page .news-hero .main-title::after {
    width: 56px;
  }

  .news-page .news-hero .hero-desc {
    font-size: clamp(0.82rem, 2.6vw, 0.94rem);
    line-height: 1.66;
  }

  .news-detail-page .news-detail-main {
    padding-top: 95px;
    padding-bottom: 3rem;
  }

  .news-detail-page .news-article h1 {
    font-size: clamp(1.65rem, 6.6vw, 2.5rem);
    line-height: 1.2;
  }
}

@media (max-width: 575.98px) {
  .hero-metrics {
    grid-template-columns: 1fr;
  }

  .panel-dark {
    padding: 1.25rem;
  }

  .site-navbar .nav-link {
    font-size: 1rem;
  }

  .feature-card,
  .pricing-card {
    padding: 1.1rem;
  }

  .hero p {
    font-size: 0.98rem;
  }

  .contact-page .contact-hero,
  .news-page .news-hero {
    padding-top: clamp(170px, 42vw, 300px);
    padding-bottom: 1rem;
  }

  .contact-page .contact-hero::before,
  .news-page .news-hero::before {
    height: clamp(150px, 48vw, 210px);
  }

  .contact-page .contact-hero-title-mobile,
  .news-page .news-hero-title-mobile {
    top: clamp(18px, 6vw, 36px);
    right: clamp(0.2rem, 1.8vw, 0.6rem);
    max-width: min(58vw, 12rem);
    font-size: clamp(1.25rem, 8vw, 1.5rem);
    margin-top: 2rem;
    text-align: center;
    margin-right: 2rem;
  }

  .contact-page .contact-hero-copy,
  .news-page .news-hero-copy {
    width: min(100%, 680px);
    border: 1px solid #d9e8fb;
    border-radius: 12px;
    padding: 0.86rem 0.78rem 0.92rem;
    box-shadow: 0 10px 24px rgba(10, 57, 128, 0.1);
    text-align: left;
    margin-left: 0;
    max-width: 100%;
    margin-top: 1rem;
  }

  .contact-page .contact-service {
    padding-top: 2.1rem;
    padding-bottom: 2.8rem;
  }

  .contact-page .contact-feature-card {
    padding: 0.92rem 0.86rem 0.9rem;
    grid-template-columns: 40px minmax(0, 1fr);
    column-gap: 0.72rem;
  }

  .contact-page .contact-feature-card h3 {
    font-size: 1.12rem;
  }

  .contact-page .contact-feature-card .feature-kicker {
    font-size: 0.9rem;
    margin-top: 0.4rem;
    margin-bottom: 0.72rem;
  }

  .contact-page .contact-feature-card .feature-text {
    font-size: 0.8rem;
  }

  .contact-page .contact-support-head {
    margin-top: 2rem;
    margin-bottom: 1.2rem;
  }

  .contact-page .contact-support-head h2 {
    font-size: 1.4rem;
  }

  .contact-page .contact-support-head p {
    font-size: 0.84rem;
  }

  .contact-page .contact-quick-grid {
    grid-template-columns: 1fr;
    gap: 0.72rem;
  }

  .contact-page .contact-quick-card {
    min-height: 78px;
    padding: 0.75rem 0.82rem;
  }

  .contact-page .contact-quick-card h3 {
    font-size: 0.84rem;
  }

  .contact-page .contact-quick-card p {
    font-size: 0.82rem;
  }

  .news-page .news-list {
    padding-top: 2.2rem;
    padding-bottom: 3rem;
  }

  .news-detail-page .news-detail-main {
    padding-top: 88px;
    padding-bottom: 2.4rem;
  }

  .news-detail-page .news-detail-meta {
    font-size: 0.88rem;
  }

  .news-detail-page .news-detail-content p {
    font-size: 1rem;
    line-height: 1.82;
  }
}

.taxi-cam-page {
  --taxi-primary: #0053b9;
  --taxi-primary-strong: #0048a3;
  --taxi-text: #1a1a1a;
  --taxi-muted: #4c5b73;
  --taxi-bg: #ffffff;
  --taxi-card: #ffffff;
  --taxi-soft: #edf3fb;
  --taxi-shadow: 0 14px 30px rgba(10, 47, 106, 0.08);
  --taxi-shadow-hover: 0 20px 34px rgba(10, 47, 106, 0.16);
  color: var(--taxi-text);
  background: var(--taxi-bg);
}

.taxi-cam-page .container-wide {
  max-width: 1360px;
}

.taxi-cam-page .site-navbar {
  background: #ffffff;
  border-bottom: 1px solid #e6eaf2;
  box-shadow: none;
  backdrop-filter: none;
  padding: 0.64rem 0;
  transition:
    box-shadow 0.28s ease,
    border-color 0.28s ease;
}

.taxi-cam-page .site-navbar.scrolled {
  border-color: #d9e2f0;
  box-shadow: 0 10px 22px rgba(11, 61, 132, 0.08);
}

.taxi-cam-page .site-navbar .navbar-brand {
  color: #0b70dd;
}

.taxi-cam-page .site-navbar .navbar-brand i {
  color: #0b70dd;
}

.taxi-cam-page .site-navbar .navbar-toggler {
  border: 1px solid #d0d9ea;
}

.taxi-cam-page .site-navbar .navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%2813,84,171,0.88%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2.2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

.taxi-cam-page .site-navbar .nav-link:hover {
  color: #0066cc;
  background: #edf5ff;
  transform: translateY(-1px);
}

.taxi-cam-page .taxi-hero {
  position: relative;
  margin-top: 73px;
  min-height: clamp(330px, 30vw, 530px);
  background-image: var(--taxi-hero-bg);
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  overflow: hidden;
}

.taxi-cam-page .taxi-hero::before {
  content: none;
}

.taxi-cam-page .taxi-hero-title-mobile {
  display: none;
}

.taxi-cam-page .taxi-hero-inner {
  position: relative;
  z-index: 2;
  min-height: clamp(330px, 30vw, 530px);
  display: flex;
  justify-content: end;
  align-items: center;
  gap: clamp(1.2rem, 4vw, 3.2rem);
}

.taxi-cam-page .taxi-device {
  max-width: min(400px, 100%);
  align-self: center;
  animation: taxiFloat 3.8s ease-in-out infinite;
}

.taxi-cam-page .taxi-device img {
  width: 100%;
  filter: drop-shadow(0 16px 30px rgba(0, 48, 120, 0.28));
}

.taxi-cam-page .taxi-hero-copy {
  display: flex;
  flex-direction: column;
  justify-content: end;
  align-items: flex-start;
  color: var(--taxi-primary);
  text-align: left;
  text-shadow: 0 2px 12px rgba(255, 255, 255, 0.5);
}

.taxi-cam-page .taxi-hero-copy h1 {
  color: var(--taxi-primary);
  font-family: "Noto Sans TC", "Microsoft JhengHei", sans-serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: 0.02em;
  margin-bottom: 0.5rem;
}

.taxi-cam-page .taxi-hero-copy p {
  margin: 0;
  font-size: clamp(1rem, 1.8vw, 1.25rem);
}

.taxi-cam-page .taxi-hero-copy .title-line {
  display: block;
}

.taxi-cam-page .taxi-hero-copy .main-title {
  position: relative;
  color: #0066cc;
  font-size: clamp(1.05rem, 1.8vw, 1.5rem);
  font-weight: 600;
  line-height: 1.45;
  margin-top: 0.5rem;
  margin-bottom: 1.45rem;
  padding-bottom: 0.85rem;
  max-width: 30rem;
}

.taxi-cam-page .taxi-hero-copy .main-title::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 72px;
  height: 3px;
  border-radius: 99px;
  background: #0066cc;
}

.taxi-cam-page .taxi-hero-copy .hero-desc {
  color: #0066cc;
  font-size: clamp(0.875rem, 1.16vw, 1rem);
  line-height: 1.82;
}

.taxi-cam-page .taxi-hero-copy small {
  display: block;
  margin-top: 0.2rem;
  font-size: clamp(0.88rem, 1.35vw, 1.08rem);
}

.taxi-cam-page .taxi-intro {
  background: #fff;
}

.taxi-cam-page .taxi-benefits {
  background: #f9fafb;
}

.taxi-cam-page .taxi-section-head {
  text-align: center;
  margin: 0 auto 2.2rem;
  max-width: 920px;
}

.taxi-cam-page .taxi-section-head h2 {
  font-family: "Noto Sans TC", "Microsoft JhengHei", sans-serif;
  font-weight: 700;
  font-size: clamp(1.65rem, 3.1vw, 2.125rem);
  line-height: 1.25;
  color: #222222;
  padding-top: 4rem;
  margin-bottom: 1rem;
}

.taxi-cam-page .taxi-section-head p {
  font-size: clamp(0.85rem, 1.24vw, 1rem);
  color: #222222;
  line-height: 1.85;
  margin: 0;
}

.taxi-cam-page .taxi-policy-card {
  border-radius: 20px;
  border: 1px solid #e2e8f2;
  background: var(--taxi-card);
  box-shadow: var(--taxi-shadow);
  padding: clamp(1.2rem, 2.4vw, 2rem);
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 41%);
  gap: clamp(1rem, 3vw, 4rem);
  align-items: center;
  transition:
    transform 0.32s ease,
    box-shadow 0.32s ease;
}

.taxi-cam-page .taxi-policy-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--taxi-shadow-hover);
}

.taxi-cam-page .taxi-policy-copy h3 {
  color: var(--taxi-primary);
  font-family: "Noto Sans TC", "Microsoft JhengHei", sans-serif;
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 1rem;
}

.taxi-cam-page .taxi-policy-copy p {
  color: #4a5568;
  font-size: 1rem;
  line-height: 1.75;
  margin-bottom: 0.8rem;
}

.taxi-cam-page .taxi-btn-primary,
.taxi-cam-page .taxi-btn-accent {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  border-radius: 8px;
  padding: 0.58rem 2rem;
  font-size: 1.25rem;
  font-weight: 700;
  text-decoration: none;
  transition:
    transform 0.2s ease,
    filter 0.2s ease,
    box-shadow 0.2s ease;
}

.taxi-cam-page .taxi-btn-primary {
  margin-top: 0.5rem;
  background: #0d68d2;
  color: #ffffff;
  box-shadow: 0 10px 22px rgba(13, 104, 210, 0.24);
}

.taxi-cam-page .taxi-btn-primary:hover {
  color: #ffffff;
  transform: translateY(-1px);
  filter: brightness(1.05);
}

.taxi-cam-page .taxi-policy-media {
  margin: 0;
  border-radius: 14px;
  /*overflow: hidden;*/
  width: 25rem;
  height: 25rem;
}

.taxi-cam-page .taxi-policy-media img {
  width: 100%;
  height: 100%;
  min-height: 255px;
  object-fit: contain;
  transition: transform 0.45s ease;
}

.taxi-cam-page .taxi-policy-card:hover .taxi-policy-media img {
  transform: scale(1.045);
}

.taxi-cam-page .taxi-usp {
  background: #ffffff;
}

.taxi-cam-page .taxi-usp-card {
  border-radius: 20px;
  overflow: hidden;
  background: var(--taxi-card);
  border: 1px solid #dbe4f1;
  box-shadow: var(--taxi-shadow);
  text-align: center;
}

.taxi-cam-page .taxi-usp-top {
  background: linear-gradient(180deg, #0d66c9 0%, #075fbe 100%);
  padding: clamp(1.6rem, 2.8vw, 2.4rem) clamp(1rem, 3vw, 2.4rem);
}

.taxi-cam-page .taxi-usp-top h2 {
  color: #ffffff;
  font-family: "Noto Sans TC", "Microsoft JhengHei", sans-serif;
  font-size: clamp(1.6rem, 2.7vw, 2.125rem);
  font-weight: 700;
  margin-bottom: 0.7rem;
}

.taxi-cam-page .taxi-usp-top p {
  color: rgba(255, 255, 255, 0.94);
  font-size: clamp(0.85rem, 1.23vw, 1rem);
  line-height: 1.85;
  max-width: 55%;
  margin: 0 auto;
}

.taxi-cam-page .taxi-usp-list {
  padding: clamp(1.3rem, 2.5vw, 1.95rem) clamp(0.9rem, 2.2vw, 1.9rem) 0;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.taxi-cam-page .taxi-usp-item {
  border-radius: 14px;
  background: #f7fbff;
  padding: 1.1rem 0.8rem;
  transition:
    transform 0.22s ease,
    border-color 0.22s ease;
}

.taxi-cam-page .taxi-usp-item:hover {
  transform: translateY(-3px);
  border-color: #cfe0f4;
}

.taxi-cam-page .taxi-usp-item h3 {
  font-family: "Noto Sans TC", "Microsoft JhengHei", sans-serif;
  color: #0b5db8;
  font-size: 1.4rem;
  font-weight: 800;
  margin-bottom: 0.38rem;
}

.taxi-cam-page .taxi-usp-item p {
  margin: 0;
  color: #4c5b73;
  font-size: 0.93rem;
}

.taxi-cam-page .taxi-btn-accent {
  margin: 1.8rem auto 1.8rem;
  background: #ffcc00;
  color: #0b5db8;
  box-shadow: 0 12px 26px rgba(244, 199, 0, 0.3);
}

.taxi-cam-page .taxi-btn-accent:hover {
  color: #0b5db8;
  transform: translateY(-1px) scale(1.01);
  filter: brightness(1.04);
}

.taxi-cam-page .taxi-benefit-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
}

.taxi-cam-page .taxi-benefit-item {
  border-radius: 12px;
  background: #ffffff;
  border: 1px solid #e2e8f2;
  min-height: 122px;
  padding: 1rem 0.72rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 0.7rem;
  box-shadow: 0 6px 16px rgba(10, 47, 106, 0.05);
  transition:
    transform 0.26s ease,
    box-shadow 0.26s ease,
    border-color 0.26s ease;
}

.taxi-cam-page .taxi-benefit-item:hover {
  transform: translateY(-4px);
  border-color: #cce0f7;
  box-shadow: 0 14px 28px rgba(10, 47, 106, 0.13);
}

.taxi-cam-page .taxi-benefit-item .benefit-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #eff6ff;
  transition:
    transform 0.26s ease,
    background-color 0.26s ease;
}

.taxi-cam-page .taxi-benefit-item svg {
  width: 24px;
  height: 24px;
  display: block;
  color: #0f65c8;
}

.taxi-cam-page .taxi-benefit-item svg * {
  transition:
    fill 0.26s ease,
    stroke 0.26s ease;
}

.taxi-cam-page .taxi-benefit-item:hover .benefit-icon {
  transform: scale(1.08);
  background: #0f65c8;
}

.taxi-cam-page .taxi-benefit-item:hover svg {
  color: #ffffff;
}

.taxi-cam-page .taxi-benefit-item:hover svg * {
  fill: none;
  stroke: currentColor;
}

.taxi-cam-page .taxi-benefit-item p {
  margin: 0;
  color: #2c3b51;
  font-size: 0.93rem;
  font-weight: 600;
}

.taxi-cam-page .taxi-usp-regulatory-wrap {
  margin: 0 auto;
  min-height: clamp(180px, 20vw, 262px);
  padding: 0;
  background-color: #d5e6fa;
  background-image: url("../images/cam-web.webp");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  text-align: center;
  display: grid;
  place-content: center;
  gap: 0.7rem;
  margin-bottom: 4.4rem;
}

.taxi-cam-page .taxi-usp-regulatory {
  display: flex;
  flex-direction: column;
  gap: 2.25rem;
}

.taxi-cam-page .taxi-usp-regulatory h3 {
  margin: 0;
  font-family: "Noto Sans TC", "Microsoft JhengHei", sans-serif;
  color: #004992;
  font-size: clamp(1.25rem, 2.3vw, 2.5rem);
  font-weight: 800;
  line-height: 1.35;
}

.taxi-cam-page .taxi-usp-regulatory p {
  margin: 0;
  max-width: min(100%, 860px);
  color: #004992;
  font-size: clamp(1rem, 1.33vw, 1.875rem);
}

@keyframes taxiFloat {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-8px);
  }
}

@media (max-width: 991.98px) {
  .taxi-cam-page .site-navbar .navbar-collapse {
    margin-top: 10px;
    padding: 8px;
    border-radius: 12px;
    background: #ffffff;
    border: 1px solid #e4e9f2;
  }

  .taxi-cam-page .taxi-hero {
    margin-top: 67px;
    min-height: auto;
    padding-top: clamp(170px, 42vw, 300px);
    padding-bottom: 1rem;
    background-image: none !important;
  }

  .taxi-cam-page .taxi-hero::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: clamp(170px, 42vw, 300px);
    background-image: var(--taxi-hero-bg);
    background-position: center center;
    background-size: cover;
    background-repeat: no-repeat;
    z-index: 1;
  }

  .taxi-cam-page .taxi-hero-inner {
    position: static;
    min-height: auto;
    justify-content: center;
    text-align: center;
    align-items: center;
    padding-top: 0.95rem;
    padding-bottom: 0;
  }

  .taxi-cam-page .taxi-hero-copy {
    width: min(100%, 680px);
    background: rgba(255, 255, 255, 0.95);
    border: 1px solid #d9e8fb;
    border-radius: 14px;
    padding: 1.05rem 1.1rem 1.12rem;
    align-items: center;
    justify-content: center;
    color: #0a5fb8;
    text-shadow: none;
    box-shadow: 0 10px 24px rgba(10, 57, 128, 0.1);
    text-align: left;
    align-items: flex-start;
  }

  .taxi-cam-page .taxi-hero-title-mobile {
    display: block;
    position: absolute;
    top: clamp(24px, 8vw, 64px);
    right: clamp(0.3rem, 1.5vw, 0.8rem);
    z-index: 4;
    max-width: min(56vw, 15rem);
    color: var(--taxi-primary);
    font-family: "Noto Sans TC", "Microsoft JhengHei", sans-serif;
    font-weight: 800;
    line-height: 1.2;
    letter-spacing: 0.02em;
    text-align: right;
    text-shadow: 0 2px 10px rgba(255, 255, 255, 0.88);
    margin: 0;
    font-size: clamp(1.65rem, 6.2vw, 2.2rem);
    opacity: 1 !important;
  }

  .taxi-cam-page .taxi-hero-copy .taxi-hero-title-desktop {
    display: none;
  }

  .taxi-cam-page .taxi-hero-copy p {
    font-size: clamp(0.875rem, 3.2vw, 1.02rem);
    line-height: 1.68;
    text-align: left;
  }

  .taxi-cam-page .taxi-hero-copy .main-title {
    margin-bottom: 1rem;
    padding-bottom: 0.62rem;
  }

  .taxi-cam-page .taxi-hero-copy .main-title::after {
    width: 58px;
    height: 2px;
  }

  .taxi-cam-page .taxi-hero-copy .hero-desc {
    font-size: clamp(0.8rem, 2.45vw, 0.92rem);
    line-height: 1.66;
  }

  .taxi-cam-page .taxi-policy-card {
    grid-template-columns: 1fr;
  }

  .taxi-cam-page .taxi-policy-media {
    order: -1;
    width: auto;
  }

  .taxi-cam-page .taxi-policy-media img {
    min-height: 220px;
  }

  .taxi-cam-page .taxi-usp-list {
    grid-template-columns: 1fr;
  }

  .taxi-cam-page .taxi-benefit-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 575.98px) {
  .taxi-cam-page .taxi-hero {
    padding-bottom: 1rem;
    padding-top: clamp(170px, 42vw, 300px);
  }

  .taxi-cam-page .taxi-hero::before {
    height: clamp(150px, 48vw, 210px);
  }

  .taxi-cam-page .taxi-hero-inner {
    padding-top: 0.72rem;
    margin-top: 1rem;
  }

  .taxi-cam-page .taxi-hero-copy {
    border-radius: 12px;
    padding: 0.86rem 0.78rem 0.92rem;
  }

  .taxi-cam-page .taxi-hero-title-mobile {
    top: clamp(18px, 7vw, 36px);
    right: clamp(0.2rem, 1.8vw, 0.6rem);
    max-width: min(58vw, 12rem);
    font-size: clamp(1.25rem, 8vw, 1.5rem);
    margin-right: 1rem;
    margin-top: 2rem;
    text-align: left;
  }

  .taxi-cam-page .taxi-hero-copy .main-title {
    font-size: 0.875rem;
    margin-bottom: 0.85rem;
    padding-bottom: 0.5rem;
  }

  .taxi-cam-page .taxi-hero-copy .hero-desc {
    font-size: 0.82rem;
  }

  .taxi-cam-page .taxi-intro,
  .taxi-cam-page .taxi-benefits,
  .taxi-cam-page .taxi-usp {
    padding-top: 2.4rem;
    padding-bottom: 2.4rem;
  }

  .taxi-cam-page .taxi-section-head {
    margin-bottom: 1.5rem;
  }

  .taxi-cam-page .taxi-policy-copy h3 {
    font-size: 1.25rem;
  }

  .taxi-cam-page .taxi-policy-copy p {
    font-size: 0.95rem;
  }

  .taxi-cam-page .taxi-policy-media img {
    min-height: 180px;
    max-height: 20rem;
  }

  .taxi-cam-page .taxi-policy-media {
    height: auto;
  }

  .taxi-cam-page .taxi-usp-top h2 {
    font-size: 1.25rem;
  }

  .taxi-cam-page .taxi-usp-item h3 {
    font-size: 1.125rem;
  }

  .taxi-cam-page .taxi-usp-item p {
    font-size: 0.875rem;
  }

  .taxi-cam-page .taxi-benefit-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.7rem;
  }

  .taxi-cam-page .taxi-benefit-item {
    min-height: 110px;
    padding: 0.8rem 0.5rem;
  }

  .taxi-cam-page .taxi-benefit-item p {
    font-size: 0.86rem;
  }

  .taxi-cam-page .taxi-usp-top p {
    max-width: 90%;
  }

  .taxi-cam-page .taxi-section-head h2 {
    font-size: 1.25rem;
    padding-top: 1rem;
  }

  .taxi-cam-page .taxi-btn-primary,
  .taxi-cam-page .taxi-btn-accent {
    font-size: 1.125rem;
  }
}

.plans-page {
  --plans-primary: #0055bf;
  --plans-primary-strong: #0b63ca;
  --plans-bg: #ffffff;
  --plans-text: #1a1a1a;
  --plans-muted: #5e687b;
  --plans-card: #ffffff;
  --plans-stroke: #dbe3ef;
  --plans-soft-blue: #eaf3ff;
  --plans-shadow: 0 14px 32px rgba(8, 54, 124, 0.08);
  --plans-shadow-strong: 0 24px 44px rgba(8, 54, 124, 0.18);
  color: var(--plans-text);
  background: var(--plans-bg);
}

.plans-page .container-wide {
  max-width: 1360px;
}

.plans-page .site-navbar {
  background: #ffffff;
  border-bottom: 1px solid #e6eaf2;
  box-shadow: none;
  backdrop-filter: none;
  padding: 0.64rem 0;
  transition:
    box-shadow 0.28s ease,
    border-color 0.28s ease;
}

.plans-page .site-navbar.scrolled {
  border-color: #d9e2f0;
  box-shadow: 0 10px 22px rgba(11, 61, 132, 0.08);
}

.plans-page .site-navbar .navbar-brand {
  color: #0b70dd;
}

.plans-page .site-navbar .navbar-brand i {
  color: #0b70dd;
}

.plans-page .site-navbar .navbar-toggler {
  border: 1px solid #d0d9ea;
}

.plans-page .site-navbar .navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%2813,84,171,0.88%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2.2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

.plans-page .site-navbar .nav-link:hover {
  color: #0066cc;
  background: #edf5ff;
  transform: translateY(-1px);
}

.plans-page main {
  animation: plansLoadIn 0.6s cubic-bezier(0.2, 0.7, 0.2, 1) both;
}

.plans-page .plans-hero {
  position: relative;
  margin-top: 73px;
  min-height: clamp(330px, 30vw, 530px);
  /*background: url("../images/product-banner.png") center center / cover*/
  /*  no-repeat;*/
  background: center center / cover no-repeat;
  overflow: hidden;
}

.plans-page .plans-hero-inner {
  position: relative;
  z-index: 2;
  min-height: clamp(330px, 30vw, 530px);
  display: flex;
  justify-content: end;
  align-items: center;
  gap: clamp(1.5rem, 4vw, 4rem);
}

.plans-page .plans-hero-title-mobile {
  opacity: 0;
  display: none;
}

.plans-page .plans-hero-device {
  margin: 0;
  max-width: min(430px, 100%);
  animation: plansHeroFloat 4s ease-in-out infinite;
}

.plans-page .plans-hero-device img {
  width: 100%;
  filter: drop-shadow(0 20px 34px rgba(0, 16, 58, 0.46));
}

.plans-page .plans-hero-copy {
  text-align: left;
  color: #ffffff;
  max-width: min(100%, 425px);
  /* margin-left: 12rem; */
  margin-right: 12rem;
}

.plans-page .plans-hero-copy h1 {
  font-family: "Noto Sans TC", "Microsoft JhengHei", sans-serif;
  color: #ffffff;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 0.45rem;
}

.plans-page .plans-hero-copy .main-title {
  position: relative;
  margin: 0 0 1.2rem;
  padding-bottom: 0.68rem;
  color: #ffffff;
  font-size: clamp(1.02rem, 1.7vw, 1.54rem);
  font-weight: 500;
  line-height: 1.4;
}

.plans-page .plans-hero-copy .main-title::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 72px;
  height: 2px;
  border-radius: 99px;
  background: rgba(233, 244, 255, 0.8);
}

.plans-page .plans-hero-copy .hero-desc {
  margin: 0;
  color: #ffffff;
  font-size: clamp(0.875rem, 1vw, 1rem);
  line-height: 1.78;
}

.plans-page .plans-main {
  background: var(--plans-bg);
  padding-top: clamp(3rem, 5vw, 4.8rem);
  padding-bottom: clamp(3.6rem, 6vw, 5.6rem);
}

.plans-page .plans-heading {
  text-align: center;
  max-width: 920px;
  margin: 0 auto 2.4rem;
}

.plans-page .plans-heading h2 {
  font-family: "Noto Sans TC", "Microsoft JhengHei", sans-serif;
  color: #1d2432;
  font-size: clamp(1.75rem, 3vw, 2.375rem);
  font-weight: 700;
  letter-spacing: 0;
  margin-bottom: 0.75rem;
}

.plans-page .plans-heading p {
  color: #5a6678;
  margin: 0;
  font-size: clamp(0.95rem, 1.2vw, 1rem);
}

.plans-page .plans-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 1.1rem;
  align-items: stretch;
}

.plans-page .plan-card {
  position: relative;
  border-radius: 16px;
  border: 1px solid var(--plans-stroke);
  background: var(--plans-card);
  box-shadow: 0 8px 22px rgba(8, 56, 130, 0.06);
  padding: 1.2rem 1.25rem 1.25rem;
  display: flex;
  flex-direction: column;
  min-height: 640px;
  transition:
    transform 0.28s ease,
    box-shadow 0.28s ease,
    border-color 0.28s ease;
  content-visibility: auto;
  contain-intrinsic-size: 640px;
}

.plans-page .plan-card:hover {
  transform: translateY(-6px);
  border-color: var(--plans-primary-strong);
  box-shadow: 0 12px 34px rgba(5, 85, 192, 0.2);
}

.plans-page .plan-card-head {
  padding-bottom: 0.7rem;
  border-bottom: 1px solid #e4ebf6;
  margin-bottom: 0.8rem;
}

.plans-page .plans2-card .plan-card-head {
  border-bottom: none;
}

.plans-page .plan-pill {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 0.16rem 0.7rem;
  border-radius: 999px;
  background: #deecff;
  color: #1a6dca;
  font-size: 0.82rem;
  font-weight: 700;
}

.plans-page .plan-tag {
  position: absolute;
  top: 0;
  right: 0;
  min-height: 32px;
  padding: 0.36rem 0.72rem;
  border-radius: 0 15px 0 12px;
  background: #f4c700;
  color: #0055bf;
  font-size: 0.84rem;
  font-weight: 800;
}

.plans-page .plan-card h3 {
  margin: 0.84rem 0 0.72rem;
  color: #1f2432;
  font-family: "Noto Sans TC", "Microsoft JhengHei", sans-serif;
  font-size: clamp(1.5rem, 2vw, 1.75rem);
  font-weight: 800;
}

.plans-page .plan-card-head p {
  margin: 0;
  color: #646f82;
  font-size: 0.95rem;
  line-height: 1.65;
}

.plans-page .plan-feature {
  min-height: 4.6em;
}

.plans-page .plan-feature p {
  font-size: 0.95rem;
  line-height: 1.65;
}

.plans-page .plan-card-price {
  color: var(--plans-primary);
  font-size: clamp(1.75rem, 2vw, 2.25rem);
  font-weight: 700;
  line-height: 1.2;
  margin: 0.72rem 0 0.72rem;
}

.plans-page .plan-feature-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.38rem;
}

.plans-page .plan-feature-list li {
  display: flex;
  align-items: center;
  gap: 1rem;
  color: #1f2a3b;
  line-height: 1.45;
  font-size: 0.95rem;
}

.plans-page .plan-feature-list li i {
  margin-top: 0.08rem;
  color: #0066cc;
  font-size: 1rem;
  flex: 0 0 auto;
}

.plans-page .plan-feature-list li span {
  flex: 1;
}

.plans-page .plan-note {
  margin: 0.68rem 0 0;
  color: #4f5e76;
  font-size: 0.91rem;
}

.plans-page .plan-btn {
  margin-top: auto;
  border-radius: 11px;
  min-height: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  background: #f3f4f6;
  color: #1f2a3b;
  font-size: 1rem;
  font-weight: 800;
  text-decoration: none;
  transition:
    transform 0.2s ease,
    background-color 0.2s ease,
    color 0.2s ease,
    box-shadow 0.2s ease;
}

.plans-page .plan-btn:hover {
  transform: translateY(-1px);
  background: #dce4ef;
  color: #1a2435;
}

.plans-page .plan-card:hover .plan-btn,
.plans-page .plan-card:focus-within .plan-btn {
  background: #0d67ce;
  color: #ffffff;
  box-shadow: 0 10px 20px rgba(13, 103, 206, 0.28);
}

.plans-page .plan-card:hover .plan-btn:hover,
.plans-page .plan-card:focus-within .plan-btn:hover {
  background: #0a5fbe;
  color: #ffffff;
}

@keyframes plansHeroFloat {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-8px);
  }
}

@keyframes plansLoadIn {
  from {
    opacity: 0;
    transform: translateY(12px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 991.98px) {
  .plans-page .site-navbar .navbar-collapse {
    margin-top: 10px;
    padding: 8px;
    border-radius: 12px;
    background: #ffffff;
    border: 1px solid #e4e9f2;
  }

  .plans-page .plans-hero::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: clamp(170px, 42vw, 300px);
    background-image: var(--plans-hero-bg);
    background-position: center center;
    background-size: cover;
    background-repeat: no-repeat;
    z-index: 1;
  }

  .plans-page .plans-hero {
    margin-top: 67px;
    min-height: auto;
    padding-top: clamp(170px, 42vw, 300px);
    padding-bottom: 1rem;
    background-image: none !important;
  }

  .plans-page .plans-hero-device {
    max-width: 310px;
    order: 2;
  }

  .plans-page .plans-hero-inner {
    position: static;
    min-height: auto;
    text-align: center;
    gap: 0.85rem;
    padding-top: 0.72rem;
    padding-bottom: 0;
    margin-top: 1rem;
  }

  .plans-page .plans-hero-copy {
    width: min(100%, 680px);
    border: 1px solid #d9e8fb;
    border-radius: 12px;
    padding: 0.86rem 0.78rem 0.92rem;
    box-shadow: 0 10px 24px rgba(10, 57, 128, 0.1);
    text-align: left;
    order: 1;
    margin-left: 0;
    max-width: 100%;
    margin-right: 0;
  }

  .plans-page .plans-hero-title-mobile {
    display: block;
    position: absolute;
    top: clamp(24px, 8vw, 64px);
    right: clamp(0.3rem, 1.5vw, 0.8rem);
    z-index: 4;
    /* max-width: min(56vw, 15rem); */
    margin: 0;
    color: #ffffff;
    font-family: "Noto Sans TC", "Microsoft JhengHei", sans-serif;
    font-size: clamp(1.65rem, 5.2vw, 2.2rem);
    font-weight: 800;
    line-height: 1.2;
    letter-spacing: 0.02em;
    text-align: right;
    text-shadow: 0 1px 3px rgba(255, 255, 255, 0.28);
    margin-top: 3rem;
    opacity: 1 !important;
  }

  .plans-page .plans-hero-copy .plans-hero-title-desktop {
    display: none;
  }

  .plans-page .plans-hero-copy h1 {
    font-size: clamp(1.72rem, 5.6vw, 2.36rem);
  }

  .plans-page .plans-hero-copy .main-title {
    font-size: clamp(0.95rem, 3vw, 1.18rem);
    margin-bottom: 0.92rem;
    padding-bottom: 0.55rem;
    color: #0066cc;
  }

  .plans-page .plans-hero-copy .main-title::after {
    width: 56px;
  }

  .plans-page .plans-hero-copy .hero-desc {
    font-size: clamp(0.8rem, 2.2vw, 0.92rem);
    line-height: 1.65;
    color: #0066cc;
  }

  .plans-page .plans-grid {
    grid-template-columns: repeat(auto-fit, minmax(285px, 1fr));
  }

  .plans-page .plan-card {
    min-height: 610px;
  }
}

@media (max-width: 767.98px) {
  .plans-page .plans-main {
    padding-top: 2.3rem;
    padding-bottom: 3.1rem;
  }

  .plans-page .plans-heading {
    margin-bottom: 1.55rem;
  }

  .plans-page .plans-grid {
    grid-template-columns: 1fr;
    gap: 0.9rem;
  }

  .plans-page .plan-card {
    min-height: auto;
    padding: 1rem;
  }

  .plans-page .plan-card h3 {
    font-size: clamp(1.25rem, 5vw, 1.75rem);
  }

  .plans-page .plan-card-price {
    font-size: clamp(1.5rem, 6vw, 2.5rem);
  }

  .plans-page .plan-feature-list li {
    font-size: 0.93rem;
  }

  .plans-page .plan-feature p {
    font-size: 0.875rem;
  }

  .plans-page .plans-hero-copy .hero-desc {
    max-height: 6rem;
    overflow: auto;
  }
}

@media (max-width: 575.98px) {
  .plans-page .plans-hero {
    padding-top: clamp(170px, 42vw, 300px);
    padding-bottom: 1rem;
  }

  .plans-page .plans-hero::before {
    height: clamp(150px, 48vw, 210px);
  }

  .plans-page .plans-hero-copy h1,
  .plans-page .plans-hero-copy .main-title,
  .plans-page .plans-hero-copy .hero-desc {
    color: #0066cc;
  }

  .plans-page .plans-hero-title-mobile {
    top: clamp(18px, 6vw, 36px);
    right: clamp(0.2rem, 1.8vw, 0.6rem);
    max-width: min(58vw, 12rem);
    font-size: clamp(1.25rem, 8vw, 1.5rem);
  }

  .plans-page .plans-heading h2 {
    font-size: clamp(1rem, 9vw, 1.25rem);
  }

  .plans-page .plans-heading p {
    font-size: 0.875rem;
    line-height: 1.6;
  }

  .plans-page .plan-pill {
    font-size: 0.77rem;
    padding-left: 0.56rem;
    padding-right: 0.56rem;
  }

  .plans-page .plan-tag {
    font-size: 0.77rem;
  }

  .plans-page .plan-btn {
    min-height: 46px;
    font-size: 0.95rem;
    margin-top: 1rem;
  }

  .plans-page .plan-feature-list li {
    font-size: 0.875rem;
  }

  .plans2-page .plans-hero-title-mobile {
    color: #0066cc;
  }
}

@media (prefers-reduced-motion: reduce) {
  .plans-page main,
  .plans-page .plans-hero-device,
  .plans-page .plan-card,
  .plans-page .plan-btn,
  .plans-page .site-navbar .nav-link {
    animation: none !important;
    transition: none !important;
  }
}

.plans2-page {
  --plans-bg: #ffffff;
}

.plans2-page .plans-main {
  background: var(--plans-bg);
}

.plans2-page .plans-hero {
  /*background: url("../images/product2-banner.png") center center / cover*/
  /*  no-repeat;*/
  background: center center / cover no-repeat;
}

.plans2-page .plans2-offer-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.6rem;
  margin-bottom: 2rem;
}

.plans2-page .plans2-card {
  min-height: 0;
  border-radius: 18px;
  padding: 3rem;
}

.plans2-page .plans2-card .plan-card-head {
  margin-bottom: 1rem;
  padding-bottom: 0;
}

.plans2-page .plans-hero-copy h1 {
  font-family: "Noto Sans TC", "Microsoft JhengHei", sans-serif;
  color: #0066cc;
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 0.7rem;
}

.plans2-page .plans-hero-copy p {
  margin: 0;
  font-size: clamp(1rem, 1.7vw, 1.45rem);
  color: #0066cc;
}

.plans2-page .plans-hero-copy {
  text-align: right;
}

.plans2-page .plans-hero-copy small {
  display: block;
  margin-top: 0.12rem;
  font-size: clamp(0.9rem, 1.2vw, 1.1rem);
  color: #0066cc;
}

.plans2-page .plans2-card .plan-card-head h3 {
  margin: 0;
  font-size: clamp(1.25rem, 2.2vw, 1.75rem);
}

.plans2-page .plans2-card .plan-card-price {
  margin-top: 0;
  margin-bottom: 3rem;
  font-size: clamp(1.5rem, 3vw, 2.25rem);
}

.plans2-page .plans2-card .plan-feature-list {
  margin-bottom: 1rem;
}

.plans2-page .plan-feature-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 1rem;
}

.plans2-page .plans-hero-inner {
  position: relative;
  z-index: 2;
  min-height: clamp(10rem, 30vw, 32rem);
  display: flex;
  justify-content: right;
  align-items: center;
  gap: clamp(1.5rem, 4vw, 4rem);
}

.plans2-page .plans2-card .plan-feature-list li {
  align-items: flex-start;
  gap: 0.6rem;
  font-size: 1.02rem;
}

.plans2-page .plans2-card .plan-feature-list li i {
  margin-top: 0.18rem;
}

.plans2-page .plans2-card .plan-btn {
  margin-top: auto;
}

.plans2-page .plans2-card.is-primary {
  border-color: var(--plans-primary-strong);
  box-shadow: 0 14px 34px rgba(5, 85, 192, 0.16);
}

.plans2-page .plans2-card.is-primary .plan-btn {
  background: #0d67ce;
  color: #ffffff;
  box-shadow: 0 10px 20px rgba(13, 103, 206, 0.28);
}

.plans2-page .plans2-card.is-primary .plan-btn:hover {
  background: #0a5fbe;
  color: #ffffff;
}

.plans2-page .plans2-highlight {
  color: #0d67ce;
  font-size: clamp(1.8rem, 3vw, 2.7rem);
  line-height: 1.2;
  font-weight: 800;
  margin-top: 0.5rem;
}

.plans2-page .plans2-rules {
  background: #ffffff;
  padding: clamp(1.2rem, 2.6vw, 2rem);
  padding-top: 5rem;
}

.plans2-page .plans2-rules h3,
.plans2-page .plans2-rules h4 {
  font-family: "Noto Sans TC", "Microsoft JhengHei", sans-serif;
  text-align: center;
  font-weight: 700;
  color: #222222;
}

.plans2-page .plans2-rules h3 {
  font-size: clamp(1.6rem, 2.5vw, 2.125rem);
  margin-bottom: 3rem;
}

.plans2-page .plans2-rules h4 {
  margin-top: 5rem;
  margin-bottom: 0.8rem;
  font-size: clamp(1.5rem, 2.3vw, 2rem);
}

.plans2-page .plans2-rules-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.8rem 1.8rem;
}

.plans2-page .plans2-bullets li {
  font-size: 0.95rem;
}

.plans2-page .plans2-rules p {
  color: #5a6678;
  font-size: 0.95rem;
  line-height: 1.8;
  margin: 0;
  text-align: center;
}
@media (min-width: 992px) {
  .plans2-page .plans-hero-inner {
    padding-right: 5rem;
  }

  .taxi-cam-page .taxi-hero-inner {
    padding-right: 10rem;
  }

  .taxi-cam-page .taxi-section-head h2 {
    padding-top: 0rem;
  }
}

@media (max-width: 1023.98px) {
  .plans2-page .plans2-rules-grid {
    grid-template-columns: 1fr;
    gap: 0.6rem;
  }

  .plans2-page .plans2-card {
    padding: 1.2rem;
  }

  .plans2-page .plans-hero-inner {
    padding-right: 5rem;
  }
}

@media (max-width: 767.98px) {
  .plans2-page .plans-main {
    padding-top: 2.1rem;
    padding-bottom: 2.8rem;
  }

  .plans2-page .plans2-card .plan-feature-list li {
    font-size: 0.94rem;
  }

  .plans2-page .plans2-rules {
    border-radius: 14px;
    padding: 1rem;
  }

  .plans2-page .plans2-rules p {
    font-size: 0.9rem;
    text-align: left;
  }
}

@media (max-width: 575.98px) {
  .plans2-page .plans2-rules h3 {
    font-size: 1.25rem;
    margin-bottom: 2rem;
  }

  .plans2-page .plans2-rules h4 {
    font-size: 1.25rem;
    margin-top: 2rem;
  }

  .plans2-page .plans-hero-inner {
    justify-content: center;
    padding-left: 1rem;
    padding-right: 1rem;
    min-height: auto;
    padding-top: 0;
  }

  .plans2-page .plans2-offer-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .plans2-page .plans-hero-copy {
    text-align: left;
    margin-top: 1rem;
  }
}

@media (max-width: 399.98px) {
  .plans2-page .plans2-card {
    padding: 0.95rem;
  }

  .plans2-page .plans2-card .plan-feature-list li {
    font-size: 0.875rem;
  }

  .plans2-page .plans2-card .plan-card-price {
    margin-bottom: 2rem;
  }
}
