/* ========================================
   BPR血壓紀錄2.0 - APP 介紹頁樣式
   ======================================== */

:root {
  --bpr-primary: #5bbfba;
  --bpr-primary-dark: #4aada8;
  --bpr-primary-light: #e8f7f6;
  --bpr-primary-alpha: rgba(91, 191, 186, 0.12);
  --bpr-secondary: #3b82f6;
  --bpr-normal: #22c55e;
  --bpr-elevated: #eab308;
  --bpr-stage1: #f97316;
  --bpr-stage2: #ef4444;
  --bpr-crisis: #7c3aed;
  --bpr-dark: #0a3535;
  --bpr-dark-card: #1e293b;
  --bpr-dark-border: #334155;
  --bpr-text: #1e293b;
  --bpr-text-second: #64748b;
  --bpr-text-light: #94a3b8;
  --bpr-bg: #f8fafc;
  --bpr-card: #ffffff;
  --bpr-border: #e2e8f0;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
a {
  text-decoration: none !important;
}

body {
  font-family:
    "Noto Sans TC",
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    sans-serif;
  color: var(--bpr-text-second);
  background: var(--bpr-card);
  overflow-x: hidden;
}

/* ---------- 導航列 ---------- */
.bpr-navbar .uk-navbar-container {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
  padding: 0 16px;
}
.bpr-navbar-sticky .uk-navbar-container {
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.08);
}
.bpr-logo {
  gap: 8px;
  font-weight: 700;
  color: var(--bpr-text) !important;
  font-size: 17px;
}
.bpr-logo img {
  border-radius: 8px;
}
.bpr-nav-links > li > a {
  color: var(--bpr-text-second) !important;
  font-size: 14px;
  font-weight: 500;
  transition: color 0.2s;
  min-height: 60px;
}
.bpr-nav-links > li > a:hover {
  color: var(--bpr-primary) !important;
}
.bpr-nav-btn {
  background: var(--bpr-primary);
  color: #fff;
  border: none;
  border-radius: 20px;
  font-weight: 600;
  padding: 8px 20px;
  font-size: 14px;
  text-decoration: none;
  transition: all 0.2s;
  white-space: nowrap;
}
.bpr-nav-btn:hover {
  background: #3a9e99;
  color: #fff;
  box-shadow: 0 4px 12px rgba(58, 158, 153, 0.45);
}
#mobile-nav .uk-offcanvas-bar {
  background: var(--bpr-dark);
  padding: 30px 20px;
}
#mobile-nav .uk-offcanvas-bar .uk-nav-default > li > a {
  color: #cbd5e1;
  padding: 12px 0;
  font-size: 16px;
}
#mobile-nav .uk-offcanvas-bar .uk-nav-default > li > a:hover {
  color: var(--bpr-primary);
}
#mobile-nav .uk-offcanvas-bar .uk-nav-divider {
  border-top-color: var(--bpr-dark-border);
}
#mobile-nav .uk-offcanvas-close {
  color: #94a3b8;
}

/* ---------- 動畫 ---------- */
@keyframes bpr-fade-in-up {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes bpr-float {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-8px);
  }
}
.bpr-fade-in {
  animation: bpr-fade-in-up 0.7s ease both;
}
.bpr-fade-in--delay {
  animation: bpr-fade-in-up 0.7s ease 0.25s both;
}

/* ---------- Hero ---------- */
.bpr-hero {
  padding: 80px 0 70px;
  background: #fff;
  position: relative;
}
.bpr-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(
      ellipse 700px 500px at 80% 50%,
      rgba(91, 191, 186, 0.08) 0%,
      transparent 70%
    ),
    radial-gradient(
      ellipse 500px 400px at 20% 80%,
      rgba(59, 130, 246, 0.06) 0%,
      transparent 70%
    );
  pointer-events: none;
}
.bpr-hero-text {
  padding-right: 20px;
  position: relative;
  z-index: 1;
}

.bpr-badge {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  background: var(--bpr-primary-alpha);
  color: var(--bpr-primary-dark);
  border: 1px solid rgba(91, 191, 186, 0.3);
  border-radius: 20px;
  padding: 5px 14px;
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 18px;
}
.bpr-hero-title {
  font-size: 52px;
  font-weight: 900;
  line-height: 1.2;
  color: #5abfba;
  margin-bottom: 18px;
}
.bpr-hero-subtitle {
  font-size: 19px;
  line-height: 1.75;
  color: var(--bpr-text-second);
  margin-bottom: 28px;
}

