/* ═══════════════════════════════════════════
   Tax2Win — File Your Return Page
   Scoped to .fr-* — zero conflict with navbar or hp-*
═══════════════════════════════════════════ */

/* Re-use navbar's root variables (already loaded via navbar.css) */

/* ── Reset & Base ── */
.fr-page * { box-sizing: border-box; }

.fr-wrap {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ── Shared Typography ── */
.fr-label {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--orange-pale);
  color: var(--orange);
  font-family: 'DM Sans', sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .8px;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: 20px;
  margin-bottom: 14px;
}

.fr-title {
  font-family: 'Nunito', sans-serif;
  font-weight: 900;
  font-size: clamp(26px, 3.5vw, 38px);
  color: var(--text-dark);
  line-height: 1.2;
  margin: 0 0 14px;
  letter-spacing: -.5px;
}
.fr-title em { font-style: normal; color: var(--orange); }

.fr-subtitle {
  font-size: 16px;
  color: var(--text-mid);
  line-height: 1.65;
  margin: 0 0 32px;
  max-width: 560px;
}

.fr-center { text-align: center; }
.fr-center .fr-subtitle { margin-left: auto; margin-right: auto; }

/* ── Section Wrappers ── */
.fr-section { padding: 72px 0; }
.fr-section--gray { background: var(--orange-pale); }
.fr-section--white { background: var(--white); }

/* ── Buttons ── */
.fr-btn {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-family: 'DM Sans', sans-serif;
  font-weight: 700;
  font-size: 14px;
  border-radius: 10px;
  cursor: pointer;
  text-decoration: none;
  transition: all .2s ease;
  white-space: nowrap;
  border: 2px solid transparent;
}
.fr-btn--primary {
  background: linear-gradient(135deg, var(--orange-light), var(--orange-dark));
  color: var(--white);
  padding: 11px 22px;
  box-shadow: 0 4px 14px rgba(255,107,26,.30);
}
.fr-btn--primary:hover { transform: translateY(-2px); box-shadow: 0 6px 20px rgba(255,107,26,.44); }
.fr-btn--primary svg { width: 16px; height: 16px; }

.fr-btn--outline {
  background: transparent;
  color: var(--orange);
  border-color: var(--orange);
  padding: 11px 22px;
}
.fr-btn--outline:hover { background: var(--orange); color: var(--white); }

.fr-btn--white {
  background: var(--white);
  color: var(--orange);
  padding: 11px 22px;
  border-color: var(--white);
}
.fr-btn--white:hover { background: var(--orange-pale); }

.fr-btn--ghost {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,.5);
  padding: 11px 22px;
}
.fr-btn--ghost:hover { background: rgba(255,255,255,.12); }

.fr-btn--lg { padding: 14px 28px; font-size: 15px; }
.fr-btn--sm { padding: 9px 18px; font-size: 13px; }
.fr-btn--block { width: 100%; justify-content: center; margin-top: 20px; }

/* ── Check Mark ── */
.fr-check {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  min-width: 22px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--orange-light), var(--orange-dark));
  margin-right: 10px;
  flex-shrink: 0;
}
.fr-check::after {
  content: '';
  display: block;
  width: 10px;
  height: 6px;
  border-left: 2px solid white;
  border-bottom: 2px solid white;
  transform: rotate(-45deg) translateY(-1px);
}
.fr-check--sm { width: 18px; height: 18px; min-width: 18px; }
.fr-check--sm::after { width: 8px; height: 5px; }
.fr-check--white {
  background: rgba(255,255,255,.25);
  border: 1.5px solid rgba(255,255,255,.6);
}

/* ── Input ── */
.fr-input {
  height: 46px;
  padding: 0 16px;
  border: 1.5px solid var(--orange-muted);
  border-radius: 10px;
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  color: var(--text-dark);
  background: var(--white);
  outline: none;
  transition: border-color .2s;
  width: 100%;
}
.fr-input:focus { border-color: var(--orange); }
.fr-input--select { max-width: 160px; cursor: pointer; }

