.bdp-page {
  --accent: #0FB5A8;
  --accent-d: #0A8A80;
  --soft: rgba(15,181,168,.10);
  --soft2: rgba(15,181,168,.18);
  --ink: #12242E;
  --muted: #5C6B73;
  --line: #E7ECEF;
  --bg: #FFFFFF;
  --bg2: #F4F7F9;
  background: var(--bg);
  color: var(--ink);
  font-family: "Noto Sans TC", system-ui, sans-serif;
  font-size: 18px;
  -webkit-font-smoothing: antialiased;
}

.bdp-page * {
  box-sizing: border-box;
}

.bdp-page a {
  color: inherit;
  text-decoration: none;
}

.bdp-num {
  font-family: "Outfit", "Noto Sans TC", sans-serif;
}

.bdp-wrap {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 24px;
}

.bdp-btn-primary,
.bdp-btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: .25s;
}

.bdp-btn-primary:hover,
.bdp-btn-secondary:hover {
  transform: translateY(-2px);
  text-decoration: none;
}

.bdp-hero {
  position: relative;
  overflow: hidden;
  background: linear-gradient(165deg,var(--soft) 0%,#FFFFFF 58%);
}

.bdp-hero-orb {
  position: absolute;
  top: -160px;
  right: -120px;
  width: 480px;
  height: 480px;
  border-radius: 50%;
  background: var(--soft2);
  filter: blur(10px);
  pointer-events: none;
}

.bdp-hero-grid {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 48px;
  align-items: center;
  padding: 84px 0 92px;
}

.bdp-eyebrow,
.bdp-kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--accent-d);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: .04em;
}

.bdp-eyebrow {
  background: #fff;
  border: 1px solid var(--soft2);
  padding: 7px 18px;
  border-radius: 999px;
  font-weight: 700;
  box-shadow: 0 4px 14px var(--soft);
}

.bdp-eyebrow::before,
.bdp-kicker::before {
  content: "";
  display: inline-block;
  width: 7px;
  height: 7px;
  background: var(--accent);
  transform: rotate(45deg);
}

.bdp-hero h1 {
  font-size: 3rem;
  font-weight: 900;
  line-height: 1.18;
  margin: 20px 0 16px;
}

.bdp-hero h1 span,
.bdp-section-head h2 span,
.bdp-inline-accent {
  color: var(--accent-d);
}

.bdp-hero p,
.bdp-section-head p {
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.9;
}

.bdp-hero p {
  max-width: 460px;
  margin: 0 0 30px;
}

.bdp-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.bdp-btn-primary,
.bdp-btn-secondary {
  padding: 14px 32px;
  border-radius: 999px;
  font-weight: 900;
  font-size: 1.02rem;
}

.bdp-btn-primary {
  background: var(--accent);
  color: #fff !important;
  box-shadow: 0 12px 26px var(--soft2);
}

.bdp-btn-secondary {
  background: #fff;
  border: 1.5px solid var(--accent);
  color: var(--accent-d) !important;
  font-weight: 700;
}

.bdp-hero-points {
  display: flex;
  gap: 22px;
  flex-wrap: wrap;
  margin-top: 28px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 500;
}

.bdp-hero-media {
  position: relative;
}

.bdp-float {
  animation: bdpFloatY 6s ease-in-out infinite;
}

.bdp-hero-media img {
  aspect-ratio: 4/3;
  width: 100%;
  border-radius: 24px;
  object-fit: cover;
  display: block;
  box-shadow: 0 30px 60px rgba(18,36,46,.12);
}

.bdp-price-chip {
  position: absolute;
  left: -10px;
  bottom: -20px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 14px 22px;
  box-shadow: 0 16px 40px rgba(18,36,46,.16);
}

.bdp-price-chip span {
  font-size: 12px;
  color: var(--muted);
}

.bdp-price-chip strong {
  display: block;
  font-size: 30px;
  font-weight: 900;
  color: var(--accent-d);
  line-height: 1.1;
}