/* 賣點列表 */
.bpr-hero-benefits {
  list-style: none;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px 20px;
  margin-bottom: 28px;
}
.bpr-hero-benefits li {
  display: flex;
  align-items: center;
  gap: 12px;
}
.bpr-hero-benefits li strong {
  display: block;
  font-size: 15px;
  color: var(--bpr-text);
}
.bpr-hero-benefits li span {
  font-size: 14px;
  color: var(--bpr-text-second);
}
.bpr-benefit-icon {
  width: 36px;
  height: 36px;
  flex-shrink: 0;
  background: var(--bpr-primary-alpha);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.bpr-benefit-icon .material-icons {
  color: var(--bpr-primary);
  font-size: 18px;
}
.bpr-benefit-icon--blue {
  background: rgba(59, 130, 246, 0.1);
}
.bpr-benefit-icon--blue .material-icons {
  color: var(--bpr-secondary);
}
.bpr-benefit-icon--green {
  background: rgba(34, 197, 94, 0.1);
}
.bpr-benefit-icon--green .material-icons {
  color: var(--bpr-normal);
}
.bpr-benefit-icon--purple {
  background: rgba(124, 58, 237, 0.1);
}
.bpr-benefit-icon--purple .material-icons {
  color: var(--bpr-crisis);
}

.bpr-hero-cta {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 12px;
}
.bpr-hero-note {
  font-size: 12px;
  color: var(--bpr-text-light);
}

/* Hero QR Code（桌機顯示，手機隱藏） */
.bpr-hero-qr-row {
  display: flex;
  gap: 20px;
  margin-top: 16px;
  align-items: flex-start;
}
.bpr-hero-qr-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
}
.bpr-hero-qr-box {
  width: 100px;
  height: 100px;
  background: #fff;
  border-radius: 12px;
  padding: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
}
.bpr-hero-qr-box img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.bpr-hero-qr-box--coming {
  flex-direction: column;
  gap: 4px;
  background: #f3f4f6;
  box-shadow: none;
  border: 1px dashed #d1d5db;
}
.bpr-hero-qr-box--coming .bpr-hero-qr-icon {
  width: 28px;
  height: 28px;
  opacity: 0.3;
}
.bpr-hero-qr-box--coming .bpr-hero-qr-soon {
  font-size: 10px;
  color: #9ca3af;
}
.bpr-hero-qr-platform {
  font-size: 11px;
  color: var(--bpr-text-light);
  font-weight: 500;
}
@media (max-width: 767px) {
  .bpr-hero-qr-row {
    display: none;
  }
  .bpr-cta-qr-row {
    display: none;
  }
}

/* 手機 + 浮動卡 */
.bpr-hero-phone-wrap {
  position: relative;
  display: inline-block;
  z-index: 1;
}
.bpr-float-card {
  position: absolute;
  background: #fff;
  border: 1px solid var(--bpr-border);
  border-radius: 12px;
  padding: 8px 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  display: flex;
  align-items: center;
  gap: 7px;
  z-index: 10;
  white-space: nowrap;
  animation: bpr-float 3s ease-in-out infinite;
}
.bpr-float-card--1 {
  top: 40px;
  left: -60px;
  animation-delay: 0s;
}
.bpr-float-card--2 {
  top: 130px;
  right: -55px;
  animation-delay: 0.8s;
}
.bpr-float-card--3 {
  bottom: 80px;
  left: -55px;
  animation-delay: 1.6s;
}
.bpr-float-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  flex-shrink: 0;
}
.bpr-float-val {
  font-size: 13px;
  font-weight: 700;
  color: var(--bpr-text);
}
.bpr-float-label {
  font-size: 10px;
  color: var(--bpr-text-second);
}
.bpr-float-ai {
  font-size: 12px;
  font-weight: 600;
  color: var(--bpr-primary-dark);
}

/* ---------- 手機模擬框 ---------- */
.bpr-phone {
  width: 280px;
  background: #1a1a1a;
  border-radius: 40px;
  padding: 12px;
  box-shadow:
    0 0 0 2px #333,
    0 20px 60px rgba(0, 0, 0, 0.3),
    0 0 0 8px rgba(0, 0, 0, 0.05);
  position: relative;
}
.bpr-phone__notch {
  position: absolute;
  top: 6px;
  left: 50%;
  transform: translateX(-50%);
  width: 120px;
  height: 28px;
  background: #1a1a1a;
  border-radius: 0 0 18px 18px;
  z-index: 10;
}
.bpr-phone__screen {
  background: var(--bpr-bg);
  border-radius: 30px;
  overflow: hidden;
  height: 520px;
}
.bpr-phone__home-indicator {
  position: absolute;
  bottom: 8px;
  left: 50%;
  transform: translateX(-50%);
  width: 120px;
  height: 4px;
  background: #666;
  border-radius: 2px;
}

