/* ============================================================
   Feature pages — Axis Projects + Axis Pro
   Shared layout for /features/projects.html and /features/pro.html
   ============================================================ */

/* Pull in landing page base (nav, buttons, footer) via landing.css */
/* These pages load both landing.css and features.css */

/* ── Hero ── */
.ft-hero {
  position: relative;
  padding: 120px 0 80px;
  text-align: center;
  background: #fff;
  overflow: hidden;
}
.ft-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 50% at 50% 0%, rgba(37,99,235,0.06), transparent 70%),
    radial-gradient(ellipse 40% 40% at 80% 20%, rgba(99,102,241,0.04), transparent 70%);
  pointer-events: none;
}
.ft-hero > * { position: relative; z-index: 1; }

.ft-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 14px;
  border-radius: 999px;
  background: #eff6ff;
  color: #DD4A48;
  font-size: 13px;
  font-weight: 500;
  margin-bottom: 24px;
  border: 1px solid rgba(37,99,235,0.12);
}

.ft-hero-h {
  font-size: clamp(2.25rem, 4.5vw, 3.25rem);
  font-weight: 600;
  letter-spacing: -0.035em;
  line-height: 1.08;
  margin: 0 auto 20px;
  max-width: 800px;
  color: #4F091D;
}

.ft-hero-sub {
  font-size: clamp(1rem, 1.4vw, 1.15rem);
  color: #8B6B7A;
  max-width: 600px;
  margin: 0 auto 28px;
  line-height: 1.6;
}

.ft-hero-price {
  font-size: 15px;
  font-weight: 500;
  color: #4F091D;
  margin-bottom: 28px;
}
.ft-hero-price strong {
  font-size: 28px;
  font-weight: 600;
  letter-spacing: -0.02em;
}
.ft-hero-price span {
  color: #8B6B7A;
  font-weight: 400;
}

.ft-hero-ctas {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 16px;
}

.ft-hero-note {
  font-size: 13px;
  color: #94a3b8;
  margin-top: 12px;
}

/* "Everything in X, plus:" pill strip */
.ft-includes {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
  margin-top: 28px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}
.ft-includes-label {
  font-size: 13px;
  font-weight: 500;
  color: #8B6B7A;
  display: flex;
  align-items: center;
  margin-right: 4px;
}
.ft-include-pill {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 5px 12px;
  border-radius: 999px;
  background: #FAF6ED;
  border: 1px solid #E8DFD0;
  font-size: 12px;
  font-weight: 500;
  color: #4F091D;
}
.ft-include-pill svg {
  width: 14px;
  height: 14px;
  color: #047857;
  flex-shrink: 0;
}