.bdp-price-chip small {
  font-size: 14px;
  color: var(--muted);
  font-weight: 700;
}

.bdp-ticker {
  background: var(--accent-d);
  overflow: hidden;
  height: 52px;
  display: flex;
  align-items: center;
}

.bdp-ticker-inner {
  display: flex;
  align-items: center;
  white-space: nowrap;
  animation: bdpTicker 30s linear infinite;
  will-change: transform;
}

.bdp-ticker-inner:hover {
  animation-play-state: paused;
}

.bdp-ticker-group {
  display: inline-flex;
  align-items: center;
  font-family: "Outfit", "Noto Sans TC", sans-serif;
  font-size: 15px;
  font-weight: 900;
  color: #fff;
  letter-spacing: .03em;
}

.bdp-ticker-group span {
  padding: 0 32px;
}

.bdp-ticker-group b {
  color: rgba(255,255,255,.4);
}

.bdp-section {
  padding: 84px 0;
}

.bdp-section-soft {
  background: var(--bg2);
}

.bdp-section-head {
  text-align: center;
  margin-bottom: 44px;
}

.bdp-section-head h2 {
  font-size: 2.1rem;
  font-weight: 900;
  margin: 10px 0 8px;
}

.bdp-section-head p {
  font-size: 1rem;
  margin: 0;
}

.bdp-plans-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  max-width: 860px;
  margin: 0 auto;
  align-items: stretch;
}

.bdp-plan-card {
  border: 1px solid var(--line);
  border-radius: 24px;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 12px 34px rgba(18,36,46,.07);
  display: flex;
  flex-direction: column;
  transition: .3s;
}

.bdp-plan-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 26px 56px rgba(18,36,46,.14);
}

.bdp-plan-head {
  position: relative;
  padding: 30px 28px 26px;
  color: #fff;
  background: linear-gradient(135deg,#243843,#33505E);
}

.bdp-plan-card.is-featured .bdp-plan-head {
  background: linear-gradient(135deg,var(--accent),var(--accent-d));
}

.bdp-hot {
  position: absolute;
  top: 0;
  right: 0;
  background: #fff;
  color: var(--accent-d);
  padding: 7px 18px;
  border-radius: 0 24px 0 14px;
  font-weight: 900;
  font-size: 13px;
}

.bdp-plan-badge {
  display: inline-block;
  background: rgba(255,255,255,.2);
  border: 1px solid rgba(255,255,255,.35);
  padding: 4px 14px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 700;
  margin-bottom: 12px;
}

.bdp-plan-name {
  font-size: 1.55rem;
  font-weight: 900;
}

.bdp-plan-speed {
  font-size: .85rem;
  opacity: .85;
  margin-bottom: 14px;
}

.bdp-plan-price {
  font-size: 3.6rem;
  font-weight: 900;
  line-height: 1;
}

.bdp-plan-price span {
  font-size: 1.1rem;
  font-weight: 700;
}

.bdp-plan-note {
  font-size: .85rem;
  opacity: .85;
  margin-top: 6px;
}

.bdp-plan-body {
  padding: 24px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.bdp-spec-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-bottom: 18px;
}

.bdp-spec {
  background: var(--bg2);
  border: 1px solid var(--line);
  border-radius: 13px;
  padding: 11px;
  text-align: center;
}

.bdp-spec.is-gold {
  background: var(--soft);
  border-color: var(--soft2);
}

.bdp-spec-label {
  font-size: 11px;
  color: var(--muted);
  margin-bottom: 3px;
}

.bdp-spec-value {
  font-weight: 900;
  font-size: 1.05rem;
  color: var(--ink);
}

.bdp-spec.is-gold .bdp-spec-value {
  color: var(--accent-d);
}

.bdp-checks {
  list-style: none;
  padding: 0;
  margin: 0 0 18px;
}

.bdp-checks li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: .92rem;
  color: #3F525C;
  margin-bottom: 10px;
}

.bdp-checks i {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .7rem;
  font-weight: 900;
  background: var(--soft);
  color: var(--accent-d);
  margin-top: 1px;
  font-style: normal;
}