/* APP 模擬畫面 */
.bpr-app {
  display: flex;
  flex-direction: column;
  height: 100%;
}
.bpr-app__header {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 34px 12px 8px;
  background: #fff;
  border-bottom: 1px solid var(--bpr-border);
  font-size: 13px;
  font-weight: 700;
  color: var(--bpr-text);
  flex-shrink: 0;
}
.bpr-app__bp-card {
  margin: 10px 10px 6px;
  background: linear-gradient(
    135deg,
    var(--bpr-primary) 0%,
    #4aada8 60%,
    #3b82f6 100%
  );
  border-radius: 14px;
  padding: 12px;
  color: #fff;
  flex-shrink: 0;
}
.bpr-app__bp-top {
  display: flex;
  justify-content: space-between;
  font-size: 9px;
  opacity: 0.85;
  margin-bottom: 4px;
}
.bpr-app__bp-numbers {
  display: flex;
  align-items: baseline;
  gap: 2px;
  line-height: 1;
}
.bpr-app__bp-sys {
  font-size: 32px;
  font-weight: 900;
}
.bpr-app__bp-slash {
  font-size: 18px;
  font-weight: 400;
  opacity: 0.7;
}
.bpr-app__bp-dia {
  font-size: 22px;
  font-weight: 700;
}
.bpr-app__bp-unit {
  font-size: 9px;
  opacity: 0.75;
  margin: 2px 0 4px;
}
.bpr-app__bp-status {
  display: inline-block;
  font-size: 9px;
  font-weight: 700;
  padding: 2px 8px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.25);
}
.bpr-status--elevated {
  background: rgba(234, 179, 8, 0.35);
}
.bpr-status--normal {
  background: rgba(34, 197, 94, 0.35);
}
.bpr-app__section-title {
  font-size: 10px;
  font-weight: 700;
  color: var(--bpr-text-second);
  padding: 6px 12px 2px;
  flex-shrink: 0;
}
.bpr-app__record {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 5px 12px;
  border-bottom: 1px solid var(--bpr-border);
  flex-shrink: 0;
}
.bpr-app__record-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  flex-shrink: 0;
}
.bpr-app__record-data {
  font-size: 11px;
  font-weight: 600;
  color: var(--bpr-text);
  flex: 1;
}
.bpr-app__record-time {
  font-size: 9px;
  color: var(--bpr-text-light);
}
.bpr-app__tag {
  font-size: 8px;
  padding: 1px 5px;
  border-radius: 6px;
  font-weight: 600;
}
.bpr-tag--normal {
  background: #dcfce7;
  color: #16a34a;
}
.bpr-tag--elevated {
  background: #fef9c3;
  color: #a16207;
}
.bpr-app__tabbar {
  display: flex;
  border-top: 1px solid var(--bpr-border);
  background: #fff;
  margin-top: auto;
  flex-shrink: 0;
}
.bpr-app__tab {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 6px 0;
  font-size: 8px;
  color: var(--bpr-text-light);
  gap: 1px;
}
.bpr-app__tab .material-icons {
  font-size: 16px;
}
.bpr-app__tab--active {
  color: var(--bpr-primary);
}

/* 商店按鈕 */
.bpr-store-badge {
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--bpr-text);
  color: #fff !important;
  border-radius: 12px;
  padding: 10px 18px;
  text-decoration: none;
  transition: all 0.2s;
  min-width: 148px;
}
.bpr-store-badge:hover {
  background: #374151;
  color: #fff !important;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
}
.bpr-store-badge small {
  display: block;
  font-size: 10px;
  opacity: 0.7;
}
.bpr-store-badge strong {
  display: block;
  font-size: 14px;
}
.bpr-store-icon {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
  object-fit: contain;
  display: block;
}
.bpr-store-badge--coming {
  opacity: 0.7;
}
.bpr-store-badge--white {
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #fff !important;
}
.bpr-store-badge--white:hover {
  background: rgba(255, 255, 255, 0.2);
  color: #fff !important;
}

.bpr-share-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: transparent;
  border: 1.5px solid var(--bpr-primary);
  color: var(--bpr-primary);
  border-radius: 20px;
  padding: 8px 18px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s;
}
.bpr-share-btn:hover {
  background: var(--bpr-primary);
  color: #fff;
}
.bpr-share-btn--light {
  border-color: rgba(255, 255, 255, 0.4);
  color: rgba(255, 255, 255, 0.9);
}
.bpr-share-btn--light:hover {
  background: rgba(255, 255, 255, 0.15);
  color: #fff;
}