/* ══════════════════════════════
   HERO
══════════════════════════════ */
.fr-hero {
  background: linear-gradient(160deg, #fff7f2 0%, var(--white) 60%);
  padding: 64px 0 48px;
  border-bottom: 1.5px solid var(--orange-muted);
}

.fr-hero__top {
  text-align: center;
  margin-bottom: 40px;
}
.fr-hero__title {
  font-family: 'Nunito', sans-serif;
  font-weight: 900;
  font-size: clamp(32px, 4.5vw, 52px);
  color: var(--text-dark);
  letter-spacing: -1px;
  line-height: 1.15;
  margin: 0 0 16px;
}
.fr-hero__title em { font-style: normal; color: var(--orange); }

.fr-hero__sub {
  font-size: 17px;
  color: var(--text-mid);
  max-width: 520px;
  margin: 0 auto;
  line-height: 1.6;
}

/* ── Selector Card ── */
.fr-selector {
  background: var(--white);
  border: 1.5px solid var(--orange-muted);
  border-radius: 20px;
  box-shadow: 0 8px 48px rgba(255,107,26,.09);
  overflow: hidden;
}

.fr-selector__head {
  padding: 28px 32px 20px;
  border-bottom: 1.5px solid var(--orange-muted);
}
.fr-selector__step {
  font-size: 12px;
  font-weight: 700;
  color: var(--orange);
  text-transform: uppercase;
  letter-spacing: .8px;
  display: block;
  margin-bottom: 6px;
}
.fr-selector__head h2 {
  font-family: 'Nunito', sans-serif;
  font-weight: 900;
  font-size: 22px;
  color: var(--text-dark);
  margin: 0 0 6px;
}
.fr-selector__head p {
  font-size: 14px;
  color: var(--text-light);
  margin: 0;
}

/* ── Income Source Grid ── */
.fr-selector__grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(170px, 1fr));
  gap: 14px;
  padding: 24px 32px;
}

.fr-src-card input { display: none; }

.fr-src-card__inner {
  position: relative;
  border: 1.5px solid var(--orange-muted);
  border-radius: 14px;
  padding: 18px 16px 16px;
  cursor: pointer;
  transition: all .2s ease;
  background: var(--white);
  display: flex;
  flex-direction: column;
  gap: 6px;
  user-select: none;
}
.fr-src-card__inner:hover {
  border-color: var(--orange);
  background: var(--orange-pale);
  transform: translateY(-2px);
  box-shadow: 0 4px 16px rgba(255,107,26,.12);
}

.fr-src-card input:checked + .fr-src-card__inner {
  border-color: var(--orange);
  background: var(--orange-pale);
  box-shadow: 0 4px 16px rgba(255,107,26,.18);
}

.fr-src-card__icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 4px;
}
.fr-src-card__icon svg { width: 20px; height: 20px; }

.fr-icon--blue   { background: #e6f1fb; } .fr-icon--blue   svg { stroke: #185FA5; }
.fr-icon--green  { background: #eaf3de; } .fr-icon--green  svg { stroke: #3B6D11; }
.fr-icon--purple { background: #eeedfe; } .fr-icon--purple svg { stroke: #534AB7; }
.fr-icon--orange { background: var(--orange-pale); } .fr-icon--orange svg { stroke: var(--orange-dark); }
.fr-icon--red    { background: #fcebeb; } .fr-icon--red    svg { stroke: #A32D2D; }
.fr-icon--teal   { background: #e1f5ee; } .fr-icon--teal   svg { stroke: #0F6E56; }

.fr-src-card__name {
  font-size: 14px;
  font-weight: 700;
  color: var(--text-dark);
  font-family: 'DM Sans', sans-serif;
}
.fr-src-card__tag {
  font-size: 11px;
  color: var(--text-light);
  font-weight: 500;
}

.fr-src-card__check {
  position: absolute;
  top: 10px;
  right: 10px;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--orange);
  display: none;
  align-items: center;
  justify-content: center;
}
.fr-src-card__check svg { width: 11px; height: 11px; }
.fr-src-card input:checked + .fr-src-card__inner .fr-src-card__check { display: flex; }

/* ── Upload Box ── */
.fr-selector__upload { padding: 0 32px 24px; }

.fr-upload-box {
  border: 2px dashed var(--orange-muted);
  border-radius: 12px;
  padding: 16px 20px;
  display: flex;
  align-items: center;
  gap: 14px;
  cursor: pointer;
  transition: border-color .2s, background .2s;
  background: var(--orange-pale);
}
.fr-upload-box:hover { border-color: var(--orange); }
.fr-upload-box svg { width: 24px; height: 24px; stroke: var(--orange); flex-shrink: 0; }
.fr-upload-box strong { display: block; font-size: 14px; color: var(--text-dark); font-family: 'DM Sans', sans-serif; }
.fr-upload-box span { font-size: 12px; color: var(--text-light); }
.fr-upload-btn {
  margin-left: auto;
  background: var(--white);
  border: 1.5px solid var(--orange);
  color: var(--orange);
  font-size: 13px;
  font-weight: 700;
  padding: 7px 16px;
  border-radius: 8px;
  white-space: nowrap;
  font-family: 'DM Sans', sans-serif;
}

/* ── Selector Footer ── */
.fr-selector__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 32px;
  border-top: 1.5px solid var(--orange-muted);
  background: var(--orange-pale);
  gap: 16px;
  flex-wrap: wrap;
}

.fr-selector__trust {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}
.fr-selector__trust span {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 12.5px;
  font-weight: 600;
  color: var(--text-mid);
}
.fr-selector__trust svg { width: 15px; height: 15px; stroke: var(--orange); }

/* ══════════════════════════════
   MISSED DEADLINE BANNER
══════════════════════════════ */
.fr-missed {
  background: linear-gradient(135deg, #1A1A2E, #2d1e0e);
  padding: 28px 0;
}
.fr-missed__inner {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}
.fr-missed__icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: rgba(255,107,26,.2);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.fr-missed__icon svg { width: 24px; height: 24px; stroke: var(--orange-light); }
.fr-missed__inner h3 { font-size: 17px; font-weight: 800; color: white; margin: 0 0 4px; font-family: 'Nunito', sans-serif; }
.fr-missed__inner p  { font-size: 13.5px; color: rgba(255,255,255,.65); margin: 0; }
.fr-missed__actions  { display: flex; gap: 10px; margin-left: auto; flex-wrap: wrap; }

/* ══════════════════════════════
   HOW TO FILE — STEPS
══════════════════════════════ */
.fr-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 0;
  position: relative;
  margin-top: 48px;
}

.fr-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  position: relative;
}

.fr-step__num {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--orange-light), var(--orange-dark));
  color: white;
  font-family: 'Nunito', sans-serif;
  font-weight: 900;
  font-size: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(255,107,26,.35);
  position: relative;
  z-index: 1;
}

