/* =====================================================================
   page.css —— 內頁通用區塊樣式（多頁面複用）
   依賴 common.css 的變量與基礎樣式。
   包含：內頁 Hero、麪包屑、圖文交替區、特性卡、對比表、價格卡、
        下載卡、資源卡、FAQ、通用 prose 富文本。
   編碼：UTF-8（無 BOM）
   ===================================================================== */

/* ---------- 內頁 Hero ---------- */
.page-hero { position: relative; overflow: hidden; background: linear-gradient(180deg, #f4f7ff 0%, #fbfcff 70%, #fff 100%); }
.page-hero::before { content: ""; position: absolute; top: -150px; right: -120px; width: 460px; height: 460px; border-radius: 50%; background: radial-gradient(circle, rgba(10,46,128,.16), transparent 70%); pointer-events: none; }
.page-hero__inner { position: relative; z-index: 1; padding-top: 56px; padding-bottom: 60px; max-width: 880px; }
.page-hero__inner--center { margin: 0 auto; text-align: center; }
.page-hero__eyebrow { display: inline-flex; align-items: center; gap: 10px; font-size: 13px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; color: var(--brand-orange); margin-bottom: 16px; }
.page-hero__title { font-size: clamp(30px, 4.4vw, 46px); line-height: 1.18; margin-bottom: 18px; }
.page-hero__lead { font-size: 18px; line-height: 1.85; color: var(--ink-500); margin: 0; }
.page-hero__actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 30px; }
.page-hero__inner--center .page-hero__actions { justify-content: center; }

/* ---------- 麪包屑 ---------- */
.crumb { display: flex; flex-wrap: wrap; align-items: center; gap: 8px; font-size: 13px; color: var(--ink-300); padding: 16px 0 0; }
.crumb a { color: var(--ink-500); font-weight: 500; }
.crumb a:hover { color: var(--brand-blue); }
.crumb span { color: var(--ink-300); }
.crumb b { color: var(--ink-700); font-weight: 600; }

/* ---------- 圖文交替區 ---------- */
.feature-row { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; padding: 36px 0; }
.feature-row + .feature-row { border-top: 1px solid var(--line); }
.feature-row__media { border-radius: var(--radius-lg); overflow: hidden; }
.feature-row__media img { width: 100%; display: block; border-radius: var(--radius-lg); box-shadow: var(--shadow); border: 1px solid var(--line); }
.feature-row--rev .feature-row__media { order: -1; }
.feature-row__eyebrow { display: inline-block; font-size: 12px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--brand-orange); margin-bottom: 12px; }
.feature-row__title { font-size: clamp(22px, 2.8vw, 30px); margin-bottom: 14px; }
.feature-row__text { font-size: 15.5px; line-height: 1.9; color: var(--ink-500); margin: 0 0 18px; }
.feature-row__text:last-child { margin-bottom: 0; }
.feature-row__list { list-style: none; padding: 0; margin: 0 0 4px; display: grid; gap: 10px; }
.feature-row__list li { position: relative; padding-left: 26px; font-size: 15px; line-height: 1.75; color: var(--ink-700); }
.feature-row__list li::before { content: ""; position: absolute; left: 4px; top: 9px; width: 8px; height: 8px; border-radius: 50%; background: var(--brand-orange); }
.feature-row__link { display: inline-flex; align-items: center; gap: 6px; font-weight: 600; }
.feature-row__link svg { width: 16px; height: 16px; transition: transform .2s ease; }
.feature-row__link:hover svg { transform: translateX(4px); }