/* ---------- AI 辨識流程區 ---------- */
.bpr-ai-section {
  background: linear-gradient(160deg, #3aaeaa 0%, #5abfba 100%);
  padding: 80px 0;
}
.bpr-section-eyebrow {
  display: block;
  font-size: 12px;
  font-weight: 700;
  color: var(--bpr-primary);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 10px;
}
.bpr-section-eyebrow--dark {
  color: var(--bpr-primary-dark);
}

/* AI 雙欄版 */
.bpr-ai-cols {
  display: flex;
  align-items: stretch;
  max-width: 820px;
  margin: 0 auto;
}
.bpr-ai-col {
  flex: 1;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(255, 255, 255, 0.95);
  border-radius: 16px;
  padding: 28px 20px 32px;
  display: flex;
  flex-direction: column;
  align-items: center;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}
.bpr-ai-col__header {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 28px;
  padding: 12px 24px;
  border-radius: 40px;
  background: rgba(91, 191, 186, 0.12);
  border: 1px solid rgba(91, 191, 186, 0.25);
}
.bpr-ai-col__header .material-icons {
  font-size: 24px;
  color: var(--bpr-primary);
}
.bpr-ai-col__header span:last-child {
  font-size: 20px;
  font-weight: 700;
  color: #1e293b;
}
.bpr-ai-col__header--voice {
  background: rgba(124, 58, 237, 0.1);
  border-color: rgba(124, 58, 237, 0.25);
}
.bpr-ai-col__header--voice .material-icons {
  color: #7c3aed;
}
.bpr-ai-vstep {
  display: flex;
  align-items: center;
  gap: 14px;
  width: 100%;
  padding: 0 4px;
}
.bpr-ai-vstep__icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: #f1f5f9;
  border: 1px solid #e2e8f0;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.bpr-ai-vstep__icon .material-icons {
  font-size: 22px;
  color: #94a3b8;
}
.bpr-ai-vstep__icon--primary {
  background: #e8f7f6;
  border-color: #b2dfdb;
}
.bpr-ai-vstep__icon--primary .material-icons {
  color: #3a9e99;
}
.bpr-ai-vstep__icon--voice {
  background: #ede9fe;
  border-color: #c4b5fd;
}
.bpr-ai-vstep__icon--voice .material-icons {
  color: #7c3aed;
}
.bpr-ai-vstep__icon--gold {
  background: #fef9c3;
  border-color: #fde047;
}
.bpr-ai-vstep__icon--gold .material-icons {
  color: #b45309;
}
.bpr-ai-vstep__icon--green {
  background: #dcfce7;
  border-color: #86efac;
}
.bpr-ai-vstep__icon--green .material-icons {
  color: #16a34a;
}
.bpr-ai-vstep__text h4 {
  font-size: 15px;
  font-weight: 700;
  color: #1e293b;
  margin-bottom: 3px;
}
.bpr-ai-vstep__text p {
  margin: 0;
  font-size: 13px;
  color: #64748b;
  line-height: 1.4;
}
.bpr-ai-vdivider {
  display: flex;
  justify-content: flex-start;
  padding: 3px 0 3px 18px;
  color: #94a3b8;
  width: 100%;
}
.bpr-ai-vdivider .material-icons {
  font-size: 16px;
}
/* OR 中間分隔 */
.bpr-ai-or {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 0 18px;
  flex-shrink: 0;
}
.bpr-ai-or__line {
  flex: 1;
  width: 1px;
  background: rgba(255, 255, 255, 0.4);
  min-height: 40px;
}
.bpr-ai-or__text {
  font-size: 12px;
  font-weight: 700;
  color: #fff;
  padding: 10px 0;
  letter-spacing: 0.1em;
}

/* ---------- Section 通用 ---------- */
.bpr-section {
  padding: 80px 0;
  scroll-margin-top: 68px;
}
.bpr-hero, .bpr-ai-section {
  scroll-margin-top: 68px;
}
.bpr-section--gray {
  background: var(--bpr-bg);
}
.bpr-section--teal {
  background: linear-gradient(160deg, #3aaeaa 0%, #5abfba 100%);
}
.bpr-section--teal .bpr-section-eyebrow {
  color: rgba(255, 255, 255, 0.85);
}
.bpr-section--teal .bpr-section-title {
  color: #fff;
}
.bpr-section--teal .bpr-section-subtitle {
  color: rgba(255, 255, 255, 0.85);
}
.bpr-section-header {
  margin-bottom: 48px;
}
.bpr-section-title {
  font-size: 36px;
  font-weight: 900;
  color: var(--bpr-text);
  margin-bottom: 12px;
}
.bpr-section-subtitle {
  font-size: 18px;
  color: var(--bpr-text-second);
}

/* ---------- 功能網格（新版） ---------- */
.bpr-features-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 16px;
}
.bpr-feature-big {
  grid-column: span 4;
  background: #fff;
  border: 1px solid var(--bpr-border);
  border-radius: 20px;
  padding: 28px;
  display: flex;
  gap: 20px;
  align-items: flex-start;
  transition:
    transform 0.2s,
    box-shadow 0.2s;
  position: relative;
  overflow: hidden;
}
.bpr-feature-big::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--bpr-primary), var(--bpr-secondary));
  border-radius: 20px 20px 0 0;
}
.bpr-feature-big--blue::before {
  background: linear-gradient(90deg, var(--bpr-secondary), #8b5cf6);
}
.bpr-feature-big--purple::before {
  background: linear-gradient(90deg, #8b5cf6, #7c3aed);
}
.bpr-feature-big:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.08);
}
.bpr-feature-big__icon {
  width: 56px;
  height: 56px;
  flex-shrink: 0;
  background: var(--bpr-primary-alpha);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.bpr-feature-big__icon .material-icons {
  color: var(--bpr-primary);
  font-size: 26px;
}
.bpr-feature-big--blue .bpr-feature-big__icon {
  background: rgba(59, 130, 246, 0.1);
}
.bpr-feature-big--blue .bpr-feature-big__icon .material-icons {
  color: var(--bpr-secondary);
}
.bpr-feature-big--purple .bpr-feature-big__icon {
  background: rgba(139, 92, 246, 0.1);
}
.bpr-feature-big--purple .bpr-feature-big__icon .material-icons {
  color: var(--bpr-crisis);
}
.bpr-feature-big__body h3 {
  font-size: 20px;
  font-weight: 800;
  color: var(--bpr-text);
  margin-bottom: 8px;
}
.bpr-feature-big__body p {
  font-size: 15px;
  color: var(--bpr-text-second);
  line-height: 1.6;
  margin-bottom: 10px;
}
.bpr-feature-tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  background: var(--bpr-primary-alpha);
  color: var(--bpr-primary-dark);
  border-radius: 8px;
  padding: 3px 10px;
}

