@charset "utf-8";

/* ===== TextPad 繁體中文官網 · 公共樣式 common.css ===== */
/* 品牌主色 #006699 · 淺色主題 · 不使用 Google 字體 */

:root {
  --brand: #006699;
  --brand-dark: #004b73;
  --brand-light: #e6f2f7;
  --brand-soft: #f2f8fb;
  --ink: #1a2530;
  --ink-soft: #4a5a68;
  --ink-muted: #7a8894;
  --line: #e3eaef;
  --bg: #ffffff;
  --bg-alt: #f6f9fb;
  --white: #ffffff;
  --radius: 14px;
  --radius-sm: 10px;
  --shadow-sm: 0 2px 10px rgba(0, 102, 153, 0.06);
  --shadow-md: 0 12px 34px rgba(0, 102, 153, 0.12);
  --shadow-lg: 0 22px 60px rgba(0, 102, 153, 0.16);
  --maxw: 1200px;
  --font: -apple-system, BlinkMacSystemFont, "Segoe UI", "Microsoft YaHei",
    "PingFang SC", "Hiragino Sans GB", "Source Han Sans SC", "Noto Sans CJK SC",
    Roboto, Helvetica, Arial, sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  font-family: var(--font);
  color: var(--ink);
  background: var(--bg);
  line-height: 1.75;
  font-size: 16px;
  overflow-x: hidden;
}

a { color: var(--brand); text-decoration: none; transition: color 0.2s ease; }
a:hover { color: var(--brand-dark); }

img { max-width: 100%; display: block; }

.container {
  width: 100%;
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 24px;
}

/* ===== 通用按鈕 ===== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 15px;
  font-weight: 600;
  line-height: 1;
  padding: 13px 24px;
  border-radius: 999px;
  border: 1.5px solid transparent;
  cursor: pointer;
  transition: transform 0.18s ease, box-shadow 0.18s ease,
    background 0.18s ease, border-color 0.18s ease;
  white-space: nowrap;
}
.btn svg { width: 18px; height: 18px; flex: none; }

.btn-primary {
  background: var(--brand);
  color: var(--white);
  box-shadow: var(--shadow-md);
}
.btn-primary:hover {
  color: var(--white);
  background: var(--brand-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

.btn-ghost {
  background: transparent;
  color: var(--ink-soft);
  border-color: var(--line);
}
.btn-ghost:hover {
  color: var(--brand);
  border-color: var(--brand);
  background: var(--brand-soft);
}

.btn-lg { padding: 16px 30px; font-size: 16px; }

/* ===== 導航欄 header ===== */
/* 掛載點不創建定位上下文，確保 header 相對 body 粘性固定 */
#site-header { display: contents; }
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.82);
  backdrop-filter: saturate(180%) blur(16px);
  -webkit-backdrop-filter: saturate(180%) blur(16px);
  border-bottom: 1px solid transparent;
  transition: background 0.25s ease, border-color 0.25s ease,
    box-shadow 0.25s ease, height 0.25s ease;
}
.site-header.scrolled {
  background: rgba(255, 255, 255, 0.94);
  border-bottom-color: var(--line);
  box-shadow: 0 6px 24px rgba(0, 102, 153, 0.08);
}
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 76px;
  transition: height 0.25s ease;
}
.site-header.scrolled .nav { height: 66px; }
.nav-brand { display: flex; align-items: center; gap: 12px; }
.nav-brand img { width: 40px; height: 40px; }
.nav-brand-text { display: flex; flex-direction: column; line-height: 1.15; }
.nav-brand-name {
  font-size: 20px;
  font-weight: 800;
  color: var(--ink);
  letter-spacing: 0.3px;
}
.nav-brand-sub { font-size: 11px; color: var(--ink-muted); font-weight: 500; }

.nav-menu {
  display: flex;
  align-items: center;
  gap: 2px;
  list-style: none;
}
.nav-menu > li > a {
  position: relative;
  display: block;
  padding: 10px 16px;
  color: var(--ink-soft);
  font-weight: 600;
  font-size: 15px;
  border-radius: 8px;
}
.nav-menu > li > a::after {
  content: "";
  position: absolute;
  left: 16px; right: 16px;
  bottom: 4px;
  height: 2px;
  border-radius: 2px;
  background: var(--brand);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.22s ease;
}
.nav-menu > li > a:hover {
  color: var(--brand);
  background: var(--brand-soft);
}
.nav-menu > li > a:hover::after,
.nav-menu > li > a.active::after { transform: scaleX(1); }
.nav-menu > li > a.active { color: var(--brand); }