.bdp-suitable {
  background: var(--soft);
  border: 1px solid var(--soft2);
  border-radius: 12px;
  padding: 11px 14px;
  font-size: .86rem;
  font-weight: 700;
  color: var(--accent-d);
  margin-bottom: 18px;
}

.bdp-card-cta {
  margin-top: auto;
  text-align: center;
  background: var(--accent);
  color: #fff !important;
  padding: 13px;
  border-radius: 13px;
  font-weight: 900;
  transition: .25s;
}

.bdp-card-cta:hover {
  color: #fff !important;
}

.bdp-feat-grid {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 22px;
}

.bdp-feature-card,
.bdp-usage-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 18px;
  overflow: hidden;
  transition: .3s;
}

.bdp-feature-card:hover,
.bdp-usage-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 22px 44px rgba(18,36,46,.1);
  border-color: var(--soft2);
}

.bdp-feature-image {
  position: relative;
  aspect-ratio: 16/9;
  overflow: hidden;
}

.bdp-feature-image img,
.bdp-usage-image img,
.bdp-payment-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.bdp-feature-no {
  position: absolute;
  left: 18px;
  top: 18px;
  width: 46px;
  height: 46px;
  border-radius: 13px;
  background: var(--accent);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  font-weight: 900;
  box-shadow: 0 8px 18px var(--soft2);
}

.bdp-card-body {
  padding: 24px 26px 28px;
}

.bdp-card-title {
  font-size: 1.22rem;
  font-weight: 800;
  margin-bottom: 9px;
}

.bdp-card-text {
  font-size: 1rem;
  color: var(--muted);
  line-height: 1.85;
}

.bdp-usage-grid {
  display: grid;
  grid-template-columns: repeat(4,1fr);
  gap: 20px;
}

.bdp-usage-image {
  position: relative;
  aspect-ratio: 4/3;
  overflow: hidden;
}

.bdp-usage-tag {
  position: absolute;
  left: 14px;
  top: 14px;
  background: var(--accent);
  color: #fff;
  padding: 4px 14px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 800;
}

.bdp-usage-body {
  padding: 18px 16px 22px;
  text-align: center;
}

.bdp-usage-amount {
  font-size: 1.18rem;
  font-weight: 900;
  color: var(--ink);
  margin-bottom: 5px;
}

.bdp-usage-note {
  background: var(--soft);
  border: 1px solid var(--soft2);
  border-radius: 16px;
  padding: 16px 24px;
  font-size: .95rem;
  font-weight: 700;
  color: var(--accent-d);
  text-align: center;
  margin-top: 24px;
}

.bdp-compare {
  overflow-x: auto;
  border-radius: 18px;
  border: 1px solid var(--line);
  background: #fff;
  box-shadow: 0 12px 34px rgba(18,36,46,.06);
}

.bdp-compare table {
  width: 100%;
  border-collapse: collapse;
  min-width: 520px;
}

.bdp-compare th {
  padding: 16px;
  font-weight: 900;
}

.bdp-compare th:first-child {
  text-align: left;
  font-size: .9rem;
  color: var(--muted);
  font-weight: 700;
  background: #fff;
  width: 34%;
}