.bpr-feature-small {
  grid-column: span 3;
  background: #fff;
  border: 1px solid var(--bpr-border);
  border-radius: 16px;
  padding: 22px 20px;
  transition:
    transform 0.2s,
    box-shadow 0.2s;
}
.bpr-feature-small:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}
.bpr-feature-small__icon {
  width: 44px;
  height: 44px;
  background: var(--bpr-primary-alpha);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 12px;
}
.bpr-feature-small__icon .material-icons {
  color: var(--bpr-primary);
  font-size: 22px;
}
.bpr-feature-small--green .bpr-feature-small__icon {
  background: rgba(34, 197, 94, 0.1);
}
.bpr-feature-small--green .bpr-feature-small__icon .material-icons {
  color: var(--bpr-normal);
}
.bpr-feature-small--orange .bpr-feature-small__icon {
  background: rgba(249, 115, 22, 0.1);
}
.bpr-feature-small--orange .bpr-feature-small__icon .material-icons {
  color: var(--bpr-stage1);
}
.bpr-feature-small--purple .bpr-feature-small__icon {
  background: rgba(139, 92, 246, 0.1);
}
.bpr-feature-small--purple .bpr-feature-small__icon .material-icons {
  color: var(--bpr-crisis);
}
.bpr-feature-small--blue .bpr-feature-small__icon {
  background: rgba(59, 130, 246, 0.1);
}
.bpr-feature-small--blue .bpr-feature-small__icon .material-icons {
  color: #3b82f6;
}
.bpr-feature-small h4 {
  font-size: 17px;
  font-weight: 700;
  color: var(--bpr-text);
  margin-bottom: 6px;
}
.bpr-feature-small p {
  font-size: 14px;
  color: var(--bpr-text-second);
  line-height: 1.5;
}