.nav-actions { display: flex; align-items: center; gap: 12px; }

/* ===== 語言切換（桌面端下拉） ===== */
.lang-switch { position: relative; }
.lang-toggle {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 12px;
  font-size: 14px;
  font-weight: 600;
  color: var(--ink-soft);
  background: transparent;
  border: 1px solid var(--line);
  border-radius: 10px;
  cursor: pointer;
  transition: border-color 0.2s ease, color 0.2s ease, background 0.2s ease;
}
.lang-toggle:hover { color: var(--brand); border-color: rgba(0, 102, 153, 0.4); background: var(--brand-soft); }
.lang-toggle svg { width: 17px; height: 17px; flex: none; }
.lang-caret { transition: transform 0.22s ease; }
.lang-switch.is-open .lang-caret { transform: rotate(180deg); }
.lang-menu {
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  min-width: 168px;
  list-style: none;
  padding: 6px;
  margin: 0;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 12px;
  box-shadow: var(--shadow-md);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-6px);
  transition: opacity 0.18s ease, transform 0.18s ease, visibility 0.18s ease;
  z-index: 60;
}
.lang-switch.is-open .lang-menu { opacity: 1; visibility: visible; transform: translateY(0); }
.lang-option {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding: 9px 12px;
  font-size: 14px;
  font-weight: 500;
  color: var(--ink-soft);
  border-radius: 8px;
  white-space: nowrap;
}
.lang-option:hover { background: var(--brand-soft); color: var(--brand); }
.lang-option.active { color: var(--brand); font-weight: 700; }
.lang-check { display: inline-flex; }
.lang-check svg { width: 16px; height: 16px; color: var(--brand); }

/* ===== 語言切換（移動端抽屜） ===== */
.mobile-lang { margin-top: 22px; padding-top: 22px; border-top: 1px solid var(--line); }
.mobile-lang-title {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 700;
  color: var(--ink-muted);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 12px;
}
.mobile-lang-title svg { width: 16px; height: 16px; }
.mobile-lang-list { list-style: none; display: grid; gap: 4px; }
.mobile-lang-list .lang-option { font-size: 15.5px; padding: 11px 12px; }

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 46px;
  height: 46px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: var(--white);
  cursor: pointer;
}
.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  margin: 0 auto;
  background: var(--ink);
  border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.2s ease;
}
.nav-toggle.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.is-open span:nth-child(2) { opacity: 0; }
.nav-toggle.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ===== 移動端彈出選單 ===== */
.mobile-drawer {
  position: fixed;
  inset: 0;
  z-index: 1100;
  visibility: hidden;
  opacity: 0;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}