/* ---------- 特性卡網格 ---------- */
.fcards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.fcards--2 { grid-template-columns: repeat(2, 1fr); }
.fcard { position: relative; overflow: hidden; background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 28px; box-shadow: var(--shadow-sm); transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease; }
.fcard:hover { transform: translateY(-5px); box-shadow: var(--shadow); border-color: #d9e1f6; }
.fcard__ic { width: 50px; height: 50px; border-radius: 14px; display: flex; align-items: center; justify-content: center; margin-bottom: 16px; background: linear-gradient(135deg, var(--brand-blue), #2247a8); color: #fff; }
.fcard__ic svg { width: 25px; height: 25px; }
.fcard:nth-child(3n+2) .fcard__ic { background: linear-gradient(135deg, var(--brand-orange), var(--brand-red)); }
.fcard:nth-child(3n) .fcard__ic { background: linear-gradient(135deg, var(--brand-red), #a82b1f); }
.fcard h3 { font-size: 18px; margin-bottom: 10px; }
.fcard p { font-size: 14.5px; color: var(--ink-500); margin: 0; }

/* ---------- 通用富文本 prose ---------- */
.prose { font-size: 15.5px; line-height: 1.9; color: var(--ink-700); }
.prose h2 { font-size: clamp(22px, 2.8vw, 30px); margin: 36px 0 14px; }
.prose h3 { font-size: 20px; margin: 28px 0 10px; }
.prose p { margin: 0 0 16px; color: var(--ink-500); }
.prose ul { margin: 0 0 16px; padding-left: 4px; }
.prose ul li { position: relative; padding-left: 26px; margin-bottom: 10px; color: var(--ink-500); }
.prose ul li::before { content: ""; position: absolute; left: 4px; top: 9px; width: 8px; height: 8px; border-radius: 2px; background: linear-gradient(135deg, var(--brand-blue), var(--brand-orange)); }
.prose a { font-weight: 600; }
.prose img { border-radius: var(--radius); box-shadow: var(--shadow-sm); margin: 12px 0; }

/* ---------- 對比表 ---------- */
.cmp { overflow-x: auto; -webkit-overflow-scrolling: touch; border: 1px solid var(--line); border-radius: var(--radius); box-shadow: var(--shadow-sm); }
.cmp table { width: 100%; border-collapse: collapse; min-width: 640px; background: #fff; }
.cmp th, .cmp td { padding: 16px 20px; text-align: left; border-bottom: 1px solid var(--line); font-size: 14.5px; }
.cmp thead th { background: var(--bg-soft); color: var(--ink-900); font-weight: 700; font-size: 15px; position: sticky; top: 0; }
.cmp tbody tr:last-child td { border-bottom: none; }
.cmp td.c { text-align: center; }
.cmp .yes { color: #1f9d55; font-weight: 700; }
.cmp .no { color: var(--ink-300); }
.cmp .grp td { background: #eef2fb; font-weight: 700; color: var(--brand-blue); }

/* ---------- 詳細功能對比（手風琴）---------- */
.fcmp { width: 100%; margin: 0 auto; }
.fcmp__legend { position: sticky; top: 70px; z-index: 5; display: grid; grid-template-columns: 1fr 116px 116px; align-items: center; gap: 0; background: #0b1c44; color: #fff; border-radius: var(--radius) var(--radius) 0 0; padding: 14px 22px; box-shadow: var(--shadow-sm); }
.fcmp__legend-title { font-weight: 800; font-size: 15px; }
.fcmp__legend-col { text-align: center; font-size: 13px; font-weight: 700; line-height: 1.3; }
.fcmp__legend-col span { display: block; font-size: 11px; font-weight: 600; opacity: .7; }
.fcmp__legend-col--ap { color: #ffb699; }
.fcmp__groups { border: 1px solid var(--line); border-top: none; border-radius: 0 0 var(--radius) var(--radius); overflow: hidden; background: #fff; }
.fcmp__group { border-top: 1px solid var(--line); }
.fcmp__group:first-child { border-top: none; }
.fcmp__group > summary { list-style: none; cursor: pointer; display: flex; align-items: center; gap: 14px; padding: 18px 22px; font-weight: 800; font-size: 16px; color: var(--ink-900); background: var(--bg-soft); transition: background .2s; }
.fcmp__group > summary::-webkit-details-marker { display: none; }
.fcmp__group > summary:hover { background: #eef2fb; }
.fcmp__g-ic { width: 38px; height: 38px; flex: none; border-radius: 10px; display: flex; align-items: center; justify-content: center; background: linear-gradient(135deg, var(--brand-blue), #2a52bf); color: #fff; }
.fcmp__g-ic svg { width: 20px; height: 20px; }
.fcmp__group--ap .fcmp__g-ic { background: linear-gradient(135deg, var(--brand-orange), var(--brand-red)); }
.fcmp__g-meta { margin-left: auto; display: flex; align-items: center; gap: 12px; }
.fcmp__g-count { font-size: 12px; font-weight: 700; color: var(--brand-blue); background: var(--brand-blue-50); padding: 4px 11px; border-radius: 999px; }
.fcmp__group--ap .fcmp__g-count { color: var(--brand-red); background: #fdeee8; }
.fcmp__g-chev { width: 20px; height: 20px; color: var(--ink-300); transition: transform .25s; flex: none; }
.fcmp__group[open] > summary .fcmp__g-chev { transform: rotate(180deg); }
.fcmp__row { display: grid; grid-template-columns: 1fr 116px 116px; align-items: center; gap: 0; padding: 15px 22px; border-top: 1px solid var(--line); }
.fcmp__row-name { font-weight: 700; font-size: 14.5px; color: var(--ink-900); margin: 0 0 3px; }
.fcmp__row-desc { font-size: 13px; line-height: 1.6; color: var(--ink-500); margin: 0; padding-right: 18px; }
.fcmp__cell { display: flex; align-items: center; justify-content: center; }
.fc { display: inline-block; width: 24px; height: 24px; border-radius: 50%; position: relative; }
.fc--ok { background: #e6f6ee; }
.fc--ok::after { content: ""; position: absolute; left: 8px; top: 5px; width: 6px; height: 10px; border: solid #1f9d55; border-width: 0 2.6px 2.6px 0; transform: rotate(45deg); }
.fc--no { background: var(--bg-soft); }
.fc--no::after { content: ""; position: absolute; left: 6px; top: 11px; width: 12px; border-top: 2.6px solid #c2cbdc; }
.fcmp__note { font-size: 12px; color: var(--ink-500); margin: 6px 0 0; padding: 7px 12px; background: var(--bg-soft); border-radius: 8px; display: inline-block; }
@media (max-width: 720px) {
  .fcmp__legend, .fcmp__row { grid-template-columns: 1fr 64px 64px; }
  .fcmp__legend { top: 60px; padding: 12px 16px; }
  .fcmp__legend-col { font-size: 11px; }
  .fcmp__group > summary { padding: 16px; font-size: 15px; }
  .fcmp__row { padding: 14px 16px; }
  .fcmp__row-desc { padding-right: 8px; }
  .fcmp__g-count { display: none; }
}

/* ---------- 價格卡 ---------- */
.tabs { display: flex; flex-wrap: wrap; justify-content: center; gap: 8px; margin-bottom: 40px; }
.tab { display: inline-flex; flex-direction: column; align-items: center; gap: 2px; padding: 12px 22px; border-radius: 12px; border: 1px solid var(--line); background: #fff; cursor: pointer; font-family: inherit; transition: all .2s ease; }
.tab b { font-size: 15px; font-weight: 700; color: var(--ink-900); }
.tab span { font-size: 12px; color: var(--ink-300); }
.tab:hover { border-color: #c9d4ef; }
.tab.is-active { background: linear-gradient(135deg, var(--brand-blue), #20439c); border-color: transparent; }
.tab.is-active b, .tab.is-active span { color: #fff; }

.price-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; align-items: start; }
.price-card { position: relative; overflow: hidden; background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 32px; box-shadow: var(--shadow-sm); }
.price-card--accent { border-color: transparent; box-shadow: var(--shadow); }
.price-card__bar { height: 5px; border-radius: 5px; width: 56px; margin-bottom: 20px; background: var(--brand-blue); }
.price-card__name { font-size: 22px; font-weight: 800; color: var(--ink-900); margin-bottom: 14px; }
.price-card__feats { display: grid; gap: 10px; margin-bottom: 24px; }
.price-card__feat { display: flex; align-items: center; gap: 10px; font-size: 14px; color: var(--ink-700); }
.price-card__feat svg { width: 18px; height: 18px; flex: none; }
.price-card__feat .ok { color: #1f9d55; }
.price-card__feat .x { color: var(--ink-300); }
.price-card__feat.off { color: var(--ink-300); }

.plan { border: 1px solid var(--line); border-radius: var(--radius); padding: 20px; margin-top: 16px; }
.plan__type { font-size: 13px; font-weight: 700; color: var(--brand-blue); margin-bottom: 4px; }
.plan__desc { font-size: 12.5px; color: var(--ink-500); line-height: 1.7; margin-bottom: 14px; }
.plan__row { display: flex; align-items: flex-end; justify-content: space-between; gap: 12px; flex-wrap: wrap; }
.plan__seat { font-size: 13px; color: var(--ink-500); }
.plan__price { display: flex; align-items: baseline; gap: 8px; }
.plan__now { font-size: 26px; font-weight: 800; color: var(--ink-900); }
.plan__now i { font-style: normal; font-size: 16px; margin-right: 2px; }
.plan__old { font-size: 14px; color: var(--ink-300); text-decoration: line-through; }
.plan__btn { margin-top: 16px; }
.price-note { font-size: 13px; color: var(--ink-500); line-height: 1.8; margin-top: 18px; background: var(--bg-soft); border-radius: var(--radius-sm); padding: 14px 16px; }
.price-note a { font-weight: 600; cursor: pointer; }

/* ---------- 下載卡 ---------- */
.dl-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
.dl-card { display: flex; flex-direction: column; align-items: center; text-align: center; background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 40px 32px; box-shadow: var(--shadow-sm); transition: transform .22s ease, box-shadow .22s ease; }
.dl-card:hover { transform: translateY(-5px); box-shadow: var(--shadow); }
.dl-card__os { width: 64px; height: 64px; border-radius: 18px; display: flex; align-items: center; justify-content: center; margin-bottom: 18px; background: var(--brand-blue-50); color: var(--brand-blue); }
.dl-card__os svg { width: 34px; height: 34px; }
.dl-card h3 { font-size: 20px; margin-bottom: 6px; }
.dl-card p { font-size: 14px; color: var(--ink-500); margin: 0 0 22px; }

/* ---------- 資源卡 ---------- */
.res-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.res-card { display: flex; gap: 16px; align-items: flex-start; background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 24px; box-shadow: var(--shadow-sm); transition: transform .2s ease, box-shadow .2s ease; }
.res-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.res-card__ic { width: 46px; height: 46px; flex: none; border-radius: 12px; display: flex; align-items: center; justify-content: center; background: linear-gradient(135deg, var(--brand-blue), #20439c); color: #fff; }
.res-card__ic svg { width: 23px; height: 23px; color: #fff; stroke: #fff; }
.res-card b { display: block; color: var(--ink-900); font-size: 16px; margin-bottom: 4px; }
.res-card span { font-size: 13.5px; color: var(--ink-500); }

/* ---------- 三步流程 ---------- */
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.step { position: relative; background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 30px 28px; box-shadow: var(--shadow-sm); }
.step__num { display: inline-flex; align-items: center; justify-content: center; width: 44px; height: 44px; border-radius: 12px; background: linear-gradient(135deg, var(--brand-blue), #2a52bf); color: #fff; font-weight: 800; font-size: 18px; margin-bottom: 16px; }
.step__en { display: block; font-size: 12px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; color: var(--brand-orange); margin-bottom: 6px; }
.step h3 { font-size: 18px; margin: 0 0 10px; }
.step p { font-size: 14px; line-height: 1.8; color: var(--ink-500); margin: 0; }
@media (max-width: 860px) { .steps { grid-template-columns: 1fr; } }

/* ---------- FAQ ---------- */
.faq { max-width: 820px; margin: 0 auto; display: grid; gap: 14px; }
.faq__item { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; }
.faq__q { width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 16px; padding: 20px 24px; background: none; border: none; cursor: pointer; font-family: inherit; font-size: 16px; font-weight: 600; color: var(--ink-900); text-align: left; }
.faq__q svg { width: 20px; height: 20px; flex: none; color: var(--brand-blue); transition: transform .25s ease; }
.faq__item.is-open .faq__q svg { transform: rotate(45deg); }
.faq__a { max-height: 0; overflow: hidden; transition: max-height .3s ease; }
.faq__item.is-open .faq__a { max-height: 1600px; }
.faq__a p { margin: 0; padding: 0 24px 22px; font-size: 14.5px; line-height: 1.85; color: var(--ink-500); }

/* ---------- 通用 CTA（與首頁一致，跨頁複用）---------- */
.cta { position: relative; overflow: hidden; background: linear-gradient(125deg, #06184a 0%, var(--brand-blue) 55%, #143a99 100%); border-radius: var(--radius-lg); padding: 64px; box-shadow: var(--shadow-lg); display: grid; grid-template-columns: 1.25fr 1fr; gap: 40px; align-items: center; }
.cta::before { content: ""; position: absolute; left: -100px; top: -120px; width: 360px; height: 360px; border-radius: 50%; background: radial-gradient(circle, rgba(244,84,19,.32), transparent 70%); }
.cta::after { content: ""; position: absolute; right: -120px; bottom: -160px; width: 400px; height: 400px; border-radius: 50%; background: radial-gradient(circle, rgba(219,59,43,.26), transparent 70%); }
.cta__main { position: relative; z-index: 1; }
.cta__eyebrow { display: inline-flex; align-items: center; gap: 8px; font-size: 13px; font-weight: 700; letter-spacing: .08em; color: #ffd2bf; margin-bottom: 16px; }
.cta__eyebrow svg { width: 18px; height: 18px; flex: none; }
.cta h2 { color: #fff; font-size: clamp(28px, 3.6vw, 42px); line-height: 1.2; margin-bottom: 14px; }
.cta h2 em { font-style: normal; color: var(--brand-orange); }
.cta p { color: #c8d2ee; font-size: 17px; margin-bottom: 30px; max-width: 460px; }
.cta__actions { display: flex; flex-wrap: wrap; gap: 14px; }
.cta .btn--ghost { background: rgba(255,255,255,.08); color: #fff; border-color: rgba(255,255,255,.32); }
.cta .btn--ghost:hover { background: rgba(255,255,255,.16); border-color: #fff; color: #fff; }
.cta__side { position: relative; z-index: 1; background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.16); border-radius: var(--radius); padding: 28px; backdrop-filter: blur(6px); }
.cta__feat { display: flex; align-items: center; gap: 14px; padding: 12px 0; }
.cta__feat + .cta__feat { border-top: 1px solid rgba(255,255,255,.12); }
.cta__feat-ic { width: 42px; height: 42px; flex: none; border-radius: 11px; display: flex; align-items: center; justify-content: center; background: rgba(244,84,19,.18); border: 1px solid rgba(244,84,19,.4); color: #ffb699; }
.cta__feat-ic svg { width: 21px; height: 21px; }
.cta__feat b { display: block; color: #fff; font-size: 15px; }
.cta__feat span { font-size: 13px; color: #aebbe0; }

/* ---------- 規格卡（系統要求）---------- */
.spec-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.spec { background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 28px; box-shadow: var(--shadow-sm); }
.spec__head { display: flex; align-items: center; gap: 12px; margin-bottom: 18px; }
.spec__ic { width: 44px; height: 44px; flex: none; border-radius: 12px; display: flex; align-items: center; justify-content: center; background: linear-gradient(135deg, var(--brand-blue), #2a52bf); color: #fff; }
.spec__ic svg { width: 23px; height: 23px; }
.spec__head h3 { margin: 0; font-size: 18px; }
.spec dl { margin: 0; display: grid; gap: 12px; }
.spec dl > div { display: grid; grid-template-columns: 110px 1fr; gap: 10px; align-items: start; }
.spec dt { font-size: 13px; font-weight: 700; color: var(--ink-900); }
.spec dd { margin: 0; font-size: 13.5px; line-height: 1.65; color: var(--ink-500); }

/* ---------- 版本列表（更新/舊版本）---------- */
.verlist { display: grid; gap: 14px; max-width: 880px; margin: 0 auto; }
.ver { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 22px 24px; box-shadow: var(--shadow-sm); }
.ver__top { display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 12px; }
.ver__head { display: flex; align-items: center; gap: 14px; }
.ver__icon { width: 44px; height: 44px; flex: none; border-radius: 11px; object-fit: contain; background: #fff; border: 1px solid var(--line); padding: 4px; }
.ver__name { font-size: 17px; font-weight: 800; margin: 0; }
.ver__badge { font-size: 12px; font-weight: 700; color: var(--brand-blue); background: var(--brand-blue-50); padding: 4px 12px; border-radius: 999px; }
.ver p { font-size: 14px; color: var(--ink-500); line-height: 1.7; margin: 12px 0 0; }
.ver__dls { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 14px; }
.ver__dl { display: inline-flex; align-items: center; gap: 7px; font-size: 13.5px; font-weight: 600; color: var(--brand-blue); border: 1px solid var(--line); border-radius: 8px; padding: 8px 14px; transition: border-color .2s, background .2s; }
.ver__dl:hover { border-color: var(--brand-blue); background: var(--brand-blue-50); }
.ver__dl svg { width: 15px; height: 15px; }

/* ---------- 影片網格 ---------- */
.vid-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.vid { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-sm); transition: transform .2s, box-shadow .2s; }
.vid:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.vid__frame { position: relative; padding-top: 56.25%; background: #0b1c44; }
.vid__frame iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }
.vid__body { padding: 18px 20px; }
.vid__tag { font-size: 11.5px; font-weight: 700; letter-spacing: .06em; text-transform: uppercase; color: var(--brand-orange); }
.vid__body h3 { font-size: 16px; margin: 6px 0 8px; }
.vid__body p { font-size: 13.5px; line-height: 1.7; color: var(--ink-500); margin: 0; }
@media (max-width: 980px) { .spec-grid, .vid-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 680px) { .spec-grid, .vid-grid { grid-template-columns: 1fr; } .spec dl > div { grid-template-columns: 96px 1fr; } }

/* ---------- 響應式 ---------- */
@media (max-width: 980px) {
  .fcards, .res-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 880px) {
  .cta { grid-template-columns: 1fr; padding: 40px 28px; gap: 28px; }
  .cta p { max-width: none; }
}
@media (max-width: 560px) {
  .cta { padding: 30px 20px; border-radius: var(--radius); gap: 24px; }
  .cta h2 { font-size: clamp(24px, 7vw, 30px); }
  .cta p { font-size: 15.5px; margin-bottom: 24px; }
  .cta__actions { gap: 12px; }
  .cta__actions .btn { flex: 1 1 100%; justify-content: center; }
  .cta__side { padding: 20px; }
}
@media (max-width: 760px) {
  .feature-row { grid-template-columns: 1fr; gap: 28px; padding: 28px 0; }
  .feature-row--rev .feature-row__media { order: 0; }
  .fcards, .fcards--2, .res-grid, .price-grid, .dl-grid { grid-template-columns: 1fr; }
}