/* ---------- 適用對象 ---------- */
.bpr-persona {
  border: 1px solid var(--bpr-border);
  border-radius: 20px;
  padding: 28px 24px;
  background: #fff;
  height: 100%;
  transition:
    transform 0.25s,
    box-shadow 0.25s;
}
.bpr-persona:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 36px rgba(0, 0, 0, 0.08);
}
.bpr-persona--primary {
  background: linear-gradient(160deg, var(--bpr-primary-light) 0%, #fff 60%);
  border-color: rgba(91, 191, 186, 0.3);
}
.bpr-persona__img {
  height: 160px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}
.bpr-persona__img img {
  height: 100%;
  width: auto;
  object-fit: contain;
}
.bpr-persona__title {
  font-size: 20px;
  font-weight: 800;
  color: var(--bpr-text);
  margin-bottom: 10px;
}
.bpr-persona__desc {
  font-size: 15px;
  color: var(--bpr-text-second);
  line-height: 1.7;
  margin-bottom: 14px;
}
.bpr-persona__quote {
  font-size: 13px;
  font-style: italic;
  color: var(--bpr-primary-dark);
  background: var(--bpr-primary-alpha);
  border-left: 3px solid var(--bpr-primary);
  border-radius: 0 8px 8px 0;
  padding: 8px 12px;
}

/* ---------- 血壓分級 ---------- */
.bpr-bp-guide {
  max-width: 720px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.bpr-bp-level {
  display: flex;
  align-items: center;
  gap: 14px;
  background: #fff;
  border: 1px solid var(--bpr-border);
  border-radius: 12px;
  padding: 14px 18px;
  transition: transform 0.2s;
}
.bpr-bp-level:hover {
  transform: translateX(4px);
}
.bpr-bp-level__color {
  width: 6px;
  height: 40px;
  border-radius: 3px;
  flex-shrink: 0;
}
.bpr-bp-level__info {
  flex: 1;
}
.bpr-bp-level__name {
  font-size: 17px;
  font-weight: 700;
  color: var(--bpr-text);
}
.bpr-bp-level__range {
  font-size: 14px;
  color: var(--bpr-text-second);
  margin-top: 2px;
}
.bpr-bp-level__badge {
  font-size: 11px;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 20px;
  white-space: nowrap;
}

/* ---------- 使用方式（時間軸） ---------- */
.bpr-timeline {
  max-width: 680px;
  margin: 0 auto;
  position: relative;
}
.bpr-timeline__item {
  display: flex;
  gap: 24px;
  position: relative;
  padding-bottom: 48px;
}
.bpr-timeline__item:last-child {
  padding-bottom: 0;
}
.bpr-timeline__dot {
  width: 52px;
  height: 52px;
  flex-shrink: 0;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 1;
}
.bpr-timeline__dot--1 {
  background: var(--bpr-primary-alpha);
}
.bpr-timeline__dot--1 .material-icons {
  color: var(--bpr-primary);
  font-size: 24px;
}
.bpr-timeline__dot--2 {
  background: rgba(59, 130, 246, 0.1);
}
.bpr-timeline__dot--2 .material-icons {
  color: var(--bpr-secondary);
  font-size: 24px;
}
.bpr-timeline__dot--3 {
  background: rgba(34, 197, 94, 0.1);
}
.bpr-timeline__dot--3 .material-icons {
  color: var(--bpr-normal);
  font-size: 24px;
}
.bpr-timeline__line {
  position: absolute;
  left: 26px;
  top: 52px;
  width: 2px;
  height: calc(100% - 52px);
  background: var(--bpr-border);
}
.bpr-timeline__content {
  padding-top: 10px;
  flex: 1;
}
.bpr-timeline__step {
  font-size: 11px;
  font-weight: 700;
  color: var(--bpr-primary);
  letter-spacing: 0.1em;
  display: block;
  margin-bottom: 4px;
}
.bpr-timeline__content h3 {
  font-size: 22px;
  font-weight: 800;
  color: var(--bpr-text);
  margin-bottom: 8px;
}
.bpr-timeline__content p {
  font-size: 16px;
  color: var(--bpr-text-second);
  line-height: 1.65;
  margin-bottom: 12px;
}
.bpr-timeline__extras {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.bpr-mini-badge {
  display: inline-flex;
  align-items: center;
  gap: 3px;
  font-size: 11px;
  font-weight: 600;
  background: var(--bpr-bg);
  border: 1px solid var(--bpr-border);
  border-radius: 8px;
  padding: 3px 8px;
  color: var(--bpr-text-second);
}
.bpr-mini-badge .material-icons {
  font-size: 12px;
}
.bpr-health-badge {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 12px;
  font-weight: 600;
  background: rgba(34, 197, 94, 0.1);
  color: #16a34a;
  border-radius: 8px;
  padding: 4px 10px;
}
.bpr-health-badge .material-icons {
  font-size: 13px;
}

/* ---------- 底部 CTA ---------- */
.bpr-section--cta {
  background: linear-gradient(160deg, #5abfba 0%, #3aaeaa 100%);
  padding: 80px 0;
}
.bpr-cta-logo {
  margin-bottom: 24px;
}
.bpr-cta-logo img {
  border-radius: 20px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
}
.bpr-cta-title {
  font-size: 44px;
  font-weight: 900;
  color: #fff;
  line-height: 1.3;
  margin-bottom: 12px;
}
.bpr-cta-title span {
  color: rgba(255, 255, 255, 0.85);
}
.bpr-cta-subtitle {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 32px;
}
.bpr-cta-stores {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}
.bpr-cta-note {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.55);
  margin-top: 20px;
}

/* QR Code 下載區塊 */
.bpr-cta-qr-row {
  display: flex;
  gap: 32px;
  justify-content: center;
  align-items: flex-start;
  margin: 28px 0 24px;
  flex-wrap: wrap;
}
.bpr-cta-qr-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}
.bpr-cta-qr-label {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.65);
  margin: 0;
  letter-spacing: 0.03em;
}
.bpr-cta-qr-box {
  width: 140px;
  height: 140px;
  background: #fff;
  border-radius: 16px;
  padding: 10px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.18);
  display: flex;
  align-items: center;
  justify-content: center;
}
.bpr-cta-qr-box img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  border-radius: 6px;
}
.bpr-cta-qr-box--coming {
  flex-direction: column;
  gap: 6px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px dashed rgba(255, 255, 255, 0.3);
  box-shadow: none;
}
.bpr-cta-qr-placeholder-icon {
  width: 36px !important;
  height: 36px !important;
  opacity: 0.35;
}
.bpr-cta-qr-soon {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.45);
  letter-spacing: 0.02em;
}
.bpr-cta-qr-platform {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.55);
  margin: 0;
  font-weight: 500;
}

/* ---------- Footer ---------- */
.bpr-footer {
  background: #0a3535;
  padding: 60px 0 30px;
}
.bpr-footer-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 17px;
  font-weight: 700;
  color: #f1f5f9;
  margin-bottom: 12px;
}
.bpr-footer-brand img {
  border-radius: 10px;
}
.bpr-footer-desc {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.7;
}
.bpr-footer-title {
  font-size: 14px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 10px;
  margin-top: 20px;
}
.bpr-footer-links {
  list-style: none;
  padding: 0;
}
.bpr-footer-links li {
  margin-bottom: 6px;
}
.bpr-footer-links a {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.65);
  text-decoration: none;
  transition: color 0.2s;
}
.bpr-footer-links a:hover {
  color: #fff;
}
.bpr-footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  margin-top: 40px;
  padding-top: 20px;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.45);
  text-align: center;
}

/* ---------- Toast ---------- */
.bpr-toast {
  position: fixed;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%) translateY(100px);
  background: var(--bpr-dark-card);
  color: #e2e8f0;
  padding: 12px 24px;
  border-radius: 24px;
  font-size: 14px;
  font-weight: 500;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
  z-index: 9999;
  transition: transform 0.3s ease;
  white-space: nowrap;
  pointer-events: none;
}
.bpr-toast--show {
  transform: translateX(-50%) translateY(0);
}