.bdp-compare th:nth-child(2) {
  text-align: center;
  color: #fff;
  background: linear-gradient(135deg,#243843,#33505E);
}

.bdp-compare th:nth-child(3) {
  text-align: center;
  color: #fff;
  background: linear-gradient(135deg,var(--accent),var(--accent-d));
}

.bdp-compare td {
  text-align: center;
  padding: 13px;
  font-size: .92rem;
  color: #3F525C;
  border-top: 1px solid var(--line);
}

.bdp-compare td:first-child {
  text-align: left;
  padding: 13px 20px;
  color: var(--muted);
  font-weight: 700;
}

.bdp-compare td:nth-child(2) {
  background: var(--bg2);
}

.bdp-compare td:last-child {
  font-size: .95rem;
  font-weight: 800;
  color: var(--accent-d);
  background: var(--soft);
  border-top: 1px solid var(--soft2);
}

.bdp-cols2 {
  display: grid;
  grid-template-columns: 5fr 7fr;
  gap: 24px;
}

.bdp-info-box {
  background: var(--bg2);
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 32px;
}

.bdp-info-title {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 1.15rem;
  font-weight: 900;
  margin-bottom: 18px;
}

.bdp-info-icon {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  background: var(--soft);
  display: flex;
  align-items: center;
  justify-content: center;
}

.bdp-payment-image {
  border-radius: 12px;
  overflow: hidden;
  margin-bottom: 16px;
  aspect-ratio: 4/3;
}

.bdp-payment-card {
  background: var(--soft);
  border: 1px solid var(--soft2);
  border-radius: 14px;
  padding: 18px;
  text-align: center;
  margin-bottom: 16px;
}

.bdp-payment-card strong {
  font-size: 1.25rem;
  color: var(--accent-d);
}

.bdp-payment-card div {
  color: var(--muted);
  font-size: .85rem;
  margin-top: 5px;
}

.bdp-note-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.bdp-note-list li {
  display: flex;
  gap: 12px;
  padding: 11px 0;
  border-bottom: 1px solid var(--line);
  font-size: .9rem;
  color: var(--muted);
  line-height: 1.6;
}

.bdp-note-list i {
  flex-shrink: 0;
  width: 7px;
  height: 7px;
  background: var(--accent);
  transform: rotate(45deg);
  margin-top: 7px;
}

.bdp-apply {
  position: relative;
  overflow: hidden;
  background: linear-gradient(180deg,var(--bg2),var(--soft));
}

.bdp-form-card {
  max-width: 860px;
  margin: 0 auto;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 26px;
  padding: 44px;
  box-shadow: 0 30px 70px rgba(18,36,46,.12);
}

.bdp-form-head {
  margin-bottom: 32px;
}

.bdp-form-head h2 {
  font-size: 1.9rem;
  font-weight: 900;
  margin: 8px 0 10px;
}

.bdp-form-head p {
  color: var(--muted);
  font-size: .95rem;
  line-height: 1.8;
  margin: 0;
}

.bdp-form-field {
  margin-bottom: 18px;
}

.bdp-form-label,
.bdp-form-card label {
  display: block;
  font-size: .85rem;
  font-weight: 700;
  color: var(--muted);
  margin-bottom: 7px;
}

.bdp-form-card input[type="text"],
.bdp-form-card input[type="tel"],
.bdp-form-card select {
  width: 100%;
  padding: 13px 14px;
  border: 1px solid var(--line);
  border-radius: 12px;
  font-size: .95rem;
  background: #fff;
  color: var(--ink);
  outline: none;
}

.bdp-form-3 {
  display: grid;
  grid-template-columns: 1fr 1fr 2fr;
  gap: 16px;
  margin-bottom: 18px;
}

.bdp-form-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 24px;
}

.bdp-radio-row {
  display: flex;
  gap: 12px;
}

.bdp-radio {
  flex: 1;
  display: flex !important;
  align-items: center;
  gap: 10px;
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 12px 16px;
  cursor: pointer;
  transition: .2s;
  font-size: .95rem !important;
  font-weight: 700 !important;
  color: var(--ink) !important;
}

.bdp-radio input,
.bdp-consent input {
  accent-color: var(--accent);
}

.bdp-consent {
  display: flex !important;
  align-items: flex-start;
  gap: 10px;
  font-size: .88rem !important;
  color: var(--muted) !important;
  line-height: 1.6;
  margin-bottom: 20px !important;
  cursor: pointer;
}

.bdp-consent input {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  margin-top: 2px;
}

.bdp-consent a {
  color: var(--accent-d);
  font-weight: 700;
  text-decoration: underline;
}

.bdp-bottom-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: var(--soft);
  border: 1px solid var(--soft2);
  border-radius: 16px;
  padding: 18px 24px;
}