.mobile-drawer.is-open { visibility: visible; opacity: 1; }
.mobile-drawer-overlay {
  position: absolute;
  inset: 0;
  background: rgba(10, 30, 45, 0.45);
  backdrop-filter: blur(4px);
}
.mobile-drawer-panel {
  position: absolute;
  top: 0;
  right: 0;
  width: min(84vw, 340px);
  height: 100%;
  background: var(--white);
  box-shadow: -20px 0 60px rgba(0, 0, 0, 0.18);
  padding: 26px 24px;
  display: flex;
  flex-direction: column;
  transform: translateX(100%);
  transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1);
  overflow-y: auto;
}
.mobile-drawer.is-open .mobile-drawer-panel { transform: translateX(0); }
.mobile-drawer-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--line);
}
.mobile-drawer-head .nav-brand-name { font-size: 18px; }
.mobile-drawer-close {
  width: 40px; height: 40px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: var(--bg-alt);
  font-size: 22px;
  color: var(--ink-soft);
  cursor: pointer;
  line-height: 1;
}
.mobile-nav-list { list-style: none; margin-top: 12px; }
.mobile-nav-list li { border-bottom: 1px solid var(--line); }
.mobile-nav-list a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 6px;
  font-size: 17px;
  font-weight: 600;
  color: var(--ink);
}
.mobile-nav-list a:hover { color: var(--brand); }
.mobile-nav-list a::after {
  content: "›";
  color: var(--ink-muted);
  font-size: 20px;
}
.mobile-drawer-actions {
  margin-top: auto;
  padding-top: 22px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.mobile-drawer-actions .btn { width: 100%; justify-content: center; }

/* ===== 頁腳 footer ===== */
.site-footer {
  position: relative;
  background: linear-gradient(180deg, #0a3a52 0%, #062634 100%);
  color: #cbdae3;
  padding: 60px 0 28px;
  margin-top: 40px;
  overflow: hidden;
}
.site-footer::before {
  content: "";
  position: absolute;
  top: -120px; right: -80px;
  width: 360px; height: 360px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(79, 176, 214, 0.16), transparent 70%);
  pointer-events: none;
}
.footer-main {
  position: relative;
  z-index: 1;
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  justify-content: space-between;
  align-items: flex-start;
  padding: 0 0 40px;
}
.footer-brand { max-width: 460px; }
.footer-brand-row { display: flex; align-items: center; gap: 12px; margin-bottom: 16px; }
.footer-brand-row > span { line-height: 1.2; }
.footer-brand-row img {
  width: 46px; height: 46px;
  background: #fff; border-radius: 12px; padding: 6px;
}
.footer-brand-name { font-size: 20px; font-weight: 800; color: #fff; line-height: 1.15; }
.footer-brand-sub { display: inline-block; font-size: 12px; color: #8fb0c1; margin-top: 2px; }
.footer-note {
  font-size: 13.5px;
  line-height: 1.85;
}
.footer-note.zh { color: #eaf6fb; font-weight: 600; }
.footer-note.en { color: #8fb0c1; margin-top: 8px; font-size: 12.5px; }
/* 聯絡卡片 */
.footer-contact { display: grid; gap: 14px; min-width: 300px; }
.footer-contact-title {
  font-size: 13px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #7fa6ba;
  margin-bottom: 4px;
}
.footer-contact-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 18px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: background 0.2s ease, border-color 0.2s ease;
}
.footer-contact-item:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(127, 208, 238, 0.4);
}
.footer-contact-ico {
  flex: none;
  width: 40px; height: 40px;
  display: flex; align-items: center; justify-content: center;
  border-radius: 10px;
  background: rgba(79, 176, 214, 0.18);
  color: #7fd0ee;
}
.footer-contact-ico svg { width: 20px; height: 20px; }
.footer-contact-label { font-size: 12px; color: #8fb0c1; }
.footer-contact-value { font-size: 15.5px; font-weight: 600; color: #eaf6fb; }
.footer-contact-value a { color: #eaf6fb; }
.footer-contact-value a:hover { color: #7fd0ee; }
.footer-bottom {
  position: relative;
  z-index: 1;
  margin-top: 8px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: space-between;
  font-size: 13px;
  color: #8aa7b6;
}
@media (max-width: 640px) {
  .footer-contact { min-width: 0; width: 100%; }
}

/* ===== 通用區塊標題 ===== */
.section { padding: 80px 0; }
.section-alt { background: var(--bg-alt); }
.section-head { text-align: center; max-width: 720px; margin: 0 auto 54px; }
.section-eyebrow {
  display: inline-block;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 2px;
  color: var(--brand);
  text-transform: uppercase;
  margin-bottom: 14px;
}
.section-title {
  font-size: clamp(26px, 4vw, 40px);
  font-weight: 800;
  color: var(--ink);
  line-height: 1.3;
}
.section-desc {
  margin-top: 16px;
  font-size: 17px;
  color: var(--ink-soft);
}

@media (max-width: 900px) {
  .nav-menu, .nav-actions { display: none; }
  .nav-toggle { display: flex; }
  .section { padding: 56px 0; }
  .site-footer { padding-top: 48px; }
}

/* ===== 內頁通用模板 ===== */
/* 頁面橫幅 */
.page-hero {
  position: relative;
  padding: 64px 0 60px;
  background:
    radial-gradient(900px 420px at 85% -20%, rgba(0, 102, 153, 0.12), transparent 60%),
    linear-gradient(180deg, #eef6fa 0%, #ffffff 100%);
  overflow: hidden;
}
.page-hero-inner { position: relative; z-index: 1; text-align: center; max-width: 760px; margin: 0 auto; }
.page-breadcrumb {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  font-size: 13.5px;
  color: var(--ink-muted);
  margin-bottom: 16px;
}
.page-breadcrumb a { color: var(--ink-muted); }
.page-breadcrumb a:hover { color: var(--brand); }
.page-breadcrumb span { color: var(--brand); font-weight: 600; }
.page-hero h1 {
  font-size: clamp(30px, 4.4vw, 46px);
  font-weight: 800;
  color: var(--ink);
  line-height: 1.2;
  letter-spacing: -0.5px;
}
.page-hero p {
  margin-top: 16px;
  font-size: 17px;
  color: var(--ink-soft);
  line-height: 1.8;
}

/* 通用內容卡片網格 */
.tp-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}
.tp-grid-3 { grid-template-columns: repeat(3, 1fr); }
.tp-card {
  display: flex;
  gap: 16px;
  padding: 24px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 16px;
  box-shadow: var(--shadow-sm);
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}
.tp-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: rgba(0, 102, 153, 0.28);
}
.tp-card-ico {
  flex: none;
  width: 44px; height: 44px;
  display: flex; align-items: center; justify-content: center;
  border-radius: 12px;
  background: var(--brand-light);
  color: var(--brand);
}
.tp-card-ico svg { width: 22px; height: 22px; }
.tp-card h3 { font-size: 16.5px; font-weight: 700; margin-bottom: 6px; color: var(--ink); }
.tp-card p { font-size: 14.5px; color: var(--ink-soft); line-height: 1.75; }

/* 規格清單 */
.spec-list { display: grid; gap: 14px; max-width: 920px; margin: 0 auto; }
.spec-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 18px 22px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 12px;
  font-size: 15px;
  color: var(--ink-soft);
  line-height: 1.7;
}
.spec-item svg { flex: none; width: 20px; height: 20px; color: var(--brand); margin-top: 2px; }

/* 價格卡片 */
.price-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 26px;
  max-width: 820px;
  margin: 0 auto;
}
.price-card {
  position: relative;
  padding: 40px 34px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 20px;
  box-shadow: var(--shadow-sm);
  text-align: center;
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}
.price-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); }
.price-card.featured {
  border-color: var(--brand);
  box-shadow: var(--shadow-md);
}
.price-badge {
  position: absolute;
  top: 18px; right: 18px;
  font-size: 12px;
  font-weight: 700;
  color: #fff;
  background: var(--brand);
  padding: 4px 12px;
  border-radius: 999px;
}
.price-name { font-size: 18px; font-weight: 700; color: var(--ink); margin-bottom: 14px; }
.price-value { font-size: 44px; font-weight: 800; color: var(--brand-dark); line-height: 1; }
.price-value .unit { font-size: 18px; font-weight: 600; color: var(--ink-muted); }
.price-value .cur { font-size: 22px; vertical-align: top; margin-right: 2px; }
.price-note { font-size: 13.5px; color: var(--ink-muted); margin: 12px 0 24px; }
.price-card .btn { width: 100%; justify-content: center; }

/* 權益列表 */
.benefit-list { list-style: none; max-width: 760px; margin: 0 auto; display: grid; gap: 14px; }
.benefit-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 15.5px;
  color: var(--ink-soft);
  line-height: 1.7;
}
.benefit-list svg { flex: none; width: 22px; height: 22px; color: var(--brand); margin-top: 1px; }

/* 下載表格 */
.dl-table-wrap { overflow-x: auto; border-radius: 16px; border: 1px solid var(--line); box-shadow: var(--shadow-sm); }
.dl-table { width: 100%; border-collapse: collapse; background: var(--white); min-width: 640px; }
.dl-table th, .dl-table td {
  padding: 14px 18px;
  text-align: left;
  font-size: 14.5px;
  border-bottom: 1px solid var(--line);
}
.dl-table thead th {
  background: var(--brand-soft);
  color: var(--brand-dark);
  font-weight: 700;
  white-space: nowrap;
}
.dl-table tbody tr:last-child td { border-bottom: none; }
.dl-table tbody tr:hover { background: var(--brand-soft); }
.dl-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-weight: 600;
  color: var(--brand);
}
.dl-link svg { width: 16px; height: 16px; }