.fr-step__connector {
  position: absolute;
  top: 26px;
  left: 50%;
  right: -50%;
  height: 2px;
  background: linear-gradient(90deg, var(--orange), var(--orange-muted));
  z-index: 0;
}
.fr-step__connector--none { display: none; }

.fr-step__body {
  margin-top: 18px;
  padding: 0 16px;
}
.fr-step__body h4 {
  font-family: 'Nunito', sans-serif;
  font-weight: 800;
  font-size: 16px;
  color: var(--text-dark);
  margin: 0 0 8px;
}
.fr-step__body p {
  font-size: 13.5px;
  color: var(--text-mid);
  line-height: 1.6;
  margin: 0;
}

/* ══════════════════════════════
   WHO CAN FILE
══════════════════════════════ */
.fr-who__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}

.fr-who__list {
  list-style: none;
  padding: 0;
  margin: 0 0 32px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.fr-who__list li {
  display: flex;
  align-items: center;
  font-size: 15px;
  color: var(--text-dark);
  font-weight: 500;
}

/* ITR Form Cards */
.fr-itr-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.fr-itr-card {
  background: var(--white);
  border: 1.5px solid var(--orange-muted);
  border-radius: 14px;
  padding: 18px;
  transition: box-shadow .2s, border-color .2s;
}
.fr-itr-card:hover {
  border-color: var(--orange);
  box-shadow: 0 4px 20px rgba(255,107,26,.12);
}

.fr-itr-card__badge {
  display: inline-block;
  background: var(--orange);
  color: white;
  font-family: 'Nunito', sans-serif;
  font-weight: 900;
  font-size: 11px;
  padding: 3px 10px;
  border-radius: 6px;
  margin-bottom: 10px;
  letter-spacing: .5px;
}

.fr-itr-card h4 {
  font-family: 'Nunito', sans-serif;
  font-weight: 800;
  font-size: 15px;
  color: var(--text-dark);
  margin: 0 0 6px;
}

.fr-itr-card p {
  font-size: 12.5px;
  color: var(--text-mid);
  line-height: 1.55;
  margin: 0 0 10px;
}

.fr-itr-card__tag {
  font-size: 11px;
  font-weight: 700;
  color: var(--orange);
  background: var(--orange-pale);
  padding: 3px 8px;
  border-radius: 5px;
  display: inline-block;
}

/* ══════════════════════════════
   AFTER FILING
══════════════════════════════ */
.fr-after__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 20px;
  margin-top: 40px;
}