/* ========== 響應式 ========== */
@media (max-width: 959px) {
  .bpr-hero {
    padding: 60px 0 50px;
  }
  .bpr-hero-title {
    font-size: 36px;
  }
  .bpr-features-grid {
    grid-template-columns: repeat(4, 1fr);
  }
  .bpr-feature-big {
    grid-column: span 2;
  }
  .bpr-feature-small {
    grid-column: span 2;
  }
  .bpr-ai-or {
    padding: 0 12px;
  }
  .bpr-section-title {
    font-size: 26px;
  }
  .bpr-cta-title {
    font-size: 30px;
  }
  .bpr-float-card--1 {
    left: -30px;
  }
  .bpr-float-card--2 {
    right: -30px;
  }
  .bpr-float-card--3 {
    left: -30px;
  }
}

@media (max-width: 639px) {
  .bpr-hero {
    padding: 48px 0 40px;
  }
  .bpr-hero-title {
    font-size: 30px;
  }
  .bpr-hero-subtitle {
    font-size: 15px;
  }
  .bpr-hero-cta {
    flex-direction: column;
  }
  .bpr-store-badge {
    width: 100%;
  }
  .bpr-phone {
    width: 240px;
  }
  .bpr-phone__screen {
    height: 450px;
  }
  .bpr-float-card {
    display: none;
  }
  .bpr-features-grid {
    grid-template-columns: 1fr 1fr;
    align-items: stretch;
  }
  .bpr-feature-big,
  .bpr-feature-small {
    grid-column: span 1;
    height: 100%;
  }
  .bpr-feature-big {
    flex-direction: column;
  }
  .bpr-feature-big::before {
    display: none;
  }
  .bpr-feature-big__body {
    flex: 1;
    display: flex;
    flex-direction: column;
  }
  .bpr-section {
    padding: 56px 0;
  }
  .bpr-timeline__item {
    gap: 16px;
  }
  .bpr-cta-title {
    font-size: 24px;
  }
  .bpr-hero-phone-wrap {
    margin-top: 40px;
  }
  .bpr-bp-guide {
    padding: 0 4px;
  }
  .bpr-ai-cols {
    flex-direction: column;
  }
  .bpr-ai-or {
    flex-direction: row;
    padding: 16px 0;
  }
  .bpr-ai-or__line {
    flex: 1;
    width: auto;
    height: 1px;
    min-height: unset;
  }
  .bpr-ai-or__text {
    padding: 0 12px;
  }
}

/* ---------- 722 測量法 ---------- */
.bpr-722-card {
  max-width: 720px;
  margin: 0 auto;
  background: #fff;
  border-radius: 20px;
  padding: 48px;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.07);
}
.bpr-722-header {
  text-align: center;
  margin-bottom: 36px;
}
.bpr-722-badge {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--bpr-primary-dark);
  background: var(--bpr-primary-light);
  border-radius: 20px;
  padding: 4px 14px;
  margin-bottom: 14px;
}
.bpr-722-title {
  font-size: 30px;
  font-weight: 900;
  color: var(--bpr-text);
  margin-bottom: 10px;
}
.bpr-722-desc {
  font-size: 15px;
  color: var(--bpr-text-second);
  line-height: 1.6;
}
.bpr-722-steps {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 28px;
}
.bpr-722-step {
  display: flex;
  align-items: center;
  gap: 20px;
  background: var(--bpr-bg);
  border-radius: 12px;
  padding: 16px 20px;
}
.bpr-722-num {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--bpr-primary);
  color: #fff;
  font-size: 22px;
  font-weight: 900;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.bpr-722-text {
  font-size: 15px;
  color: var(--bpr-text-second);
  line-height: 1.5;
}
.bpr-722-text strong {
  color: var(--bpr-text);
}
.bpr-722-tip {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  background: #eff6ff;
  border-radius: 12px;
  padding: 16px 20px;
}
.bpr-722-tip .material-icons {
  color: var(--bpr-secondary);
  font-size: 20px;
  flex-shrink: 0;
  margin-top: 2px;
}
.bpr-722-tip p {
  font-size: 14px;
  color: var(--bpr-text-second);
  line-height: 1.6;
}
.bpr-722-tip strong {
  color: var(--bpr-text);
}
@media (max-width: 640px) {
  .bpr-722-card {
    padding: 28px 20px;
  }
  .bpr-722-title {
    font-size: 24px;
  }
}

/* ---------- teal 背景下 722 文字顏色覆寫 ---------- */
.bpr-section--teal .bpr-722-text {
  color: rgba(255,255,255,0.85);
}
.bpr-section--teal .bpr-722-text strong {
  color: #fff;
}
.bpr-section--teal .bpr-722-step {
  background: rgba(255,255,255,0.15);
}
.bpr-section--teal .bpr-722-tip {
  background: rgba(255,255,255,0.15);
}
.bpr-section--teal .bpr-722-tip .material-icons {
  color: #fff;
}
.bpr-section--teal .bpr-722-tip p {
  color: rgba(255,255,255,0.9);
}
.bpr-section--teal .bpr-722-tip strong {
  color: #fff;
}