/* 版本卡片 */
.dl-version {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 28px;
  box-shadow: var(--shadow-sm);
  margin-bottom: 26px;
}
.dl-version-head {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
  margin-bottom: 8px;
}
.dl-version-head h3 { font-size: 20px; font-weight: 800; color: var(--ink); }
.dl-version-tag {
  font-size: 12px;
  font-weight: 700;
  color: var(--brand-dark);
  background: var(--brand-light);
  padding: 3px 10px;
  border-radius: 999px;
}
.dl-version p { font-size: 14.5px; color: var(--ink-soft); line-height: 1.75; margin-bottom: 18px; }
.dl-version-btns { display: flex; flex-wrap: wrap; gap: 12px; }

/* 新聞時間線 */
.news-timeline { max-width: 800px; margin: 0 auto; position: relative; padding-left: 34px; }
.news-timeline::before {
  content: "";
  position: absolute;
  left: 9px; top: 6px; bottom: 6px;
  width: 2px;
  background: var(--line);
}
.news-item { position: relative; padding-bottom: 34px; }
.news-item:last-child { padding-bottom: 0; }
.news-item::before {
  content: "";
  position: absolute;
  left: -34px; top: 4px;
  width: 20px; height: 20px;
  border-radius: 50%;
  background: var(--white);
  border: 3px solid var(--brand);
}
.news-date { font-size: 13px; font-weight: 700; color: var(--brand); margin-bottom: 8px; }
.news-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 22px 24px;
  box-shadow: var(--shadow-sm);
}
.news-card h3 { font-size: 17px; font-weight: 700; color: var(--ink); margin-bottom: 8px; }
.news-card p { font-size: 14.5px; color: var(--ink-soft); line-height: 1.75; }
.news-links { display: flex; flex-wrap: wrap; gap: 16px; margin-top: 14px; }
.news-links a { display: inline-flex; align-items: center; gap: 6px; font-size: 14px; font-weight: 600; }
.news-links svg { width: 15px; height: 15px; }