.fr-after-card {
  background: var(--white);
  border: 1.5px solid var(--orange-muted);
  border-radius: 16px;
  padding: 24px;
  border-top: 4px solid var(--orange);
  transition: box-shadow .2s, transform .2s;
}
.fr-after-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 28px rgba(255,107,26,.12);
}

.fr-after-card__num {
  font-family: 'Nunito', sans-serif;
  font-weight: 900;
  font-size: 32px;
  color: var(--orange-muted);
  line-height: 1;
  margin-bottom: 10px;
}

.fr-after-card h4 {
  font-family: 'Nunito', sans-serif;
  font-weight: 800;
  font-size: 16px;
  color: var(--text-dark);
  margin: 0 0 8px;
}

.fr-after-card p {
  font-size: 13.5px;
  color: var(--text-mid);
  line-height: 1.6;
  margin: 0 0 14px;
}

.fr-after-card__link {
  font-size: 13px;
  font-weight: 700;
  color: var(--orange);
  text-decoration: none;
  transition: letter-spacing .2s;
}
.fr-after-card__link:hover { letter-spacing: .3px; }

/* ══════════════════════════════
   STATUS CHECKER
══════════════════════════════ */
.fr-checker__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.fr-checker__form {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 24px;
}

.fr-status-track {
  display: flex;
  flex-direction: column;
  gap: 0;
  background: var(--orange-pale);
  border: 1.5px solid var(--orange-muted);
  border-radius: 16px;
  padding: 24px;
}

.fr-status-step {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  position: relative;
}

.fr-status-step__dot {
  width: 16px;
  height: 16px;
  min-width: 16px;
  border-radius: 50%;
  background: var(--orange-muted);
  border: 2px solid var(--orange-muted);
  margin-top: 3px;
  position: relative;
  z-index: 1;
}

.fr-status-step--done .fr-status-step__dot {
  background: var(--orange);
  border-color: var(--orange);
}
.fr-status-step--active .fr-status-step__dot {
  background: white;
  border-color: var(--orange);
  box-shadow: 0 0 0 4px rgba(255,107,26,.2);
}

.fr-status-step__line {
  position: absolute;
  left: 7px;
  top: 19px;
  width: 2px;
  height: 36px;
  background: var(--orange-muted);
  z-index: 0;
}
.fr-status-step--done .fr-status-step__line { background: var(--orange); }
.fr-status-step__line--none { display: none; }

.fr-status-step__text {
  padding-bottom: 28px;
}
.fr-status-step__text strong {
  display: block;
  font-size: 14px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 2px;
}
.fr-status-step--done .fr-status-step__text strong { color: var(--orange-dark); }
.fr-status-step__text span {
  font-size: 12px;
  color: var(--text-light);
}

/* ══════════════════════════════
   PLANS
══════════════════════════════ */
.fr-plans {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-top: 48px;
  align-items: start;
}

.fr-plan {
  background: var(--white);
  border: 1.5px solid var(--orange-muted);
  border-radius: 20px;
  padding: 28px 24px;
  position: relative;
  transition: box-shadow .2s;
}
.fr-plan:hover { box-shadow: 0 8px 32px rgba(255,107,26,.10); }

.fr-plan--featured {
  background: linear-gradient(135deg, var(--orange-light), var(--orange-dark));
  border-color: transparent;
  transform: scale(1.04);
  box-shadow: 0 12px 40px rgba(255,107,26,.35);
  z-index: 1;
}

.fr-plan__badge {
  position: absolute;
  top: -13px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--text-dark);
  color: white;
  font-size: 11px;
  font-weight: 800;
  padding: 4px 14px;
  border-radius: 20px;
  white-space: nowrap;
  font-family: 'DM Sans', sans-serif;
  letter-spacing: .5px;
}

.fr-plan__head {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  margin-bottom: 20px;
}

.fr-plan__icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: var(--orange-pale);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.fr-plan__icon svg { width: 22px; height: 22px; stroke: var(--orange); }
.fr-plan__icon--white { background: rgba(255,255,255,.2); }
.fr-plan__icon--white svg { stroke: white; }

.fr-plan__label {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .7px;
  background: var(--orange-pale);
  color: var(--orange);
  padding: 3px 8px;
  border-radius: 5px;
  margin-bottom: 6px;
}

.fr-plan__head h3 {
  font-family: 'Nunito', sans-serif;
  font-weight: 900;
  font-size: 17px;
  color: var(--text-dark);
  margin: 0;
  line-height: 1.2;
}

