/* ============ Base ============ */
html { scroll-behavior: smooth; }
body { -webkit-font-smoothing: antialiased; }

/* ============ Header ============ */
#site-header.scrolled {
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: saturate(180%) blur(12px);
  -webkit-backdrop-filter: saturate(180%) blur(12px);
  box-shadow: 0 4px 20px rgba(15, 23, 42, 0.05);
}

/* ============ Background Grid ============ */
.bg-grid {
  background-image:
    linear-gradient(rgba(0, 96, 240, 0.07) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 96, 240, 0.07) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: radial-gradient(ellipse at center, black 30%, transparent 75%);
  -webkit-mask-image: radial-gradient(ellipse at center, black 30%, transparent 75%);
}
.bg-grid-light {
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.2) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.2) 1px, transparent 1px);
  background-size: 48px 48px;
}

/* ============ Reveal Animation ============ */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s ease-out, transform 0.7s ease-out;
}
.reveal.in-view {
  opacity: 1;
  transform: translateY(0);
}

/* ============ Mock Dashboard ============ */
.mock-dashboard {
  background: white;
  border-radius: 20px;
  box-shadow: 0 30px 80px -20px rgba(0, 96, 240, 0.3), 0 10px 30px -10px rgba(15, 23, 42, 0.1);
  border: 1px solid rgba(226, 232, 240, 0.7);
  overflow: hidden;
  transform: perspective(1200px) rotateY(-4deg) rotateX(2deg);
  transition: transform 0.5s ease;
}
.mock-dashboard:hover { transform: perspective(1200px) rotateY(-2deg) rotateX(1deg); }

.mock-window-bar {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 12px 16px;
  background: #f8fafc;
  border-bottom: 1px solid #e2e8f0;
}
.mock-window-bar .dot { width: 11px; height: 11px; border-radius: 50%; display: inline-block; }