@media (max-width: 820px) {
  .tp-grid, .tp-grid-3, .price-grid { grid-template-columns: 1fr; }
}

/* ===== 行動號召區 CTA ===== */
/* CTA 所在區塊收緊內邊距，避免與頁腳之間留白過大 */
.section:has(.cta-panel) { padding: 48px 0; }
.cta-panel {
  position: relative;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  align-items: center;
  gap: 40px;
  padding: 56px 56px;
  border-radius: 26px;
  background: linear-gradient(135deg, var(--brand) 0%, var(--brand-dark) 100%);
  color: #fff;
  box-shadow: var(--shadow-lg);
  overflow: hidden;
}
.cta-panel::before {
  content: "";
  position: absolute;
  top: -90px; right: -60px;
  width: 320px; height: 320px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255,255,255,0.16), transparent 70%);
}
.cta-panel::after {
  content: "";
  position: absolute;
  bottom: -120px; left: -80px;
  width: 300px; height: 300px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(79,176,214,0.28), transparent 70%);
}
.cta-content { position: relative; z-index: 1; }
.cta-eyebrow {
  display: inline-block;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #bfe3f2;
  margin-bottom: 14px;
}
.cta-content h2 {
  font-size: clamp(26px, 3.6vw, 40px);
  font-weight: 800;
  line-height: 1.25;
  margin-bottom: 16px;
}
.cta-content p {
  font-size: 16.5px;
  line-height: 1.8;
  color: #d6ecf5;
  max-width: 560px;
  margin-bottom: 22px;
}
.cta-points {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 24px;
  list-style: none;
}
.cta-points li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14.5px;
  font-weight: 600;
  color: #eaf6fb;
}
.cta-points svg { width: 18px; height: 18px; color: #7fd0ee; flex: none; }
.cta-actions {
  position: relative;
  z-index: 1;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 20px;
  padding: 32px 30px;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}
.cta-actions .btn { width: 100%; justify-content: center; }
.cta-actions .btn + .btn { margin-top: 14px; }
.cta-actions .btn-white { background: #fff; color: var(--brand-dark); }
.cta-actions .btn-white:hover { background: #eaf5fa; color: var(--brand-dark); transform: translateY(-2px); }
.cta-actions .btn-clear {
  background: transparent;
  color: #fff;
  border-color: rgba(255, 255, 255, 0.55);
}
.cta-actions .btn-clear:hover { background: rgba(255, 255, 255, 0.14); color: #fff; }
.cta-actions-note {
  margin-top: 18px;
  padding-top: 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
  font-size: 13px;
  color: #cbe6f2;
  text-align: center;
}
@media (max-width: 860px) {
  .cta-panel { grid-template-columns: 1fr; gap: 30px; padding: 40px 28px; }
}
