/*
 * E House Movers - furniture-movers page styles
 * Page-unique sections only. Shared .vm-* sections live in shared-sections.css.
 */

.fm-wrap {
  max-width: 1240px;
  margin: 0 auto;
  padding: 80px 20px;
  font-family: 'SF Pro Regular', sans-serif;
}

.fm-header {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 70px;
}

.fm-label {
  font-family: 'LemonmilkReg', sans-serif;
  font-size: 12px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: #c9a656;
  margin: 0 0 14px;
}

.fm-title {
  font-family: 'LemonmilkReg', sans-serif;
  font-size: 36px;
  color: #1a1a1a;
  margin: 0 0 16px;
  line-height: 1.2;
}

.fm-title span { color: #90191c; }

.fm-line {
  width: 50px;
  height: 3px;
  background: #c9a656;
  border-radius: 2px;
  margin: 0 auto 20px;
}

.fm-intro {
  font-size: 16px;
  line-height: 1.75;
  color: #555;
  margin: 0;
}

/* Service blocks */
.fm-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
  align-items: center;
  margin-bottom: 80px;
}

.fm-block:last-child { margin-bottom: 0; }

.fm-block--alt .fm-block-img { order: 2; }
.fm-block--alt .fm-block-content { order: 1; }

/* Divider */
.fm-divider {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 80px;
}

.fm-divider::before,
.fm-divider::after {
  content: '';
  flex: 1;
  height: 1px;
}

