/* 靈感松鼠 NutAds 行銷首頁專用樣式。共用色彩／字型／按鈕基礎樣式定義在 style.css（本頁一併
   引入），這裡只放首頁獨有的版面。版面採「全版位」設計：每個 <section> 背景都延伸到瀏覽器全寬，
   內容則透過 .lp-container 維持在可讀寬度並置中，容器寬度拉大、留白改用 clamp() 讓大螢幕也不會
   被關進一個窄框裡。強調型區塊（首頁、核心優勢、方案價格、結尾 CTA）採用深紅→橙→黃的品牌漸層
   背景，文字改為白／米白／亮黃色以維持對比；內容型區塊（痛點、解決方案、適合對象、常見問題、
   信任區）維持原本白／米色底，確保長文字仍然好讀。所有裝飾性圖示使用 Font Awesome，不使用
   emoji。 */

:root {
  /* 深紅橙黃漸層只用在「醒目文字」（標題強調字、關鍵數字），背景一律維持淺黃／淺橙的溫和漸層。 */
  --brand-gradient-text: linear-gradient(100deg, #b91c1c 0%, #dc2626 30%, #ea580c 62%, #f59e0b 85%, #fbbf24 100%);
  --pale-band-gradient: linear-gradient(135deg, #fff7ed 0%, #ffedd0 45%, #ffe1b0 100%);
}

html { scroll-behavior: smooth; }

body.landing { background: var(--bg); }

/* ---- 捲動漸入動畫：每個模塊第一次進入視窗時淡入＋微微上移，行為由 landing-reveal.js 的
   IntersectionObserver 控制（加上 .reveal-visible 觸發），這裡只放純 CSS 的動畫效果本身。
   .reveal 用在單一區塊（標題、整張卡片…）；.reveal-stagger 用在卡片列，讓子項目依序交錯淡入。
   為尊重使用者的動態效果偏好設定，reduce-motion 時直接顯示、不做任何動畫。 -----------------*/
.reveal {
  opacity: 0; transform: translateY(28px);
  transition: opacity 2s cubic-bezier(0.22, 1, 0.36, 1), transform 2s cubic-bezier(0.22, 1, 0.36, 1);
}
.reveal.reveal-visible { opacity: 1; transform: none; }

.reveal-stagger > * {
  opacity: 0; transform: translateY(22px);
  transition: opacity 1.6s cubic-bezier(0.22, 1, 0.36, 1), transform 1.6s cubic-bezier(0.22, 1, 0.36, 1);
}
.reveal-stagger.reveal-visible > * { opacity: 1; transform: none; }
.reveal-stagger.reveal-visible > *:nth-child(1) { transition-delay: 0ms; }
.reveal-stagger.reveal-visible > *:nth-child(2) { transition-delay: 200ms; }
.reveal-stagger.reveal-visible > *:nth-child(3) { transition-delay: 400ms; }
.reveal-stagger.reveal-visible > *:nth-child(4) { transition-delay: 600ms; }
.reveal-stagger.reveal-visible > *:nth-child(5) { transition-delay: 800ms; }
.reveal-stagger.reveal-visible > *:nth-child(6) { transition-delay: 1000ms; }

@media (prefers-reduced-motion: reduce) {
  .reveal, .reveal-stagger > * { opacity: 1 !important; transform: none !important; transition: none !important; }
  .lp-persona-track { animation: none !important; }
  .lp-persona-carousel { overflow-x: auto; -webkit-mask-image: none; mask-image: none; }
}

/* style.css defines a global `main { max-width: 1200px; margin: 0 auto; padding: 24px 32px 64px; }`
   rule for the tool app (app.html). Without this override it also applies to the marketing
   page's <main class="lp-main">, capping the whole page at 1200px and padding/centering it —
   which is exactly what caused the "boxed into a frame" look. Reset it fully here so every
   section can go edge-to-edge and .lp-container alone controls the readable content width. */
.lp-main { width: 100%; max-width: none; margin: 0; padding: 0; }

.lp-container { max-width: 1600px; margin: 0 auto; padding: 0 clamp(24px, 5vw, 64px); }

.lp-section { padding-top: 84px; padding-bottom: 84px; }

/* ---- Section background bands (跳色／漸層區隔) --------------------------------- */

.lp-bg-panel { background: var(--panel); }
.lp-bg-soft { background: linear-gradient(180deg, #fff7ed 0%, #ffedd9 100%); }
.lp-bg-warm-gradient { background: var(--pale-band-gradient); }
.lp-bg-amber-band { background: linear-gradient(180deg, var(--amber-pale) 0%, #fff2df 100%); }
.lp-bg-accent-gradient { background: var(--pale-band-gradient); }

/* Hero 背景直接使用松鼠情境圖（本身就是淺黃／淺橙底），手機版換成直式構圖，
   讓文字區維持在圖片留白處，不需要額外套色。 */
.lp-bg-hero {
  background-image: url("img/hero-banner.jpg");
  background-size: cover;
  background-position: center right;
  background-repeat: no-repeat;
}

/* ---- Header / Nav --------------------------------------------------------- */

.lp-header {
  background: var(--panel);
  border-bottom: 1px solid var(--border);
  position: sticky; top: 0; z-index: 100;
}
.lp-header-inner {
  padding-top: 16px; padding-bottom: 16px;
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
  flex-wrap: wrap;
}

.lp-nav { display: flex; align-items: center; gap: 24px; flex-wrap: wrap; }
.lp-nav-link { color: var(--text); font-weight: 600; font-size: 15.5px; text-decoration: none; }
.lp-nav-link:hover { color: var(--accent-dark); }

.nav-dropdown { position: relative; }
.nav-dropdown summary {
  cursor: pointer; list-style: none; color: var(--text); font-weight: 600; font-size: 15.5px;
  padding: 6px 2px;
}
.nav-dropdown summary::-webkit-details-marker { display: none; }
.nav-dropdown summary::after { content: " \25BE"; color: var(--muted); }
.nav-dropdown[open] summary::after { content: " \25B4"; }
.dropdown-menu {
  position: absolute; top: calc(100% + 8px); left: 50%; transform: translateX(-50%);
  background: var(--panel); border: 1px solid var(--border); border-radius: var(--radius-sm);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.12); padding: 8px; min-width: 200px;
  display: flex; flex-direction: column; gap: 2px; z-index: 50;
}
.dropdown-menu a {
  color: var(--text); text-decoration: none; font-size: 14.5px; font-weight: 600;
  padding: 9px 12px; border-radius: 8px; white-space: nowrap;
}
.dropdown-menu a:hover { background: var(--accent-pale); color: var(--accent-dark); }

.lp-cta-btn {
  display: inline-block; padding: 12px 24px; border-radius: var(--radius-pill);
  background: var(--accent); color: #fff !important; font-weight: 700; font-size: 15px;
  text-decoration: none; box-shadow: 0 4px 16px rgba(185, 28, 28, 0.35);
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
  white-space: nowrap;
}
.lp-cta-btn:hover { background: var(--accent-dark); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(185, 28, 28, 0.4); }
.lp-cta-lg { padding: 18px 36px; font-size: 17.5px; }

.lp-secondary-link { color: var(--accent-dark); font-weight: 700; font-size: 15.5px; text-decoration: none; }
.lp-secondary-link:hover { text-decoration: underline; }
.lp-secondary-link i { font-size: 12px; margin-left: 2px; }

/* ---- Hero (深紅橙黃漸層滿版底) ------------------------------------------------- */

.lp-hero { padding: 8px 0; min-height: 640px; display: flex; align-items: center; }
.lp-hero-inner {
  width: 100%; padding-top: 72px; padding-bottom: 72px;
}
.lp-hero-text { max-width: 620px; }
.eyebrow {
  display: inline-flex; align-items: center; gap: 6px; margin: 0 0 16px; padding: 6px 16px;
  border-radius: var(--radius-pill); background: var(--amber-pale); color: var(--amber-dark);
  font-size: 13px; font-weight: 700;
}
.lp-hero-text h1 {
  margin: 0 0 20px; font-family: Cardo, "Noto Sans TC", serif; font-weight: 900;
  font-size: 54px; line-height: 1.28; color: var(--text);
}
.lp-hero-subtitle { font-size: 21px; color: var(--muted); margin: 0 0 30px; line-height: 1.65; }
.accent-strong {
  background: var(--brand-gradient-text); -webkit-background-clip: text; background-clip: text;
  color: transparent; font-weight: 900;
}
.lp-hero-actions { display: flex; align-items: center; gap: 24px; flex-wrap: wrap; margin-bottom: 14px; }
.lp-hero-note { font-size: 13.5px; color: var(--text-light); margin: 0; display: flex; align-items: center; gap: 6px; }
.lp-hero-note i { color: var(--amber-dark); }

/* ---- Quick value-prop strip -------------------------------------------------- */

.lp-value-strip {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 18px;
  padding: 44px 0;
}
.lp-value-item { display: flex; align-items: flex-start; gap: 14px; }
.lp-value-icon {
  flex-shrink: 0; width: 46px; height: 46px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
}
.lp-value-icon img { width: 100%; height: 100%; object-fit: contain; }
.lp-value-item h3 { margin: 0 0 4px; font-size: 16px; font-weight: 900; color: var(--text); font-family: Cardo, "Noto Sans TC", serif; }
.lp-value-item p { margin: 0; font-size: 14px; color: var(--muted); line-height: 1.55; }

/* ---- Generic section heading -------------------------------------------------- */

.lp-section-title {
  text-align: center; margin: 0 0 10px; font-family: Cardo, "Noto Sans TC", serif; font-weight: 900;
  font-size: 38px; line-height: 1.35; color: var(--text);
}
.lp-section-sub { text-align: center; color: var(--muted); margin: 0 0 40px; font-size: 16px; }

/* ---- Pain points (大標題 + 圖塊三欄) ------------------------------------------- */

.lp-pain-head {
  display: flex; align-items: flex-end; justify-content: space-between; gap: 40px;
  flex-wrap: wrap; margin-bottom: 48px;
}
.lp-pain-title {
  margin: 0; font-family: Cardo, "Noto Sans TC", serif; font-weight: 900;
  font-size: 40px; line-height: 1.35; color: var(--text); flex: 1 1 380px;
}
.lp-pain-head-note { margin: 0; font-size: 15.5px; color: var(--muted); line-height: 1.7; flex: 1 1 340px; max-width: 460px; }

.lp-pain-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 30px;
}
.lp-pain-block-img {
  width: 100%; aspect-ratio: 4 / 3; border-radius: var(--radius-md); overflow: hidden;
  margin-bottom: 20px; box-shadow: 0 14px 32px rgba(120, 70, 20, 0.14);
}
.lp-pain-block-img img { width: 100%; height: 100%; object-fit: cover; display: block; }
.lp-pain-eyebrow { margin: 0 0 6px; font-size: 13px; font-weight: 800; color: var(--accent); letter-spacing: 0.04em; }
.lp-pain-block h3 {
  margin: 0 0 10px; font-size: 21px; font-family: Cardo, "Noto Sans TC", serif; font-weight: 900;
  color: var(--text);
}
.lp-pain-block p:not(.lp-pain-eyebrow) { margin: 0; font-size: 14.5px; color: var(--muted); line-height: 1.7; }

/* ---- Pain / persona cards (誰適合使用) ------------------------------------------ */

.lp-card-grid {
  margin-top: 36px;
  display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 18px;
}

/* 誰適合使用：自動輪播，每次露出約 2-3 張卡片，無縫循環捲動；卡片內容重複了一組在
   DOM 尾端（aria-hidden），track 位移到 -50% 剛好接回第一組，肉眼看不出接縫。 */
.lp-persona-carousel {
  margin-top: 40px;
  overflow: hidden;
  -webkit-mask-image: linear-gradient(90deg, transparent 0, #000 40px, #000 calc(100% - 40px), transparent 100%);
  mask-image: linear-gradient(90deg, transparent 0, #000 40px, #000 calc(100% - 40px), transparent 100%);
}
.lp-persona-track {
  display: flex; width: max-content; gap: 22px;
  animation: lp-persona-scroll 32s linear infinite;
}
.lp-persona-card {
  flex: 0 0 auto; width: clamp(280px, 34vw, 420px);
  background: var(--panel); border: 1px solid var(--border); border-radius: var(--radius-md);
  overflow: hidden; display: flex; flex-direction: column;
}
.lp-persona-img { width: 100%; aspect-ratio: 4 / 3; overflow: hidden; background: var(--accent-pale); }
.lp-persona-img img { width: 100%; height: 100%; object-fit: cover; display: block; }
.lp-persona-card h3 {
  margin: 18px 22px 6px; font-size: 18px; font-family: Cardo, "Noto Sans TC", serif; font-weight: 900;
  color: var(--text);
}
.lp-persona-card p { margin: 0 22px 22px; font-size: 14.5px; color: var(--muted); line-height: 1.65; }

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

/* ---- Core advantages: stat row (置中標題 + 分隔線 + 四欄直線分隔，淺色底) ------------ */

.stat-highlight { color: var(--accent); font-weight: 900; }

.lp-stat-divider { width: 70px; height: 3px; background: var(--accent); margin: 0 auto 48px; border-radius: 2px; }

.lp-stat-row {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 0;
  margin-bottom: 52px;
}
.lp-stat-col {
  text-align: center; padding: 4px 28px; border-left: 1px solid rgba(30, 41, 59, 0.12);
}
.lp-stat-col:first-child { border-left: none; }
.lp-stat-heading {
  margin: 0 0 12px; font-size: 24px; font-weight: 900; color: var(--accent-dark);
  font-family: Cardo, "Noto Sans TC", serif;
}
.lp-stat-body { margin: 0 0 14px; font-size: 15px; color: var(--text); line-height: 1.65; }
.lp-stat-caption { margin: 0; font-size: 11.5px; color: var(--text-light); letter-spacing: 0.08em; font-weight: 700; }

.lp-advantage-shot {
  max-width: 800px; margin: 0 auto; background: var(--bg); border: 1px solid var(--border);
  border-radius: var(--radius-md); overflow: hidden; box-shadow: 0 20px 50px rgba(30, 10, 5, 0.35);
}
.lp-advantage-shot-bar {
  display: flex; align-items: center; gap: 6px; padding: 10px 14px; background: var(--panel);
  border-bottom: 1px solid var(--border);
}
.shot-dot { width: 9px; height: 9px; border-radius: 50%; display: inline-block; }
.shot-dot-1 { background: #f2a65a; }
.shot-dot-2 { background: #f4c95d; }
.shot-dot-3 { background: #8fbf7f; }
.lp-advantage-shot img { width: 100%; height: auto; display: block; }

/* ---- Solutions: flashy title + pill tags + detail cards -------------------------- */

.lp-flashy-title {
  text-align: center; margin: 0 0 14px; font-family: Cardo, "Noto Sans TC", serif; font-weight: 900;
  font-size: 46px; line-height: 1.4; color: var(--text);
}
.lp-flashy-gradient {
  background: var(--brand-gradient-text);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}

.lp-pill-row {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; margin: 44px 0 56px;
}
.lp-pill {
  display: flex; align-items: center; justify-content: center; text-align: center;
  padding: 20px 20px; border-radius: var(--radius-pill);
  border: 2px solid var(--text); font-size: 18px; font-weight: 700; color: var(--text);
  background: var(--panel); line-height: 1.35;
}

.lp-solution-grid {
  margin-top: 8px;
  display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 22px;
}
.lp-solution-card {
  background: var(--bg); border: 1px solid var(--border); border-radius: var(--radius-md);
  padding: 20px 22px 24px;
}
.lp-solution-icon {
  display: flex; align-items: center; justify-content: center; width: 44px; height: 44px;
  border-radius: 50%; background: var(--accent-pale); color: var(--accent); font-size: 18px;
  margin-bottom: 12px;
}
.lp-solution-card h3 {
  margin: 0 0 8px; font-size: 18px; font-family: Cardo, "Noto Sans TC", serif; font-weight: 900;
  color: var(--text);
}
.lp-solution-card p { margin: 0; font-size: 14.5px; color: var(--muted); line-height: 1.65; }
.lp-solution-img {
  display: flex; align-items: center; justify-content: center; width: 100%; height: 210px;
  background: var(--accent-pale); border-radius: var(--radius-sm); margin-bottom: 16px; overflow: hidden;
}
.lp-solution-img img { max-width: 78%; max-height: 82%; object-fit: contain; display: block; }

/* ---- Trust band --------------------------------------------------------------- */

.lp-trust-title {
  text-align: center; font-size: 13.5px; font-weight: 700; color: var(--text-light);
  letter-spacing: 0.04em; margin: 0 0 28px;
}
.lp-trust-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 18px;
}
.lp-trust-item {
  background: var(--panel); border: 1px solid var(--border); border-radius: var(--radius-md);
  padding: 22px 20px; display: flex; align-items: flex-start; gap: 12px;
}
.lp-trust-icon {
  flex-shrink: 0; width: 36px; height: 36px; border-radius: 50%; background: var(--amber-pale);
  color: var(--amber-dark); display: flex; align-items: center; justify-content: center; font-size: 15px;
}
.lp-trust-item p { margin: 0; font-size: 14.5px; color: var(--muted); line-height: 1.6; }

/* ---- Pricing ------------------------------------------------------------------ */

.lp-pricing-card {
  max-width: 440px; margin: 0 auto; background: var(--panel); border-radius: var(--radius-md);
  padding: 40px 36px; text-align: center; box-shadow: 0 28px 68px rgba(30, 10, 5, 0.35);
}
.lp-pricing-name { margin: 0 0 6px; font-size: 15px; font-weight: 700; color: var(--accent-dark); }
.lp-pricing-price {
  margin: 0 0 24px; font-size: 46px; font-weight: 900; color: var(--text);
  font-family: Cardo, "Noto Sans TC", serif;
}
.lp-pricing-unit { font-size: 15px; font-weight: 600; color: var(--muted); }
.lp-pricing-list { list-style: none; margin: 0 0 30px; padding: 0; text-align: left; }
.lp-pricing-list li {
  padding: 10px 0; border-bottom: 1px solid var(--border); font-size: 15px; color: var(--text);
  display: flex; align-items: center; gap: 10px;
}
.lp-pricing-list li:last-child { border-bottom: none; }
.lp-pricing-list li i { color: var(--accent); font-size: 14px; }
.lp-pricing-cta { width: 100%; box-sizing: border-box; }
.lp-pricing-note { margin: 14px 0 0; font-size: 13px; color: var(--text-light); }

/* ---- FAQ ------------------------------------------------------------------ */

.lp-faq-list { max-width: 760px; margin: 40px auto 0; display: flex; flex-direction: column; gap: 10px; }
.lp-faq-item {
  background: var(--bg); border: 1px solid var(--border); border-radius: var(--radius-sm);
  padding: 4px 20px;
}
.lp-faq-item summary {
  cursor: pointer; list-style: none; padding: 16px 0; font-weight: 700; font-size: 15.5px;
  color: var(--text); position: relative; padding-right: 24px;
}
.lp-faq-item summary::-webkit-details-marker { display: none; }
.lp-faq-item summary::after {
  content: "+"; position: absolute; right: 0; top: 14px; font-size: 20px; color: var(--accent);
  font-weight: 700;
}
.lp-faq-item[open] summary::after { content: "\2013"; }
.lp-faq-item p { margin: 0 0 18px; font-size: 14.5px; color: var(--muted); line-height: 1.7; }

/* ---- Final CTA ------------------------------------------------------------------ */

.lp-final-cta { padding-top: 76px; padding-bottom: 76px; }
.lp-final-cta-inner {
  display: flex; align-items: center; justify-content: center;
  gap: 44px; flex-wrap: wrap;
}
.lp-final-cta-text { text-align: center; max-width: 640px; }
.lp-final-cta h2 {
  margin: 0 0 28px; color: var(--text); font-family: Cardo, "Noto Sans TC", serif; font-weight: 900;
  font-size: 34px; line-height: 1.5;
}

/* ---- Footer (multi-column) ----------------------------------------------------- */

.lp-footer { border-top: 1px solid var(--border); padding: 44px 0 28px; background: var(--bg); }
.lp-footer-inner {
  display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 32px;
  padding-bottom: 28px;
}
.lp-footer-brand .brand-link { margin-bottom: 10px; }
.lp-footer-tagline { margin: 0; font-size: 13.5px; color: var(--muted); max-width: 320px; line-height: 1.6; }
.lp-footer-col-title { margin: 0 0 12px; font-size: 13px; font-weight: 700; color: var(--text-light); letter-spacing: 0.04em; }
.lp-footer-col { display: flex; flex-direction: column; gap: 9px; }
.lp-footer-col a { color: var(--muted); font-size: 14px; text-decoration: none; }
.lp-footer-col a:hover { color: var(--accent-dark); text-decoration: underline; }
.lp-footer-soon { color: var(--text-light); font-size: 14px; }
.lp-footer-copy { max-width: 1600px; margin: 0 auto; padding: 20px clamp(24px, 5vw, 64px) 0; border-top: 1px solid var(--border); text-align: center; color: var(--text-light); font-size: 13px; box-sizing: border-box; }

/* ---- Responsive ----------------------------------------------------------------- */

@media (max-width: 900px) {
  .lp-stat-col { border-left: none; border-top: 1px solid rgba(30, 41, 59, 0.12); padding: 24px 8px 4px; }
  .lp-stat-col:first-child { border-top: none; }
  .lp-stat-row { grid-template-columns: 1fr 1fr; }
  .lp-pill-row { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 720px) {
  /* 注意：這裡務必用 padding-left/right（longhand），不要用 padding: 0 20px 這種簡寫 ——
     簡寫會把 top/bottom 一併設回 0，蓋掉 .lp-section 的 84px 上下留白，導致手機版每個模塊
     幾乎緊貼在一起（之前修過同一種 bug，這次是在 mobile breakpoint 裡不小心又寫回簡寫）。 */
  .lp-container { padding-left: 20px; padding-right: 20px; }

  /* 手機版整體留白加大、盡量置中，減少擁擠感 */
  .lp-section { padding-top: 72px; padding-bottom: 72px; }

  .lp-hero {
    min-height: 780px; align-items: flex-start;
    background-image: url("img/hero-banner-portrait.jpg");
    background-position: top center;
  }
  .lp-hero-inner { padding: 44px 0 0; }
  .lp-hero-text { max-width: 100%; text-align: center; }
  .lp-hero-text h1 { font-size: 34px; }
  .lp-hero-subtitle { font-size: 18px; }
  .eyebrow { margin-left: auto; margin-right: auto; }
  .lp-hero-actions { justify-content: center; }
  .lp-hero-note { justify-content: center; }

  .lp-section-title { font-size: 27px; }
  .lp-flashy-title { font-size: 28px; }
  .lp-pill-row { grid-template-columns: 1fr; gap: 14px; }
  .lp-pill { font-size: 16px; padding: 16px 18px; }
  .dropdown-menu { left: 0; transform: none; }

  .lp-footer-inner { grid-template-columns: 1fr; gap: 32px; text-align: center; }
  .lp-footer-brand { display: flex; flex-direction: column; align-items: center; }
  .lp-footer-brand .brand-link { justify-content: center; }
  .lp-footer-tagline { max-width: none; }
  .lp-footer-col { align-items: center; }

  .lp-pain-head { flex-direction: column; align-items: center; gap: 16px; text-align: center; }
  .lp-pain-title, .lp-pain-head-note { flex: none; max-width: none; }
  .lp-pain-title { font-size: 28px; }
  .lp-pain-grid { gap: 40px; }
  .lp-pain-block { text-align: center; }

  .lp-value-strip { gap: 32px; }
  .lp-value-item { flex-direction: column; align-items: center; text-align: center; }

  .lp-card-grid { gap: 24px; }
  .lp-persona-carousel { margin-left: -20px; margin-right: -20px; }
  .lp-persona-card { width: 68vw; text-align: center; }
  .lp-persona-track { animation-duration: 22s; }

  .lp-stat-row { grid-template-columns: 1fr; row-gap: 36px; }
  .lp-stat-col { max-width: 360px; margin: 0 auto; }

  .lp-pricing-price { font-size: 34px; }
  .lp-pricing-unit { display: block; margin-top: 4px; font-size: 13px; }
}