/* ---------- 血壓分級 + 722 合併兩欄 ---------- */
.bpr-guide-722-cols {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: start;
  max-width: 1100px;
  margin: 0 auto;
}
.bpr-guide-722-cols .bpr-bp-guide {
  max-width: 100%;
  margin: 0;
}
.bpr-guide-722-cols .bpr-722-card {
  max-width: 100%;
  margin: 0;
}
@media (max-width: 900px) {
  .bpr-guide-722-cols {
    grid-template-columns: 1fr;
    gap: 32px;
  }
}

/* ---------- PDF 範例示意 ---------- */
.bpr-pdf-preview {
  border: 1px solid #e5e7eb;
  border-radius: 10px;
  overflow: hidden;
  font-size: 11px;
  margin-bottom: 4px;
}
.bpr-pdf-header {
  display: flex; align-items: center; gap: 10px;
  padding: 12px 14px 10px;
  border-bottom: 2px solid #5BBFBA;
}
.bpr-pdf-logo {
  width: 28px; height: 28px; border-radius: 6px;
  background: #5BBFBA; color: #fff;
  font-weight: 800; font-size: 13px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.bpr-pdf-title { font-weight: 700; font-size: 12px; color: #1f2937; }
.bpr-pdf-sub   { font-size: 10px; color: #9ca3af; margin-top: 1px; }
.bpr-pdf-stats {
  display: flex; background: #f8fafc;
  border-bottom: 1px solid #e5e7eb;
}
.bpr-pdf-stat {
  flex: 1; text-align: center; padding: 8px 4px;
  border-right: 1px solid #e5e7eb;
}
.bpr-pdf-stat:last-child { border-right: none; }
.bpr-pdf-stat-val { font-size: 18px; font-weight: 800; color: #1f2937; line-height: 1.2; }
.bpr-pdf-stat-lbl { font-size: 9px; color: #9ca3af; margin-top: 2px; }
.bpr-pdf-table { width: 100%; border-collapse: collapse; }
.bpr-pdf-table thead tr { background: #5BBFBA; }
.bpr-pdf-table th { color: #fff; padding: 6px 8px; text-align: center; font-size: 10px; font-weight: 600; }
.bpr-pdf-table td { padding: 5px 8px; text-align: center; border-bottom: 1px solid #f3f4f6; color: #374151; font-size: 11px; }
.bpr-pdf-table td:first-child { text-align: left; color: #6b7280; }
.bpr-pdf-table tbody tr:nth-child(even) { background: #f9fafb; }
.bpr-pdf-dot { display: inline-block; width: 6px; height: 6px; border-radius: 50%; margin-right: 3px; vertical-align: middle; }
.bpr-pdf-footer { text-align: center; padding: 7px; font-size: 10px; color: #9ca3af; border-top: 1px solid #f3f4f6; background: #fafafa; }

/* ---------- Google 整合區塊 ---------- */
.bpr-section--google {
  background: linear-gradient(160deg, #f0f7ff 0%, #e8f4fd 100%);
}
.bpr-google-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-bottom: 32px;
}
.bpr-google-card {
  border: 1px solid var(--bpr-border);
  border-radius: 20px;
  padding: 32px;
  background: #fff;
  transition:
    transform 0.2s,
    box-shadow 0.2s;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.bpr-google-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.1);
}
.bpr-google-card__head {
  display: flex;
  align-items: center;
  gap: 16px;
}
.bpr-google-icon-wrap {
  flex-shrink: 0;
  width: 72px;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #f1f3f4;
  border-radius: 16px;
  padding: 4px;
  overflow: hidden;
}
.bpr-google-icon-wrap svg {
  display: block;
}
.bpr-google-product-name {
  font-size: 13px;
  color: var(--bpr-text-light);
  font-weight: 500;
  margin-bottom: 4px;
  letter-spacing: 0.02em;
}
.bpr-google-card__title {
  font-size: 20px;
  font-weight: 700;
  color: var(--bpr-text);
  margin: 0;
  line-height: 1.3;
}
.bpr-google-card__desc {
  font-size: 15px;
  color: var(--bpr-text-second);
  line-height: 1.7;
  margin: 0;
}
.bpr-google-points {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex: 1;
}
.bpr-google-points li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: var(--bpr-text-second);
}
.bpr-google-points li .material-icons {
  font-size: 17px;
  color: #34a853;
  flex-shrink: 0;
}
.bpr-google-card__footer {
  padding-top: 4px;
}
.bpr-pro-badge {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  background: linear-gradient(135deg, #f59e0b, #f97316);
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 20px;
  letter-spacing: 0.03em;
}
.bpr-google-note {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  font-size: 13px;
  color: var(--bpr-text-light);
  margin-top: 8px;
}
.bpr-google-note .material-icons {
  font-size: 15px;
}
@media (max-width: 767px) {
  .bpr-google-cards {
    grid-template-columns: 1fr;
  }
  .bpr-google-card {
    padding: 24px;
  }
  .bpr-cta-qr-row {
    display: none;
  }
}