.fr-plan__price {
  display: flex;
  align-items: baseline;
  gap: 6px;
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--orange-muted);
}
.fr-plan--featured .fr-plan__price { border-bottom-color: rgba(255,255,255,.2); }

.fr-plan__amount {
  font-family: 'Nunito', sans-serif;
  font-weight: 900;
  font-size: 32px;
  color: var(--text-dark);
}
.fr-plan__per {
  font-size: 13px;
  color: var(--text-light);
}
.fr-plan__old {
  font-size: 14px;
  color: var(--text-light);
  text-decoration: line-through;
  margin-left: 4px;
}

.fr-plan__features {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.fr-plan__features li {
  display: flex;
  align-items: center;
  font-size: 13.5px;
  color: var(--text-mid);
  font-weight: 500;
}
.fr-plan--featured .fr-plan__features li { color: rgba(255,255,255,.9); }

.fr-plan__feature--na {
  opacity: .45;
}
.fr-plan__feature--na span {
  width: 18px;
  min-width: 18px;
  height: 18px;
  border-radius: 50%;
  background: rgba(0,0,0,.07);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 10px;
  color: var(--text-light);
  margin-right: 10px;
}

/* ══════════════════════════════
   FAQ
══════════════════════════════ */
.fr-faq__list {
  max-width: 820px;
  margin: 40px auto 0;
}

.fr-faq-item {
  border-bottom: 1.5px solid var(--orange-muted);
}

.fr-faq-item__q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 0;
  font-family: 'DM Sans', sans-serif;
  font-size: 15px;
  font-weight: 700;
  color: var(--text-dark);
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  gap: 16px;
  transition: color .2s;
}
.fr-faq-item.open .fr-faq-item__q { color: var(--orange); }

.fr-faq-item__icon {
  width: 26px;
  height: 26px;
  min-width: 26px;
  border-radius: 50%;
  background: var(--orange-pale);
  border: 1.5px solid var(--orange-muted);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background .2s;
}
.fr-faq-item.open .fr-faq-item__icon { background: var(--orange); border-color: var(--orange); }
.fr-faq-item__icon svg { width: 13px; height: 13px; stroke: var(--orange); transition: stroke .2s; }
.fr-faq-item.open .fr-faq-item__icon svg { stroke: white; }

.fr-faq-item__a {
  display: none;
  padding: 0 40px 18px 0;
  font-size: 14.5px;
  color: var(--text-mid);
  line-height: 1.7;
}
.fr-faq-item.open .fr-faq-item__a { display: block; }

/* ══════════════════════════════
   CTA BANNER
══════════════════════════════ */
.fr-cta {
  background: linear-gradient(135deg, var(--text-dark), #2d1e0e);
  padding: 60px 0;
}

.fr-cta__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
}
.fr-cta__inner h2 {
  font-family: 'Nunito', sans-serif;
  font-weight: 900;
  font-size: clamp(22px, 3vw, 30px);
  color: white;
  margin: 0 0 10px;
}
.fr-cta__inner p { font-size: 15px; color: rgba(255,255,255,.65); margin: 0; }
.fr-cta__btns { display: flex; gap: 12px; flex-wrap: wrap; }

/* ══════════════════════════════
   RESPONSIVE
══════════════════════════════ */
@media (max-width: 900px) {
  .fr-who__grid     { grid-template-columns: 1fr; gap: 40px; }
  .fr-checker__grid { grid-template-columns: 1fr; gap: 40px; }
  .fr-plans         { grid-template-columns: 1fr; }
  .fr-plan--featured { transform: none; }
  .fr-itr-cards     { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 640px) {
  .fr-selector__grid   { grid-template-columns: 1fr 1fr; }
  .fr-selector__footer { flex-direction: column; align-items: flex-start; }
  .fr-missed__inner    { flex-direction: column; align-items: flex-start; }
  .fr-missed__actions  { margin-left: 0; }
  .fr-steps            { grid-template-columns: 1fr; }
  .fr-step__connector  { display: none; }
  .fr-itr-cards        { grid-template-columns: 1fr; }
  .fr-after__grid      { grid-template-columns: 1fr; }
  .fr-selector__head, .fr-selector__upload, .fr-selector__footer { padding-left: 20px; padding-right: 20px; }
  .fr-selector__grid { padding: 16px 20px; }
  .fr-wrap { padding: 0 16px; }
}