.fm-divider::before { background: linear-gradient(to right, transparent, #e0d0d0); }
.fm-divider::after { background: linear-gradient(to right, #e0d0d0, transparent); }

.fm-divider-dot {
  width: 8px;
  height: 8px;
  background: #c9a656;
  border-radius: 50%;
  flex-shrink: 0;
}

/* Image column */
.fm-block-img { position: relative; }

/* Decorative offset bg behind image */
.fm-block-img::before {
  content: '';
  position: absolute;
  bottom: -18px;
  left: -18px;
  right: 18px;
  top: 18px;
  background: rgba(144,25,28,0.06);
  border-radius: 14px;
  z-index: 0;
}

.fm-block--alt .fm-block-img::before {
  left: 18px;
  right: -18px;
}

.fm-block-img img {
  width: 100%;
  height: 480px;
  object-fit: cover;
  border-radius: 12px;
  display: block;
  position: relative;
  z-index: 1;
  box-shadow: 0 20px 50px rgba(0,0,0,0.1);
}

/* Content column */
.fm-block-content { position: relative; }

/* Large faded mode number watermark */
.fm-block-num {
  font-family: 'LemonmilkReg', sans-serif;
  font-size: 130px;
  color: rgba(144,25,28,0.04);
  position: absolute;
  top: -30px;
  right: -10px;
  line-height: 1;
  pointer-events: none;
  user-select: none;
  z-index: 0;
}

.fm-block--alt .fm-block-num {
  right: auto;
  left: -10px;
}

.fm-block-inner { position: relative; z-index: 1; }

.fm-mode-tag {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: 'LemonmilkReg', sans-serif;
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #c9a656;
  margin: 0 0 16px;
}

.fm-mode-tag::before {
  content: '';
  width: 28px;
  height: 2px;
  background: #c9a656;
  display: block;
}

.fm-block-title {
  font-family: 'LemonmilkReg', sans-serif;
  font-size: 30px;
  color: #1a1a1a;
  margin: 0 0 18px;
  line-height: 1.2;
}

.fm-block-title span { color: #90191c; }

.fm-price-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(201,166,86,0.1);
  border: 1px solid rgba(201,166,86,0.35);
  border-radius: 50px;
  padding: 7px 18px;
  font-size: 13px;
  color: #6b5220;
  margin-bottom: 20px;
  flex-wrap: wrap;
}

.fm-price-pill strong {
  font-family: 'LemonmilkReg', sans-serif;
  font-size: 13px;
  color: #90191c;
}

.fm-block-desc {
  font-size: 15.5px;
  line-height: 1.75;
  color: #555;
  margin: 0 0 24px;
}

.fm-features {
  list-style: none;
  padding: 0;
  margin: 0 0 32px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px 20px;
}

.fm-features li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  color: #444;
  line-height: 1.5;
}

.fm-feat-icon {
  width: 20px;
  height: 20px;
  background: #fdf2f2;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 1px;
}

.fm-feat-icon svg { stroke: #90191c; }

.fm-ctas {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.fm-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #90191c;
  color: #fff;
  padding: 14px 28px;
  border-radius: 6px;
  text-decoration: none;
  font-family: 'LemonmilkReg', sans-serif;
  font-size: 13px;
  letter-spacing: 0.5px;
  transition: all 0.3s ease;
  border: 2px solid #90191c;
}

.fm-btn:hover {
  background: #7a1518;
  border-color: #7a1518;
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(144,25,28,0.28);
}

.fm-btn--outline {
  background: transparent;
  color: #90191c;
}

.fm-btn--outline:hover {
  background: #90191c;
  color: #fff;
}

/* Scroll reveal */
.fm-reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}

.fm-reveal.fm-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 960px) {
  .fm-block {
    grid-template-columns: 1fr;
    gap: 36px;
    margin-bottom: 60px;
  }
  .fm-block--alt .fm-block-img { order: 0; }
  .fm-block--alt .fm-block-content { order: 0; }
  .fm-block-img::before { display: none; }
  .fm-block-title { font-size: 26px; }
  .fm-block-img img { height: 340px; }
  .fm-features { grid-template-columns: 1fr; }
  .fm-block-num { font-size: 90px; }
  .fm-divider { margin-bottom: 60px; }
}

@media (max-width: 600px) {
  .fm-wrap { padding: 50px 16px; }
  .fm-title { font-size: 26px; }
  .fm-header { margin-bottom: 50px; }
  .fm-block-title { font-size: 22px; }
  .fm-block-img img { height: 260px; }
  .fm-block-num { display: none; }
  .fm-ctas { flex-direction: column; }
  .fm-btn { justify-content: center; width: 100%; }
}

.fm-moves {
  max-width: 1240px;
  margin: 0 auto;
  padding: 70px 20px;
  font-family: 'SF Pro Regular', sans-serif;
}

.fm-moves-header {
  text-align: center;
  max-width: 820px;
  margin: 0 auto 50px;
}

.fm-moves-title {
  font-family: 'LemonmilkReg', sans-serif;
  font-size: 34px;
  color: #1a1a1a;
  margin: 0 0 20px;
  line-height: 1.2;
}

.fm-moves-title span { color: #90191c; }

.fm-moves-line {
  width: 50px;
  height: 3px;
  background: #c9a656;
  margin: 0 auto 20px;
  border-radius: 2px;
}

.fm-moves-desc {
  font-size: 16px;
  line-height: 1.75;
  color: #555;
  margin: 0 0 10px;
}

/* 4-column grid for 8 cards (2 clean rows) */
.fm-moves-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
  margin-bottom: 46px;
}

.fm-move-card {
  background: #fff;
  border-radius: 12px;
  padding: 30px 26px;
  border: 1px solid #eee;
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}

.fm-move-card:hover {
  background: #90191c;
  border-color: #90191c;
  transform: translateY(-6px);
  box-shadow: 0 16px 40px rgba(144,25,28,0.2);
}

.fm-move-card:hover .fm-move-icon { background: rgba(255,255,255,0.15); }
.fm-move-card:hover .fm-move-icon svg { stroke: #c9a656; }
.fm-move-card:hover .fm-move-name { color: #fff; }
.fm-move-card:hover .fm-move-text { color: rgba(255,255,255,0.85); }

.fm-move-num {
  font-family: 'LemonmilkReg', sans-serif;
  font-size: 40px;
  color: #f2eded;
  position: absolute;
  top: 14px;
  right: 20px;
  line-height: 1;
  transition: color 0.4s ease;
}

.fm-move-card:hover .fm-move-num { color: rgba(255,255,255,0.1); }

.fm-move-icon {
  width: 50px;
  height: 50px;
  background: #fdf2f2;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  transition: background 0.4s ease;
}

.fm-move-icon svg {
  stroke: #90191c;
  transition: stroke 0.4s ease;
}

.fm-move-name {
  font-family: 'LemonmilkReg', sans-serif;
  font-size: 14px !important;
  color: #1a1a1a;
  margin: 0 0 12px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  line-height: 1.3;
  transition: color 0.4s ease;
}

.fm-move-text {
  font-size: 13.5px;
  line-height: 1.7;
  color: #666;
  margin: 0;
  transition: color 0.4s ease;
}

.fm-move-text a {
  color: #c9a656;
  text-decoration: none;
  transition: color 0.3s ease;
}

.fm-move-card:hover .fm-move-text a { color: #f0d080; }

/* CTAs */
.fm-moves-ctas {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}

.fm-moves-btn-primary {
  display: inline-flex;
  align-items: center;
  background: #90191c;
  color: #fff;
  padding: 15px 32px;
  border-radius: 6px;
  text-decoration: none;
  font-family: 'LemonmilkReg', sans-serif;
  font-size: 13px;
  letter-spacing: 0.5px;
  transition: all 0.3s ease;
  border: 2px solid #90191c;
}

.fm-moves-btn-primary:hover {
  background: #7a1518;
  border-color: #7a1518;
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(144,25,28,0.25);
}

.fm-moves-btn-secondary {
  display: inline-flex;
  align-items: center;
  background: transparent;
  color: #90191c;
  padding: 15px 32px;
  border-radius: 6px;
  text-decoration: none;
  font-family: 'LemonmilkReg', sans-serif;
  font-size: 13px;
  letter-spacing: 0.5px;
  transition: all 0.3s ease;
  border: 2px solid #90191c;
}

.fm-moves-btn-secondary:hover {
  background: #90191c;
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(144,25,28,0.25);
}

@media (max-width: 1100px) {
  .fm-moves-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 960px) {
  .fm-moves-grid { grid-template-columns: repeat(2, 1fr); }
  .fm-moves-title { font-size: 28px; }
}

@media (max-width: 600px) {
  .fm-moves { padding: 50px 16px; }
  .fm-moves-grid { grid-template-columns: 1fr; }
  .fm-moves-title { font-size: 24px; }
  .fm-move-card { padding: 26px 22px; }
  .fm-moves-ctas { flex-direction: column; align-items: center; }
  .fm-moves-btn-primary, .fm-moves-btn-secondary { width: 100%; justify-content: center; }
}

.fmp-wrap {
  max-width: 1240px;
  margin: 0 auto;
  padding: 80px 20px;
  font-family: 'SF Pro Regular', sans-serif;
}

.fmp-header {
  text-align: center;
  max-width: 780px;
  margin: 0 auto 50px;
}

.fmp-label {
  font-family: 'LemonmilkReg', sans-serif;
  font-size: 12px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: #c9a656;
  margin: 0 0 14px;
}

.fmp-title {
  font-family: 'LemonmilkReg', sans-serif;
  font-size: 34px;
  color: #1a1a1a;
  margin: 0 0 16px;
  line-height: 1.2;
}

.fmp-title span { color: #90191c; }

.fmp-line {
  width: 50px;
  height: 3px;
  background: #c9a656;
  border-radius: 2px;
  margin: 0 auto 20px;
}

.fmp-desc {
  font-size: 16px;
  line-height: 1.75;
  color: #555;
  margin: 0;
}

/* Table */
.fmp-table-wrap {
  overflow-x: auto;
  border-radius: 14px;
  box-shadow: 0 4px 32px rgba(0,0,0,0.07);
  margin-bottom: 30px;
  -webkit-overflow-scrolling: touch;
}

.fmp-table {
  width: 100%;
  border-collapse: collapse;
  background: #fff;
  min-width: 620px;
}

.fmp-table thead tr { background: #90191c; }

.fmp-table thead th {
  font-family: 'LemonmilkReg', sans-serif;
  font-size: 11px;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: #fff;
  padding: 20px 26px;
  text-align: left;
  font-weight: normal;
  white-space: nowrap;
}

/* Within Dubai column header highlighted */
.fmp-table thead th:nth-child(3) {
  background: rgba(0,0,0,0.18);
}

.fmp-table thead th:nth-child(3) .fmp-th-sub {
  display: block;
  font-family: 'SF Pro Regular', sans-serif;
  font-size: 9px;
  letter-spacing: 1.5px;
  color: #c9a656;
  margin-top: 3px;
  text-transform: uppercase;
}

.fmp-table tbody tr {
  border-bottom: 1px solid #f2eded;
  transition: background 0.25s ease;
}

.fmp-table tbody tr:last-child { border-bottom: none; }

.fmp-table tbody tr:hover { background: #fdf8f8; }

.fmp-table tbody td {
  padding: 18px 26px;
  font-size: 14px;
  color: #555;
  vertical-align: middle;
}

/* Service type - heading style */
.fmp-table tbody td:first-child {
  font-family: 'LemonmilkReg', sans-serif;
  font-size: 12px;
  color: #1a1a1a;
  text-transform: uppercase;
  letter-spacing: 0.4px;
  white-space: nowrap;
}

/* Typical items - muted */
.fmp-table tbody td:nth-child(2) {
  color: #999;
  font-size: 13px;
}

/* Within Dubai price - red, highlighted column */
.fmp-table tbody td:nth-child(3) {
  font-family: 'LemonmilkReg', sans-serif;
  font-size: 13px;
  color: #90191c;
  background: rgba(144,25,28,0.025);
  white-space: nowrap;
}

.fmp-table tbody tr:hover td:nth-child(3) {
  background: rgba(144,25,28,0.055);
}

/* Cross-emirate price */
.fmp-table tbody td:nth-child(4) {
  font-family: 'LemonmilkReg', sans-serif;
  font-size: 13px;
  color: #666;
  white-space: nowrap;
}

/* Mobile scroll hint */
.fmp-scroll-hint {
  display: none;
  text-align: center;
  font-size: 12px;
  color: #aaa;
  margin-bottom: 18px;
  letter-spacing: 0.5px;
}

/* Included / Excluded grid */
.fmp-ie-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
  margin-bottom: 36px;
}

.fmp-ie-box {
  background: #fff;
  border-radius: 12px;
  padding: 32px 30px;
  border: 1px solid #eee;
}

.fmp-ie-heading {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'LemonmilkReg', sans-serif;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin: 0 0 22px;
}

.fmp-ie-heading::before {
  content: '';
  width: 26px;
  height: 2px;
  display: block;
  flex-shrink: 0;
}

.fmp-ie-heading--in { color: #90191c; }
.fmp-ie-heading--in::before { background: #90191c; }

.fmp-ie-heading--ex { color: #888; }
.fmp-ie-heading--ex::before { background: #ccc; }

.fmp-ie-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 13px;
}

.fmp-ie-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 14px;
  color: #555;
  line-height: 1.5;
}

.fmp-ie-ico {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 1px;
}

.fmp-ie-ico--check { background: #fdf2f2; }
.fmp-ie-ico--check svg { stroke: #90191c; }

.fmp-ie-ico--minus { background: #f5f5f5; }
.fmp-ie-ico--minus svg { stroke: #aaa; }

/* Disclaimer */
.fmp-note {
  background: #fdf8f5;
  border: 1px solid #edddd0;
  border-left: 4px solid #c9a656;
  border-radius: 10px;
  padding: 28px 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  flex-wrap: wrap;
}

.fmp-note-text { margin: 0; }

.fmp-note-text strong {
  display: block;
  font-family: 'LemonmilkReg', sans-serif;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  color: #1a1a1a;
  margin-bottom: 8px;
}

.fmp-note-text span {
  font-size: 14px;
  line-height: 1.7;
  color: #666;
}

.fmp-note-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #90191c;
  color: #fff;
  padding: 13px 26px;
  border-radius: 6px;
  text-decoration: none;
  font-family: 'LemonmilkReg', sans-serif;
  font-size: 12px;
  letter-spacing: 0.5px;
  transition: all 0.3s ease;
  border: 2px solid #90191c;
  white-space: nowrap;
  flex-shrink: 0;
}

.fmp-note-btn:hover {
  background: #7a1518;
  border-color: #7a1518;
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(144,25,28,0.28);
}

@media (max-width: 960px) {
  .fmp-ie-grid { grid-template-columns: 1fr; }
  .fmp-title { font-size: 28px; }
  .fmp-note { flex-direction: column; align-items: flex-start; }
  .fmp-scroll-hint { display: block; }
}

@media (max-width: 600px) {
  .fmp-wrap { padding: 50px 16px; }
  .fmp-title { font-size: 24px; }
  .fmp-ie-box { padding: 24px 20px; }
  .fmp-note { padding: 22px 20px; }
  .fmp-note-btn { width: 100%; justify-content: center; }
}

.fmpr-wrap {
  max-width: 1240px;
  margin: 0 auto;
  padding: 80px 20px 70px;
  font-family: 'SF Pro Regular', sans-serif;
}

.fmpr-header {
  text-align: center;
  max-width: 820px;
  margin: 0 auto 64px;
}

.fmpr-label {
  font-family: 'LemonmilkReg', sans-serif;
  font-size: 12px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: #c9a656;
  margin: 0 0 14px;
}

.fmpr-title {
  font-family: 'LemonmilkReg', sans-serif;
  font-size: 34px;
  color: #1a1a1a;
  margin: 0 0 16px;
  line-height: 1.2;
}

.fmpr-title span { color: #90191c; }

.fmpr-line {
  width: 50px;
  height: 3px;
  background: #c9a656;
  margin: 0 auto 20px;
  border-radius: 2px;
}

.fmpr-desc {
  font-size: 16px;
  line-height: 1.75;
  color: #555;
  margin: 0;
}

/* Timeline grid */
.fmpr-timeline {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0 70px;
  margin-bottom: 60px;
}

/* Center vertical line */
.fmpr-timeline::before {
  content: '';
  position: absolute;
  left: 50%;
  top: 26px;
  bottom: 26px;
  width: 3px;
  background: linear-gradient(to bottom, #c9a656 0%, #90191c 100%);
  transform: translateX(-50%);
  z-index: 0;
  border-radius: 3px;
}

.fmpr-step {
  position: relative;
  padding-bottom: 52px;
}

.fmpr-step:last-of-type { padding-bottom: 0; }

.fmpr-step--left {
  grid-column: 1;
  text-align: right;
  padding-right: 52px;
}

.fmpr-step--right {
  grid-column: 2;
  text-align: left;
  padding-left: 52px;
}

.fmpr-spacer { padding-bottom: 52px; }

/* Timeline dot */
.fmpr-dot {
  position: absolute;
  top: 8px;
  width: 52px;
  height: 52px;
  background: #fff;
  border: 3px solid #c9a656;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
  transition: all 0.4s ease;
}

.fmpr-dot::after {
  content: '';
  position: absolute;
  width: 70px;
  height: 70px;
  border: 1.5px solid rgba(201,166,86,0.35);
  border-radius: 50%;
  transition: all 0.4s ease;
}

.fmpr-dot span {
  font-family: 'LemonmilkReg', sans-serif;
  font-size: 15px;
  color: #90191c;
  transition: color 0.4s ease;
  line-height: 1;
}

.fmpr-step--left .fmpr-dot { right: -26px; }
.fmpr-step--right .fmpr-dot { left: -26px; }

.fmpr-step:hover .fmpr-dot {
  background: #90191c;
  border-color: #90191c;
  box-shadow: 0 0 0 6px rgba(144,25,28,0.1);
}

.fmpr-step:hover .fmpr-dot::after {
  border-color: rgba(144,25,28,0.2);
  width: 74px;
  height: 74px;
}

.fmpr-step:hover .fmpr-dot span { color: #fff; }

/* Card */
.fmpr-card {
  background: #fff;
  border-radius: 12px;
  padding: 30px 28px;
  border: 1px solid #ede5e5;
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}

.fmpr-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: #c9a656;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
  border-radius: 3px 3px 0 0;
}

.fmpr-step:hover .fmpr-card {
  box-shadow: 0 12px 36px rgba(144,25,28,0.09);
  border-color: #ddd0d0;
  background: linear-gradient(145deg, #fff 0%, #fdf9f9 100%);
}

.fmpr-step:hover .fmpr-card::before { transform: scaleX(1); }

.fmpr-card-num {
  font-family: 'LemonmilkReg', sans-serif;
  font-size: 90px;
  color: rgba(144,25,28,0.04);
  position: absolute;
  bottom: -8px;
  right: 12px;
  line-height: 1;
  pointer-events: none;
  user-select: none;
  transition: color 0.4s ease;
}

.fmpr-step--right .fmpr-card-num { right: auto; left: 12px; }

.fmpr-step:hover .fmpr-card-num { color: rgba(144,25,28,0.07); }

.fmpr-card-inner { position: relative; z-index: 1; }

.fmpr-step-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'LemonmilkReg', sans-serif;
  font-size: 10px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #c9a656;
  margin: 0 0 10px;
}

.fmpr-step-label::before {
  content: '';
  width: 20px;
  height: 1.5px;
  background: #c9a656;
  display: block;
  flex-shrink: 0;
}

.fmpr-step--left .fmpr-step-label { flex-direction: row-reverse; }
.fmpr-step--right .fmpr-step-label { flex-direction: row; }

.fmpr-step--left .fmpr-card-inner { display: flex; flex-direction: column; align-items: flex-end; }
.fmpr-step--left .fmpr-step-title,
.fmpr-step--left .fmpr-step-text { text-align: right; }

.fmpr-step-title {
  font-family: 'LemonmilkReg', sans-serif;
  font-size: 15px !important;
  color: #1a1a1a;
  margin: 0 0 10px;
  text-transform: uppercase;
  letter-spacing: 0.4px;
  line-height: 1.3;
  transition: color 0.4s ease;
}

.fmpr-step:hover .fmpr-step-title { color: #90191c; }

.fmpr-step-text {
  font-size: 14px;
  line-height: 1.75;
  color: #666;
  margin: 0;
  max-width: 400px;
}

.fmpr-step--left .fmpr-step-text { margin-left: auto; }

/* CTAs */
.fmpr-ctas {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}

.fmpr-btn-primary {
  display: inline-flex;
  align-items: center;
  background: #90191c;
  color: #fff;
  padding: 15px 32px;
  border-radius: 6px;
  text-decoration: none;
  font-family: 'LemonmilkReg', sans-serif;
  font-size: 13px;
  letter-spacing: 0.5px;
  transition: all 0.3s ease;
  border: 2px solid #90191c;
}

.fmpr-btn-primary:hover {
  background: #7a1518;
  border-color: #7a1518;
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(144,25,28,0.25);
}

.fmpr-btn-secondary {
  display: inline-flex;
  align-items: center;
  background: transparent;
  color: #90191c;
  padding: 15px 32px;
  border-radius: 6px;
  text-decoration: none;
  font-family: 'LemonmilkReg', sans-serif;
  font-size: 13px;
  letter-spacing: 0.5px;
  transition: all 0.3s ease;
  border: 2px solid #90191c;
}

.fmpr-btn-secondary:hover {
  background: #90191c;
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(144,25,28,0.25);
}

/* Reveal classes — opacity/transform only applied when JS adds fmpr-js-ready to wrapper */
/* On mobile, fmpr-js-ready is never added, so elements are always visible */
.fmpr-js-ready .fmpr-reveal-left {
  opacity: 0;
  transform: translateX(-32px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}

.fmpr-js-ready .fmpr-reveal-right {
  opacity: 0;
  transform: translateX(32px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}

.fmpr-js-ready .fmpr-reveal-up {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fmpr-visible {
  opacity: 1 !important;
  transform: translate(0, 0) !important;
}

@media (max-width: 768px) {
  .fmpr-timeline {
    display: flex;
    flex-direction: column;
    padding-left: 40px;
    margin-bottom: 48px;
  }
  .fmpr-timeline::before {
    left: 18px;
    transform: none;
    top: 0;
    bottom: 0;
  }
  .fmpr-step--left,
  .fmpr-step--right {
    text-align: left;
    padding-left: 44px;
    padding-right: 0;
    padding-bottom: 36px;
  }
  .fmpr-step--left .fmpr-dot,
  .fmpr-step--right .fmpr-dot { left: -22px; right: auto; }
  .fmpr-step--left .fmpr-card-inner { display: block; align-items: unset; }
  .fmpr-step--left .fmpr-step-title,
  .fmpr-step--left .fmpr-step-text { text-align: left; }
  .fmpr-step--left .fmpr-step-text { margin-left: 0; }
  .fmpr-step--left .fmpr-step-label { flex-direction: row; }
  .fmpr-spacer { display: none; }
  .fmpr-title { font-size: 28px; }
}

@media (max-width: 600px) {
  .fmpr-wrap { padding: 50px 16px; }
  .fmpr-title { font-size: 24px; }
  .fmpr-card { padding: 24px 20px; }
  .fmpr-card-num { font-size: 70px; }
  .fmpr-ctas { flex-direction: column; align-items: center; }
  .fmpr-btn-primary, .fmpr-btn-secondary { width: 100%; justify-content: center; }
}

.fmcv-wrap {
  max-width: 1240px;
  margin: 0 auto;
  padding: 80px 20px;
  font-family: 'SF Pro Regular', sans-serif;
}

.fmcv-header {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 50px;
}

.fmcv-label {
  font-family: 'LemonmilkReg', sans-serif;
  font-size: 12px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: #c9a656;
  margin: 0 0 14px;
}

.fmcv-title {
  font-family: 'LemonmilkReg', sans-serif;
  font-size: 34px;
  color: #1a1a1a;
  margin: 0 0 16px;
  line-height: 1.2;
}

.fmcv-title span { color: #90191c; }

.fmcv-line {
  width: 50px;
  height: 3px;
  background: #c9a656;
  border-radius: 2px;
  margin: 0 auto 20px;
}

.fmcv-desc {
  font-size: 16px;
  line-height: 1.75;
  color: #555;
  margin: 0;
}

.fmcv-desc strong {
  font-family: 'LemonmilkReg', sans-serif;
  font-size: 15px;
  color: #90191c;
}

/* Gap callout strip */
.fmcv-callout {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  background: #fff;
  border-radius: 12px;
  border: 1px solid #ede5e5;
  overflow: hidden;
  margin-bottom: 46px;
}

.fmcv-callout-item {
  padding: 24px 22px;
  text-align: center;
  border-right: 1px solid #ede5e5;
  position: relative;
}

.fmcv-callout-item:last-child { border-right: none; }

.fmcv-callout-item::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 2px;
  background: #c9a656;
  transition: width 0.4s ease;
}

.fmcv-callout-item:hover::after { width: 40px; }

.fmcv-callout-num {
  font-family: 'LemonmilkReg', sans-serif;
  font-size: 22px;
  color: #90191c;
  display: block;
  margin-bottom: 6px;
  line-height: 1;
}

.fmcv-callout-text {
  font-size: 12.5px;
  color: #888;
  line-height: 1.5;
  margin: 0;
}

/* Comparison wrapper */
.fmcv-compare {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: start;
  margin-bottom: 0;
}

/* Vertical divider line */
.fmcv-compare::before {
  content: '';
  position: absolute;
  top: 60px;
  bottom: 60px;
  left: 50%;
  width: 1px;
  background: linear-gradient(to bottom, transparent, #e0d0d0 20%, #e0d0d0 80%, transparent);
  transform: translateX(-50%);
  z-index: 0;
}

/* VS badge */
.fmcv-vs {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: #fff;
  border: 2px solid #c9a656;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'LemonmilkReg', sans-serif;
  font-size: 12px;
  color: #90191c;
  z-index: 10;
  box-shadow: 0 4px 20px rgba(0,0,0,0.09);
  flex-shrink: 0;
}

/* Cards */
.fmcv-card {
  border-radius: 14px;
  overflow: hidden;
  position: relative;
  z-index: 1;
}

/* Licensed card */
.fmcv-card--licensed {
  background: #fff;
  border: 1px solid #e8d8d8;
  box-shadow: 0 8px 40px rgba(144,25,28,0.08);
  border-top: 4px solid #c9a656;
}

/* Cheap card */
.fmcv-card--cheap {
  background: #fafafa;
  border: 1px solid #e8e8e8;
  border-top: 4px solid #ccc;
}

/* Card headers */
.fmcv-card-head {
  padding: 26px 30px 22px;
}

.fmcv-card--licensed .fmcv-card-head {
  background: #fff;
  border-bottom: 1px solid #f0e8e8;
}

.fmcv-card--cheap .fmcv-card-head {
  background: #f5f5f5;
  border-bottom: 1px solid #e8e8e8;
}

/* Header pill badge */
.fmcv-head-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  border-radius: 50px;
  padding: 4px 12px;
  font-family: 'LemonmilkReg', sans-serif;
  font-size: 10px;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.fmcv-card--licensed .fmcv-head-pill {
  background: rgba(144,25,28,0.08);
  color: #90191c;
}

.fmcv-card--licensed .fmcv-head-pill::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #90191c;
  flex-shrink: 0;
}

.fmcv-card--cheap .fmcv-head-pill {
  background: #ebebeb;
  color: #888;
}

.fmcv-card--cheap .fmcv-head-pill::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #bbb;
  flex-shrink: 0;
}

.fmcv-card-title {
  font-family: 'LemonmilkReg', sans-serif;
  font-size: 17px !important;
  margin: 0 0 6px;
  text-transform: uppercase;
  letter-spacing: 0.3px;
  line-height: 1.2;
}

.fmcv-card--licensed .fmcv-card-title { color: #1a1a1a; }
.fmcv-card--cheap .fmcv-card-title { color: #666; }

.fmcv-card-sub {
  font-size: 13px;
  margin: 0;
}

.fmcv-card--licensed .fmcv-card-sub { color: #c9a656; }
.fmcv-card--cheap .fmcv-card-sub { color: #aaa; }

/* List body */
.fmcv-card-body { padding: 10px 0 26px; }

.fmcv-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.fmcv-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 13px 30px;
  border-bottom: 1px solid transparent;
  transition: background 0.25s ease;
}

.fmcv-card--licensed .fmcv-item {
  flex-direction: row-reverse;
  text-align: right;
  border-bottom-color: #f5eded;
}

.fmcv-card--cheap .fmcv-item {
  border-bottom-color: #efefef;
}

.fmcv-item:last-child { border-bottom: none; }

.fmcv-card--licensed .fmcv-item:hover { background: #fdf9f9; }
.fmcv-card--cheap .fmcv-item:hover { background: #f5f5f5; }

.fmcv-ico {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.fmcv-ico--check { background: #fdf2f2; }
.fmcv-ico--check svg { stroke: #90191c; }

.fmcv-ico--x { background: #f0f0f0; }
.fmcv-ico--x svg { stroke: #bbb; }

.fmcv-item-text {
  font-size: 14px;
  line-height: 1.5;
}

.fmcv-card--licensed .fmcv-item-text { color: #333; }
.fmcv-card--cheap .fmcv-item-text { color: #999; }

/* CTA inside licensed card */
.fmcv-card-cta {
  padding: 0 30px 28px;
}

.fmcv-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #90191c;
  color: #fff;
  padding: 14px 28px;
  border-radius: 6px;
  text-decoration: none;
  font-family: 'LemonmilkReg', sans-serif;
  font-size: 13px;
  letter-spacing: 0.5px;
  transition: all 0.3s ease;
  border: 2px solid #90191c;
  width: 100%;
  justify-content: center;
}

.fmcv-cta-btn:hover {
  background: #7a1518;
  border-color: #7a1518;
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(144,25,28,0.28);
}

/* Scroll reveal */
.fmcv-reveal-left {
  opacity: 0;
  transform: translateX(-28px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}

.fmcv-reveal-right {
  opacity: 0;
  transform: translateX(28px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}

.fmcv-reveal-up {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fmcv-visible {
  opacity: 1 !important;
  transform: translate(0) !important;
}

@media (max-width: 960px) {
  .fmcv-callout { grid-template-columns: repeat(2, 1fr); }
  .fmcv-callout-item:nth-child(2) { border-right: none; }
  .fmcv-callout-item:nth-child(3) { border-top: 1px solid #ede5e5; }
  .fmcv-callout-item:nth-child(4) { border-top: 1px solid #ede5e5; border-right: none; }
  .fmcv-title { font-size: 28px; }
}

@media (max-width: 768px) {
  .fmcv-compare {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .fmcv-compare::before { display: none; }
  .fmcv-vs { display: none; }
  .fmcv-card--licensed .fmcv-item {
    flex-direction: row;
    text-align: left;
  }
  .fmcv-reveal-left,
  .fmcv-reveal-right {
    transform: translateY(20px);
  }
}

@media (max-width: 600px) {
  .fmcv-wrap { padding: 50px 16px; }
  .fmcv-title { font-size: 24px; }
  .fmcv-callout { grid-template-columns: 1fr 1fr; }
  .fmcv-callout-num { font-size: 18px; }
  .fmcv-card-head { padding: 22px 20px 18px; }
  .fmcv-item { padding: 12px 20px; }
  .fmcv-card-cta { padding: 0 20px 22px; }
}

.fmt-wrap {
  max-width: 1240px;
  margin: 0 auto;
  padding: 80px 20px;
  font-family: 'SF Pro Regular', sans-serif;
}

/* Split header: heading left, description right */
.fmt-header {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  margin-bottom: 50px;
}

.fmt-header-left {}

.fmt-label {
  font-family: 'LemonmilkReg', sans-serif;
  font-size: 12px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: #c9a656;
  margin: 0 0 14px;
}

.fmt-title {
  font-family: 'LemonmilkReg', sans-serif;
  font-size: 34px;
  color: #1a1a1a;
  margin: 0;
  line-height: 1.2;
}

.fmt-title span { color: #90191c; }

.fmt-line {
  width: 50px;
  height: 3px;
  background: #c9a656;
  border-radius: 2px;
  margin: 20px 0 0;
}

.fmt-header-right {}

.fmt-desc {
  font-size: 16px;
  line-height: 1.75;
  color: #555;
  margin: 0 0 22px;
}

/* "Request documentation" note inside header */
.fmt-doc-note {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(201,166,86,0.1);
  border: 1px solid rgba(201,166,86,0.35);
  border-radius: 8px;
  padding: 10px 16px;
  font-size: 13px;
  color: #6b5220;
  line-height: 1.5;
}

.fmt-doc-note svg { stroke: #c9a656; flex-shrink: 0; }

/* Credentials container */
.fmt-rows {
  background: #fff;
  border-radius: 14px;
  border: 1px solid #ede5e5;
  overflow: hidden;
  box-shadow: 0 4px 30px rgba(0,0,0,0.05);
}

/* Each credential row */
.fmt-row {
  display: grid;
  grid-template-columns: 300px 1px 1fr;
  align-items: center;
  gap: 0 40px;
  padding: 26px 32px;
  border-bottom: 1px solid #f2eded;
  transition: background 0.3s ease;
  position: relative;
}

.fmt-row:last-child { border-bottom: none; }

/* Gold left accent bar */
.fmt-row::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 4px;
  background: #c9a656;
  transform: scaleY(0);
  transition: transform 0.35s ease;
  border-radius: 0 2px 2px 0;
}

.fmt-row:hover { background: #fdf9f9; }
.fmt-row:hover::before { transform: scaleY(1); }

/* Left side: icon + name */
.fmt-row-left {
  display: flex;
  align-items: center;
  gap: 16px;
}

.fmt-row-icon {
  width: 48px;
  height: 48px;
  background: #fdf2f2;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: background 0.35s ease;
}

.fmt-row-icon svg {
  stroke: #90191c;
  transition: stroke 0.35s ease;
}

.fmt-row:hover .fmt-row-icon { background: #90191c; }
.fmt-row:hover .fmt-row-icon svg { stroke: #fff; }

.fmt-row-name {
  font-family: 'LemonmilkReg', sans-serif;
  font-size: 13px !important;
  color: #1a1a1a;
  text-transform: uppercase;
  letter-spacing: 0.4px;
  line-height: 1.35;
  margin: 0;
  transition: color 0.3s ease;
}

.fmt-row:hover .fmt-row-name { color: #90191c; }

/* Vertical separator */
.fmt-row-sep {
  width: 1px;
  height: 44px;
  background: #ede0e0;
  align-self: center;
  flex-shrink: 0;
}

/* Right side: detail */
.fmt-row-detail {
  font-size: 14.5px;
  line-height: 1.7;
  color: #666;
  margin: 0;
  padding-left: 40px;
}

/* Scroll reveal */
.fmt-reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}

.fmt-visible { opacity: 1; transform: translateY(0); }

@media (max-width: 960px) {
  .fmt-header {
    grid-template-columns: 1fr;
    gap: 28px;
  }
  .fmt-line { margin: 16px 0 0; }
  .fmt-row { grid-template-columns: 240px 1px 1fr; gap: 0 24px; }
  .fmt-row-detail { padding-left: 24px; }
  .fmt-title { font-size: 28px; }
}

@media (max-width: 768px) {
  .fmt-row {
    grid-template-columns: 1fr;
    gap: 14px;
    padding: 22px 24px;
  }
  .fmt-row-sep { display: none; }
  .fmt-row-detail { padding-left: 0; font-size: 14px; }
}

@media (max-width: 600px) {
  .fmt-wrap { padding: 50px 16px; }
  .fmt-title { font-size: 24px; }
  .fmt-row { padding: 20px 20px; }
  .fmt-row-icon { width: 42px; height: 42px; }
}