.mock-stat {
  background: linear-gradient(135deg, #eff6ff, #eff6ff);
  border: 1px solid #bfdbfe;
  border-radius: 12px;
  padding: 12px;
}
.mock-stat-label { font-size: 11px; color: #6b7280; }
.mock-stat-value {
  font-size: 22px; font-weight: 800;
  background: linear-gradient(135deg, #0060F0, #5b9bff);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent;
}

.mock-chart {
  display: flex; align-items: flex-end; gap: 6px;
  height: 100px; padding: 8px;
  background: #fafafa; border-radius: 12px;
}
.mock-bar {
  flex: 1; border-radius: 4px 4px 0 0;
  background: linear-gradient(180deg, #5b9bff, #93c5fd);
  animation: barGrow 1.2s ease-out;
}
@keyframes barGrow { from { height: 0% !important; } }

.mock-row {
  display: flex; justify-content: space-between; align-items: center;
  padding: 10px 12px; border-radius: 10px;
  background: #f8fafc; font-size: 13px;
}

/* ============ Floating Badges ============ */
.floating-badge {
  position: absolute;
  display: flex; align-items: center; gap: 10px;
  padding: 10px 14px;
  background: white;
  border-radius: 14px;
  box-shadow: 0 12px 30px -8px rgba(15, 23, 42, 0.2);
  border: 1px solid #e2e8f0;
  animation: floatY 4s ease-in-out infinite;
}
.floating-icon-wrap {
  width: 36px; height: 36px;
  border-radius: 10px;
  background: linear-gradient(135deg, #eff6ff, #dbeafe);
  display: flex; align-items: center; justify-content: center;
  color: #0060F0;
}
.floating-icon-wrap svg { width: 20px; height: 20px; }
.floating-badge:nth-child(2) { animation-delay: -2s; }
@keyframes floatY {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

/* ============ Trust Badges ============ */
.trust-badge {
  padding: 20px;
  border-radius: 16px;
  transition: transform 0.3s ease;
}
.trust-badge:hover { transform: translateY(-4px); }
.trust-badge-icon {
  width: 48px; height: 48px;
  margin: 0 auto 12px;
  border-radius: 14px;
  background: linear-gradient(135deg, #eff6ff, #dbeafe);
  display: flex; align-items: center; justify-content: center;
  color: #0060F0;
}
.trust-badge-icon svg { width: 26px; height: 26px; }

/* ============ Feature Cards ============ */
.feature-card {
  position: relative;
  padding: 28px;
  background: white;
  border: 1px solid #e2e8f0;
  border-radius: 20px;
  transition: all 0.3s ease;
  overflow: hidden;
}
.feature-card::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 20px;
  padding: 1.5px;
  background: linear-gradient(135deg, #0060F0, #2f7bff, #5b9bff);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
          mask-composite: exclude;
  opacity: 0;
  transition: opacity 0.3s ease;
}
.feature-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 50px -20px rgba(0, 96, 240, 0.25);
}
.feature-card:hover::before { opacity: 1; }

.feature-card-highlight {
  background: linear-gradient(135deg, #eff6ff, #eff6ff);
  border-color: #bfdbfe;
}
.feature-card-highlight::before { opacity: 1; }

.feature-icon {
  width: 56px; height: 56px;
  border-radius: 14px;
  background: linear-gradient(135deg, #eff6ff, #dbeafe);
  display: flex; align-items: center; justify-content: center;
  color: #0060F0;
  margin-bottom: 18px;
}
.feature-icon svg { width: 28px; height: 28px; }
.feature-title { font-size: 20px; font-weight: 800; margin-bottom: 8px; }
.feature-desc { color: #475569; font-size: 15px; line-height: 1.65; }

/* ============ Scenario ============ */
.scenario-bullet {
  position: relative;
  padding-left: 28px;
  line-height: 1.7;
}
.scenario-bullet::before {
  content: '';
  position: absolute; left: 0; top: 6px;
  width: 20px; height: 20px;
  background: linear-gradient(135deg, #0060F0, #5b9bff);
  border-radius: 50%;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='3.5' stroke-linecap='round' stroke-linejoin='round'><polyline points='20 6 9 17 4 12'/></svg>"), linear-gradient(135deg, #0060F0, #5b9bff);
  background-size: 12px 12px, cover;
  background-position: center, center;
  background-repeat: no-repeat;
}
.scenario-mock {
  background: white;
  border-radius: 18px;
  box-shadow: 0 20px 50px -20px rgba(0, 96, 240, 0.2);
  border: 1px solid #e2e8f0;
  overflow: hidden;
}
.role-card {
  padding: 14px;
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  text-align: center;
  transition: all 0.3s;
}
.role-card:hover {
  background: linear-gradient(135deg, #eff6ff, #dbeafe);
  transform: translateY(-2px);
}
.role-icon { font-size: 26px; margin-bottom: 6px; }

/* ============ Stat Number / Label ============ */
.stat-number {
  font-size: 64px;
  font-weight: 900;
  letter-spacing: -0.02em;
  background: linear-gradient(135deg, #0060F0, #3b82f6, #5b9bff);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent;
  line-height: 1;
}
/* 描述性詞彙版本（取代具體數字，降低法規風險） */
.stat-label {
  font-size: 42px;
  font-weight: 900;
  letter-spacing: -0.01em;
  background: linear-gradient(135deg, #0060F0, #3b82f6, #5b9bff);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent;
  line-height: 1.1;
}

/* ============ AI Section ============ */
.ai-feature {
  display: flex; gap: 16px; align-items: flex-start;
}
.ai-feature-icon {
  flex-shrink: 0;
  width: 48px; height: 48px;
  border-radius: 12px;
  background: linear-gradient(135deg, #eff6ff, #dbeafe);
  display: flex; align-items: center; justify-content: center;
  color: #0060F0;
}
.ai-feature-icon svg { width: 24px; height: 24px; }
.btn-icon { width: 18px; height: 18px; flex-shrink: 0; }

.ai-chat-window {
  background: white;
  border-radius: 24px;
  box-shadow: 0 40px 100px -20px rgba(0, 96, 240, 0.35);
  border: 1px solid #e2e8f0;
  overflow: hidden;
  transform: perspective(1200px) rotateY(-3deg);
  transition: transform 0.4s;
}
.ai-chat-window:hover { transform: perspective(1200px) rotateY(0); }

.ai-chat-header {
  display: flex; align-items: center; gap: 12px;
  padding: 16px 20px;
  background: #0f172a;
  color: white;
}

.ai-chat-body {
  padding: 20px;
  height: 380px;
  overflow-y: auto;
  background: linear-gradient(180deg, #f8fafc, #ffffff);
  display: flex; flex-direction: column; gap: 12px;
}

.ai-chat-input {
  display: flex; gap: 8px;
  padding: 14px 16px;
  border-top: 1px solid #e2e8f0;
  background: white;
}
.ai-chat-input input {
  flex: 1;
  padding: 10px 14px;
  border: 1px solid #e2e8f0;
  border-radius: 10px;
  font-size: 14px;
}

/* ============ Chat Bubble ============ */
.chat-bubble {
  max-width: 85%;
  padding: 12px 16px;
  border-radius: 16px;
  font-size: 14px;
  line-height: 1.6;
  animation: fadeUp 0.4s ease-out;
}
@keyframes fadeUp { from { opacity: 0; transform: translateY(8px); } }

.chat-user {
  align-self: flex-end;
  background: linear-gradient(135deg, #0060F0, #2f7bff);
  color: white;
  border-bottom-right-radius: 4px;
}
.chat-ai {
  align-self: flex-start;
  background: #f1f5f9;
  color: #0f172a;
  border-bottom-left-radius: 4px;
}

.chat-typing {
  align-self: flex-start;
  display: inline-flex; gap: 4px;
  padding: 12px 16px;
  background: #f1f5f9;
  border-radius: 16px;
  border-bottom-left-radius: 4px;
}
.chat-typing span {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: #94a3b8;
  animation: typing 1.4s infinite;
}
.chat-typing span:nth-child(2) { animation-delay: 0.2s; }
.chat-typing span:nth-child(3) { animation-delay: 0.4s; }
@keyframes typing {
  0%, 60%, 100% { opacity: 0.3; transform: translateY(0); }
  30% { opacity: 1; transform: translateY(-4px); }
}

/* ============ Phone Stack (LINE Section) ============ */
.phone-stack {
  position: relative;
  height: 620px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.phone-mock {
  position: absolute;
  width: 260px;
  border-radius: 38px;
  overflow: hidden;
  border: 10px solid #0f172a;
  background: #0f172a;
  box-shadow: 0 40px 80px -20px rgba(0, 96, 240, 0.35),
              0 12px 30px -10px rgba(15, 23, 42, 0.25);
  transition: transform 0.4s ease;
}
.phone-mock img {
  display: block;
  width: 100%;
  height: auto;
}
.phone-back {
  top: 30px;
  transform: translateX(-58%) rotate(-7deg);
  z-index: 1;
  opacity: 0.95;
}
.phone-front {
  top: 0;
  transform: translateX(38%) rotate(5deg);
  z-index: 2;
}
.phone-stack:hover .phone-back {
  transform: translateX(-62%) rotate(-9deg);
}
.phone-stack:hover .phone-front {
  transform: translateX(42%) rotate(7deg);
}
@media (max-width: 1023px) {
  .phone-stack { height: auto; flex-direction: row; gap: 20px; padding: 30px 0; }
  .phone-mock { position: relative; width: 200px; }
  .phone-back, .phone-front,
  .phone-stack:hover .phone-back, .phone-stack:hover .phone-front {
    transform: rotate(0); top: 0;
  }
  .phone-back { transform: rotate(-4deg); }
  .phone-front { transform: rotate(4deg); }
}
@media (max-width: 539px) {
  .phone-stack { flex-direction: column; align-items: center; }
  .phone-mock { width: 220px; }
  .phone-back, .phone-front { transform: rotate(0); }
}

/* ============ Pricing Cards ============ */
.pricing-card {
  position: relative;
  padding: 36px 28px;
  background: white;
  border: 1px solid #e2e8f0;
  border-radius: 24px;
  display: flex;
  flex-direction: column;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.pricing-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 30px 60px -20px rgba(0, 96, 240, 0.2);
}
.pricing-card-featured {
  background: linear-gradient(180deg, #0f172a, #0a2a5e);
  color: white;
  border: 1px solid rgba(0, 96, 240, 0.4);
  transform: scale(1.04);
  box-shadow: 0 40px 80px -20px rgba(0, 96, 240, 0.45);
}
.pricing-card-featured:hover {
  transform: scale(1.04) translateY(-6px);
}
.pricing-badge {
  position: absolute;
  top: -14px; left: 50%;
  transform: translateX(-50%);
  padding: 6px 16px;
  border-radius: 999px;
  background: linear-gradient(135deg, #F05000, #ff7a2e);
  color: white;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.06em;
  white-space: nowrap;
  box-shadow: 0 8px 20px -6px rgba(240, 80, 0, 0.5);
}
.pricing-tier-label {
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0.12em;
  color: #0060F0;
  text-transform: uppercase;
}
.pricing-card-featured .pricing-tier-label { color: #93c5fd; }
.pricing-desc {
  font-size: 14px;
  color: #64748b;
  margin-top: 6px;
}
.pricing-card-featured .pricing-desc { color: #94a3b8; }
.pricing-price {
  margin: 22px 0 4px;
  display: flex;
  align-items: baseline;
  gap: 4px;
}
.pricing-currency {
  font-size: 16px;
  font-weight: 700;
  color: #64748b;
}
.pricing-card-featured .pricing-currency { color: #cbd5e1; }
.pricing-amount {
  font-size: 48px;
  font-weight: 900;
  letter-spacing: -0.03em;
  color: #0f172a;
  line-height: 1;
}
.pricing-card-featured .pricing-amount {
  background: linear-gradient(135deg, #0060F0, #3b82f6, #5b9bff);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent;
}
.pricing-period {
  font-size: 15px;
  font-weight: 600;
  color: #64748b;
}
.pricing-card-featured .pricing-period { color: #94a3b8; }
.pricing-note {
  font-size: 13px;
  color: #64748b;
  margin-bottom: 22px;
  padding-bottom: 22px;
  border-bottom: 1px solid #e2e8f0;
}
.pricing-card-featured .pricing-note {
  color: #94a3b8;
  border-bottom-color: rgba(255, 255, 255, 0.08);
}
.pricing-features {
  list-style: none;
  padding: 0;
  margin: 0;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.pricing-features li {
  position: relative;
  padding-left: 28px;
  font-size: 14px;
  color: #334155;
  line-height: 1.55;
}
.pricing-card-featured .pricing-features li { color: #e2e8f0; }
.pricing-features li::before {
  content: '';
  position: absolute;
  left: 0; top: 3px;
  width: 18px; height: 18px;
  border-radius: 50%;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='3.5' stroke-linecap='round' stroke-linejoin='round'><polyline points='20 6 9 17 4 12'/></svg>"), linear-gradient(135deg, #0060F0, #5b9bff);
  background-size: 11px 11px, cover;
  background-position: center, center;
  background-repeat: no-repeat;
}
.pricing-cta {
  display: block;
  margin-top: 32px;
  padding: 14px 24px;
  text-align: center;
  border-radius: 999px;
  font-weight: 700;
  font-size: 15px;
  transition: all 0.3s ease;
}
.pricing-cta-outline {
  border: 2px solid #e2e8f0;
  color: #0f172a;
}
.pricing-cta-outline:hover {
  border-color: #0060F0;
  color: #0060F0;
  background: #f8fafc;
}
.pricing-cta-primary {
  background: linear-gradient(135deg, #F05000, #ff7a2e);
  color: white !important;
  border: none;
  box-shadow: 0 10px 30px -10px rgba(240, 80, 0, 0.45);
}
.pricing-cta-primary:hover {
  filter: brightness(1.12);
}
@media (max-width: 767px) {
  .pricing-card-featured,
  .pricing-card-featured:hover {
    transform: none;
  }
  .pricing-card-featured:hover {
    transform: translateY(-6px);
  }
}

/* ============ Tech Pill ============ */
.tech-pill {
  padding: 10px 20px;
  background: white;
  border: 1px solid #e2e8f0;
  border-radius: 999px;
  font-size: 14px;
  transition: all 0.3s;
}
.tech-pill:hover {
  border-color: transparent;
  color: white;
  background: linear-gradient(135deg, #0060F0, #5b9bff);
  transform: translateY(-2px);
}

/* ============ Back to Top ============ */
.back-to-top {
  position: fixed;
  bottom: 28px;
  right: 28px;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: linear-gradient(135deg, #F05000, #ff7a2e);
  color: white;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 12px 30px -8px rgba(240, 80, 0, 0.5);
  z-index: 60;
  opacity: 0;
  transform: translateY(20px) scale(0.9);
  pointer-events: none;
  transition: opacity 0.3s ease, transform 0.3s ease, filter 0.2s ease, box-shadow 0.3s ease;
}
.back-to-top.visible {
  opacity: 1;
  transform: translateY(0) scale(1);
  pointer-events: auto;
}
.back-to-top:hover {
  filter: brightness(1.15);
  box-shadow: 0 18px 40px -10px rgba(240, 80, 0, 0.6);
  transform: translateY(-2px) scale(1);
}
.back-to-top:active {
  transform: translateY(0) scale(0.96);
}
.back-to-top svg {
  width: 22px;
  height: 22px;
}
@media (max-width: 640px) {
  .back-to-top {
    bottom: 18px;
    right: 18px;
    width: 44px;
    height: 44px;
  }
  .back-to-top svg {
    width: 18px;
    height: 18px;
  }
}

/* ============ Responsive ============ */
@media (max-width: 1023px) {
  .mock-dashboard, .ai-chat-window { transform: none; }
  .floating-badge { display: none; }
}

/* ============ Cookie 同意橫幅 ============ */
.consent-banner {
  position: fixed;
  left: 16px;
  right: 16px;
  bottom: 16px;
  z-index: 70;
  background: white;
  border: 1px solid #e2e8f0;
  border-radius: 16px;
  box-shadow: 0 20px 50px -12px rgba(15, 23, 42, 0.25);
  animation: consentUp 0.4s ease-out;
}
.consent-banner[hidden] { display: none; }
@keyframes consentUp {
  from { opacity: 0; transform: translateY(16px); }
  to   { opacity: 1; transform: translateY(0); }
}
.consent-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 18px 20px;
  display: flex;
  align-items: center;
  gap: 20px;
}
.consent-text strong { font-size: 15px; font-weight: 800; color: #0f172a; }
.consent-text p {
  margin-top: 4px;
  font-size: 13px;
  line-height: 1.6;
  color: #475569;
}
.consent-text a { color: #0060F0; text-decoration: underline; }
.consent-actions {
  display: flex;
  gap: 10px;
  flex-shrink: 0;
}
.consent-btn {
  padding: 10px 20px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.2s ease;
  white-space: nowrap;
}
.consent-btn-ghost {
  background: white;
  border: 1px solid #e2e8f0;
  color: #334155;
}
.consent-btn-ghost:hover { border-color: #cbd5e1; background: #f8fafc; }
.consent-btn-primary {
  background: linear-gradient(135deg, #0060F0, #2f7bff);
  border: none;
  color: white;
  box-shadow: 0 8px 20px -8px rgba(0, 96, 240, 0.5);
}
.consent-btn-primary:hover { filter: brightness(1.08); }
@media (max-width: 767px) {
  .consent-inner { flex-direction: column; align-items: stretch; gap: 14px; }
  .consent-actions { justify-content: stretch; }
  .consent-btn { flex: 1; }
}

/* ============ 語言切換器 ============ */
.lang-switch { position: relative; }
.lang-switch-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 7px 12px;
  border-radius: 999px;
  border: 1px solid #e2e8f0;
  background: white;
  font-size: 13px;
  font-weight: 600;
  color: #334155;
  cursor: pointer;
  transition: border-color 0.2s, color 0.2s;
}
.lang-switch-btn:hover { border-color: #0060F0; color: #0060F0; }
.lang-switch-btn svg { width: 16px; height: 16px; }
.lang-switch-menu {
  position: absolute;
  right: 0;
  top: calc(100% + 8px);
  min-width: 160px;
  background: white;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  box-shadow: 0 12px 30px -8px rgba(15, 23, 42, 0.18);
  padding: 6px;
  display: none;
  z-index: 60;
}
.lang-switch.open .lang-switch-menu { display: block; }
.lang-switch-menu a {
  display: block;
  padding: 8px 12px;
  border-radius: 8px;
  font-size: 14px;
  color: #334155;
  white-space: nowrap;
  transition: background 0.15s;
}
.lang-switch-menu a:hover { background: #f1f5f9; }
.lang-switch-menu a.active { color: #0060F0; font-weight: 700; background: #eff6ff; }
@media (max-width: 639px) {
  .lang-switch-btn span { display: none; }
  .lang-switch-btn { padding: 7px; }
}

/* ============ 隱私權政策內文 ============ */
.privacy-body h2 {
  font-size: 20px;
  font-weight: 800;
  color: #0f172a;
  padding-bottom: 8px;
  margin-bottom: 14px;
  border-bottom: 2px solid #dbeafe;
}
.privacy-body h3 {
  font-size: 16px;
  font-weight: 700;
  color: #1e293b;
  margin: 18px 0 8px;
}
.privacy-body p { font-size: 15px; line-height: 1.8; margin-bottom: 10px; }
.privacy-body ul {
  list-style: disc;
  padding-left: 22px;
  font-size: 15px;
  line-height: 1.8;
}
.privacy-body ul li { margin-bottom: 6px; }
.privacy-body .note {
  font-size: 14px;
  color: #475569;
  background: #eff6ff;
  border-left: 3px solid #0060F0;
  border-radius: 8px;
  padding: 12px 14px;
  margin-top: 12px;
}
.privacy-body .table-wrap { overflow-x: auto; margin: 6px 0 4px; }
.privacy-body table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
  min-width: 480px;
}
.privacy-body thead th {
  background: #f1f5f9;
  color: #0f172a;
  font-weight: 700;
  text-align: left;
  padding: 10px 12px;
  border: 1px solid #e2e8f0;
  white-space: nowrap;
}
.privacy-body tbody td {
  padding: 10px 12px;
  border: 1px solid #e2e8f0;
  color: #334155;
  vertical-align: top;
}
.privacy-body tbody tr:nth-child(even) td { background: #f8fafc; }
.privacy-body .iso-note {
  background: linear-gradient(135deg, #eff6ff, #fff3ec);
  border: 1px solid #dbeafe;
  border-radius: 16px;
  padding: 24px;
}
.privacy-body .iso-note h2 { border-bottom-color: #bfdbfe; }