.bdp-submit {
  background: var(--accent);
  color: #fff;
  border: none;
  padding: 14px 36px;
  border-radius: 999px;
  font-weight: 900;
  font-size: 1.02rem;
  cursor: pointer;
  box-shadow: 0 12px 26px var(--soft2);
  transition: .25s;
}

.bdp-submit:disabled {
  opacity: .65;
  cursor: wait;
}

.bdp-submit:hover {
  transform: translateY(-3px);
}

.bdp-selected-label {
  font-size: .9rem;
  color: var(--muted);
  line-height: 1.4;
  margin-bottom: 4px;
}

.bdp-selected-price {
  font-weight: 900;
  color: var(--accent-d);
  line-height: 1;
  display: flex;
  align-items: flex-end;
  gap: 2px;
}

.bdp-selected-amount {
  font-size: 2.15rem;
  color: var(--accent-d);
  font-weight: 900;
}

.bdp-selected-unit {
  font-size: 1rem;
  color: var(--muted);
  font-weight: 700;
  line-height: 1.2;
}

.bdp-form-message {
  display: none;
  text-align: center;
  margin-top: 16px;
  background: #fff;
  border: 1px solid var(--soft2);
  border-radius: 12px;
  padding: 12px;
  color: var(--accent-d);
  font-weight: 700;
  font-size: .9rem;
}

.bdp-form-message.is-visible {
  display: block;
}

.bdp-form-note {
  text-align: center;
  margin-top: 14px;
  color: var(--muted);
  font-size: .84rem;
}

.bdp-faq {
  max-width: 860px;
  margin: 0 auto;
}

.bdp-faq-item {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 16px;
  margin-bottom: 14px;
  overflow: hidden;
  box-shadow: 0 8px 24px rgba(18,36,46,.05);
}

.bdp-faq-btn {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 18px;
  padding: 22px 26px;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  font-family: inherit;
  color: inherit;
}

.bdp-faq-btn strong {
  font-size: 1.12rem;
  font-weight: 800;
  color: var(--ink);
}

.bdp-faq-mark {
  flex-shrink: 0;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: var(--soft);
  color: var(--accent-d);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  font-weight: 700;
  line-height: 1;
}

.bdp-faq-item.is-open .bdp-faq-mark {
  background: var(--accent);
  color: #fff;
}

.bdp-faq-answer {
  display: none;
  padding: 0 26px 24px;
  font-size: 1.04rem;
  color: var(--muted);
  line-height: 1.9;
}

.bdp-faq-item.is-open .bdp-faq-answer {
  display: block;
}

.bdp-section-soft p a[data-consult-track] {
  color: inherit;
  text-decoration: none;
}

.bdp-section-soft p a[data-consult-track] strong {
  color: var(--accent-d);
  font-weight: 900;
}

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

@keyframes bdpTicker {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

@media (max-width: 980px) {
  .bdp-hero-grid,
  .bdp-cols2 {
    grid-template-columns: 1fr;
  }

  .bdp-hero-media {
    order: -1;
  }
}

@media (max-width: 760px) {
  .bdp-plans-grid {
    grid-template-columns: 1fr;
    max-width: 440px;
  }

  .bdp-feat-grid,
  .bdp-usage-grid {
    grid-template-columns: 1fr 1fr;
  }

  .bdp-form-2,
  .bdp-form-3 {
    grid-template-columns: 1fr;
  }

  .bdp-bottom-bar {
    flex-direction: column;
    align-items: stretch;
    text-align: center;
    gap: 16px;
  }

  .bdp-hero h1 {
    font-size: 2.1rem;
  }
}

@media (max-width: 520px) {
  .bdp-feat-grid {
    grid-template-columns: 1fr;
  }

  .bdp-usage-grid {
    grid-template-columns: 1fr 1fr;
  }

  .bdp-hero h1 {
    font-size: 1.8rem;
  }

  .bdp-section {
    padding: 56px 0;
  }

  .bdp-form-card {
    padding: 28px 18px;
  }
}