/* ── Breadcrumb ── */
.ft-crumb {
  max-width: 1120px;
  margin: 0 auto;
  padding: 20px 24px 0;
  font-size: 13px;
  color: #8B6B7A;
}
.ft-crumb a {
  color: #8B6B7A;
  text-decoration: none;
  transition: color 150ms ease;
}
.ft-crumb a:hover { color: #4F091D; text-decoration: none; }
.ft-crumb span { color: #94a3b8; padding: 0 6px; }
.ft-crumb strong { color: #4F091D; font-weight: 500; }

/* ── Demo sections ── */
.ft-demos { padding: 0; }

.ft-demo-row {
  padding: 100px 0;
  background: #fff;
}
.ft-demo-row:nth-child(even) { background: #FAF6ED; }

.ft-demo-inner {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 24px;
}

.ft-demo-header {
  text-align: center;
  margin-bottom: 48px;
}
.ft-demo-h {
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  font-weight: 600;
  letter-spacing: -0.025em;
  color: #4F091D;
  margin-bottom: 12px;
  line-height: 1.15;
}
.ft-demo-sub {
  font-size: 16px;
  color: #8B6B7A;
  max-width: 560px;
  margin: 0 auto;
  line-height: 1.6;
}

/* Demo container size */
.ft-demo-wrap {
  max-width: 960px;
  margin: 0 auto;
}
.ft-demo-wrap .da-container {
  transition: box-shadow 280ms ease, transform 280ms ease;
}
.ft-demo-wrap .da-container:hover {
  transform: translateY(-4px);
}

/* Full-width demo (for bigger demos) */
.ft-demo-full .ft-demo-wrap { max-width: 1040px; }

/* ── Comparison strip (bottom CTA) ── */
.ft-compare {
  padding: 80px 0;
  background: #FAF6ED;
  text-align: center;
  border-top: 1px solid #F5EEDC;
}
.ft-compare-h {
  font-size: clamp(1.25rem, 2vw, 1.5rem);
  font-weight: 600;
  color: #4F091D;
  margin-bottom: 12px;
  letter-spacing: -0.015em;
}
.ft-compare-sub {
  font-size: 15px;
  color: #8B6B7A;
  margin-bottom: 28px;
}
.ft-compare .lp-btn-primary {
  margin: 0 auto;
}

/* ── Feature comparison table ── */
.ft-pricing {
  padding: 100px 0;
  background: #fff;
}
.ft-pricing-inner {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 24px;
}
.ft-pricing-h {
  text-align: center;
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  font-weight: 600;
  color: #4F091D;
  margin-bottom: 48px;
  letter-spacing: -0.02em;
}

.ft-compare-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  font-size: 14px;
  border: 1px solid #E8DFD0;
  border-radius: 12px;
  overflow: hidden;
}
.ft-compare-table thead th {
  padding: 20px 24px;
  text-align: left;
  font-size: 16px;
  font-weight: 600;
  color: #4F091D;
  background: #FAF6ED;
  border-bottom: 1px solid #E8DFD0;
}
.ft-compare-table thead th:first-child {
  width: 50%;
}
.ft-compare-table thead th:not(:first-child) {
  text-align: center;
}
.ft-compare-table thead .ft-th-price {
  display: block;
  font-size: 13px;
  font-weight: 400;
  color: #8B6B7A;
  margin-top: 2px;
}
.ft-compare-table tbody td {
  padding: 14px 24px;
  border-bottom: 1px solid #F5EEDC;
  color: #5C3D4A;
}
.ft-compare-table tbody tr:last-child td { border-bottom: 0; }
.ft-compare-table tbody td:not(:first-child) {
  text-align: center;
  font-size: 15px;
}
.ft-compare-table .ft-check {
  color: #047857;
  font-weight: 600;
}
.ft-compare-table .ft-dash {
  color: #cbd5e1;
}
.ft-compare-table .ft-cat {
  font-weight: 600;
  color: #4F091D;
  background: #FAF6ED;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 10px 24px;
}
.ft-compare-table tfoot td {
  padding: 20px 24px;
  background: #FAF6ED;
  border-top: 1px solid #E8DFD0;
  text-align: center;
}

/* ── Responsive ── */
@media (max-width: 880px) {
  .ft-hero { padding: 88px 0 56px; }
  .ft-demo-row { padding: 64px 0; }
  .ft-demo-header { margin-bottom: 32px; }
}
@media (max-width: 720px) {
  .ft-hero { padding: 72px 0 40px; }
  .ft-hero-price strong { font-size: 24px; }
  .ft-demo-row { padding: 48px 0; }
  .ft-compare-table { font-size: 13px; }
  .ft-compare-table thead th { padding: 14px 16px; font-size: 14px; }
  .ft-compare-table tbody td { padding: 10px 16px; }
}
@media (max-width: 520px) {
  .ft-includes { flex-direction: column; align-items: center; }
}

/* ============================================================
   Batch 1 marketing additions — single-feature deep-dive pages,
   pricing, and compare. Shared across:
   /features/build-plans.html, /features/inventory.html,
   /features/work-orders.html, /pricing.html, /compare.html
   ============================================================ */

/* ── Capabilities grid ── */
.ft-caps {
  padding: 80px 0;
  background: #FAF6ED;
  border-top: 1px solid #F0E8D6;
  border-bottom: 1px solid #F0E8D6;
}
.ft-caps-head { text-align: center; max-width: 640px; margin: 0 auto 48px; }
.ft-caps-h {
  font-size: clamp(1.6rem, 3vw, 2.1rem);
  font-weight: 600;
  letter-spacing: -0.03em;
  color: #4F091D;
  margin: 0 0 14px;
}
.ft-caps-sub { font-size: 16px; line-height: 1.6; color: #8B6B7A; margin: 0; }
.ft-caps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(248px, 1fr));
  gap: 18px;
}
.ft-cap-card {
  background: #fff;
  border: 1px solid #EBE3D4;
  border-radius: 14px;
  padding: 24px 22px;
  transition: transform .15s ease, box-shadow .15s ease, border-color .15s ease;
}
.ft-cap-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 30px -12px rgba(79,9,29,0.18);
  border-color: #DDCFB8;
}
.ft-cap-ic {
  width: 40px; height: 40px;
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  background: #F5EEDC;
  color: #DD4A48;
  margin-bottom: 14px;
}
.ft-cap-ic svg { width: 20px; height: 20px; }
.ft-cap-card h3 {
  font-size: 16px; font-weight: 600; color: #4F091D;
  margin: 0 0 6px; letter-spacing: -0.01em;
}
.ft-cap-card p { font-size: 13.5px; line-height: 1.55; color: #8B6B7A; margin: 0; }

/* ── Connection callout band ── */
.ft-connect {
  padding: 64px 0;
  background: #4F091D;
  color: #F5EEDC;
}
.ft-connect-inner { max-width: 760px; margin: 0 auto; text-align: center; }
.ft-connect-kicker {
  display: inline-block;
  font-size: 12px; font-weight: 600; text-transform: uppercase;
  letter-spacing: 0.08em; color: #97BFB4; margin-bottom: 14px;
}
.ft-connect h2 {
  font-size: clamp(1.5rem, 2.6vw, 1.9rem);
  font-weight: 600; letter-spacing: -0.025em; line-height: 1.25;
  margin: 0 0 16px; color: #fff;
}
.ft-connect p { font-size: 16px; line-height: 1.65; color: rgba(245,238,220,0.82); margin: 0 0 26px; }
.ft-connect .lp-btn-primary { background: #DD4A48; border-color: #DD4A48; }
.ft-connect .lp-btn-ghost { color: #F5EEDC; border-color: rgba(245,238,220,0.32); }
.ft-connect .lp-btn-ghost:hover { background: rgba(245,238,220,0.08); }

/* ── Related features cross-links ── */
.ft-related { padding: 72px 0; background: #fff; }
.ft-related-h {
  text-align: center; font-size: clamp(1.4rem, 2.4vw, 1.75rem);
  font-weight: 600; letter-spacing: -0.025em; color: #4F091D; margin: 0 0 36px;
}
.ft-related-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 16px;
}
.ft-related-card {
  display: block;
  text-decoration: none;
  border: 1px solid #EBE3D4;
  border-radius: 14px;
  padding: 22px 22px;
  background: #FAF6ED;
  transition: transform .15s ease, box-shadow .15s ease, border-color .15s ease;
}
.ft-related-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 30px -12px rgba(79,9,29,0.18);
  border-color: #DDCFB8;
}
.ft-related-card h3 {
  font-size: 16px; font-weight: 600; color: #4F091D; margin: 0 0 6px;
  display: flex; align-items: center; gap: 7px; letter-spacing: -0.01em;
}
.ft-related-card h3 svg { width: 15px; height: 15px; color: #DD4A48; }
.ft-related-card p { font-size: 13.5px; line-height: 1.55; color: #8B6B7A; margin: 0; }

/* ── Pricing page hero variant ── */
.ft-hero--tight { padding-bottom: 40px; }

/* ── Compare page: vs-cards intro ── */
.ft-vs { padding: 24px 0 8px; }
.ft-vs-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 18px;
}
.ft-vs-card {
  border: 1px solid #EBE3D4;
  border-radius: 14px;
  padding: 26px 24px;
  background: #fff;
}
.ft-vs-card h3 {
  font-size: 17px; font-weight: 600; color: #4F091D; margin: 0 0 4px; letter-spacing: -0.01em;
}
.ft-vs-card .ft-vs-tag {
  font-size: 12px; font-weight: 600; text-transform: uppercase;
  letter-spacing: 0.06em; color: #DD4A48; display: block; margin-bottom: 12px;
}
.ft-vs-card p { font-size: 14px; line-height: 1.6; color: #8B6B7A; margin: 0 0 14px; }
.ft-vs-list { list-style: none; margin: 0; padding: 0; }
.ft-vs-list li {
  position: relative; padding-left: 24px; margin-bottom: 9px;
  font-size: 13.5px; line-height: 1.5; color: #5C3D4A;
}
.ft-vs-list li::before {
  content: '';
  position: absolute; left: 4px; top: 6px;
  width: 9px; height: 9px; border-radius: 50%;
  background: #97BFB4;
}
.ft-vs-list li.no::before { background: #e2cfc0; }

/* ── Section heading used on compare + pricing ── */
.ft-sec-head { text-align: center; max-width: 640px; margin: 0 auto 40px; }
.ft-sec-head .ft-eyebrow {
  display: inline-block; font-size: 12px; font-weight: 600;
  text-transform: uppercase; letter-spacing: 0.08em; color: #DD4A48; margin-bottom: 12px;
}
.ft-sec-head h2 {
  font-size: clamp(1.6rem, 3vw, 2.1rem); font-weight: 600;
  letter-spacing: -0.03em; color: #4F091D; margin: 0 0 12px;
}
.ft-sec-head p { font-size: 16px; line-height: 1.6; color: #8B6B7A; margin: 0; }

.ft-section { padding: 72px 0; }
.ft-section--alt { background: #FAF6ED; border-top: 1px solid #F0E8D6; border-bottom: 1px solid #F0E8D6; }

/* ── Responsive for batch-1 additions ── */
@media (max-width: 1024px) {
  .ft-caps-grid { grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); }
}
@media (max-width: 768px) {
  .ft-caps, .ft-related, .ft-section { padding: 56px 0; }
  .ft-connect { padding: 48px 0; }
}
@media (max-width: 520px) {
  .ft-caps-grid, .ft-related-grid, .ft-vs-grid { grid-template-columns: 1fr; }
  .ft-cap-card, .ft-vs-card { padding: 20px 18px; }
}
