/* ============================================================
   PACKAGES PAGE STYLES
   css/packages.css
   ============================================================ */

/* ── Force white navbar ─────────────────────────────────── */
.nav,
.nav.scrolled {
  background: #ffffff !important;
  backdrop-filter: none !important;
  -webkit-backdrop-filter: none !important;
  border-bottom: 1px solid var(--gray-border) !important;
  box-shadow: 0 2px 8px rgba(0,0,0,0.06) !important;
}

/* ════════════════════════════════════════════════════════
   HERO
════════════════════════════════════════════════════════ */
.pk-hero {
  position: relative;
  padding: 160px 0 90px;
  overflow: hidden;
  background: linear-gradient(135deg, #0f1923 0%, #1a2535 55%, #0f1923 100%);
}
.pk-hero__bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 10% 55%, rgba(232,100,26,0.18) 0%, transparent 50%),
    radial-gradient(circle at 85% 25%, rgba(45,90,160,0.14) 0%, transparent 50%),
    radial-gradient(circle at 50% 90%, rgba(232,100,26,0.07) 0%, transparent 45%);
}
.pk-hero__content {
  position: relative;
  z-index: 1;
  text-align: center;
}
.pk-hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.15);
  color: rgba(255,255,255,0.65);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.4rem 1rem;
  border-radius: 100px;
  margin-bottom: 1.5rem;
}
.pk-hero__title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.6rem, 6vw, 4.2rem);
  font-weight: 800;
  color: #ffffff;
  line-height: 1.1;
  margin-bottom: 0.7rem;
}
.pk-hero__subtitle {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.6);
  margin-bottom: 0.6rem;
}
.pk-hero__tagline {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: 1rem;
  color: #E8641A;
  margin-bottom: 2.75rem;
  opacity: 0.9;
}

/* Package snapshot pills */
.pk-hero__pills {
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}
.pk-pill {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.3rem;
  padding: 1.1rem 1.6rem;
  border-radius: 16px;
  min-width: 145px;
  text-decoration: none;
  position: relative;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.pk-pill:hover { transform: translateY(-3px); }
.pk-pill--1 {
  background: rgba(232,100,26,0.12);
  border: 1px solid rgba(232,100,26,0.3);
}
.pk-pill--2 {
  background: rgba(45,90,160,0.15);
  border: 1px solid rgba(45,90,160,0.3);
}
.pk-pill--3 {
  background: rgba(181,136,10,0.15);
  border: 2px solid rgba(212,160,23,0.5);
  box-shadow: 0 0 24px rgba(212,160,23,0.15);
}
.pk-pill--featured:hover { box-shadow: 0 8px 28px rgba(212,160,23,0.25); }
.pk-pill__badge {
  position: absolute;
  top: -11px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, #b5880a, #d4a017);
  color: #fff;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.07em;
  padding: 0.2rem 0.65rem;
  border-radius: 100px;
  white-space: nowrap;
}
.pk-pill__num {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: rgba(255,255,255,0.4);
}
.pk-pill__name {
  font-size: 0.92rem;
  font-weight: 700;
  color: #ffffff;
}
.pk-pill__price {
  font-size: 1.05rem;
  font-weight: 800;
  color: #E8641A;
}
.pk-pill--2 .pk-pill__price { color: #7baee8; }
.pk-pill--3 .pk-pill__price { color: #f0c040; }

/* ════════════════════════════════════════════════════════
   WHY STRIP
════════════════════════════════════════════════════════ */
.pk-why-strip {
  background: #1a1a2e;
  padding: 1.75rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.pk-why-strip__grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.5rem 3rem;
}
.pk-why-item {
  display: flex;
  align-items: flex-start;
  gap: 0.85rem;
  min-width: 220px;
  max-width: 300px;
  flex: 1;
}
.pk-why-item > i {
  font-size: 1.3rem;
  color: #E8641A;
  margin-top: 0.15rem;
  flex-shrink: 0;
}
.pk-why-item strong {
  display: block;
  font-size: 0.85rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 0.2rem;
}
.pk-why-item p {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.5);
  line-height: 1.5;
  margin: 0;
}

/* ════════════════════════════════════════════════════════
   MAIN
════════════════════════════════════════════════════════ */
.pk-main {
  padding: 4rem 0 5rem;
  background: #f4f5f9;
}

/* ════════════════════════════════════════════════════════
   PACKAGE CARDS
════════════════════════════════════════════════════════ */
.pk-card {
  display: flex;
  background: #ffffff;
  border-radius: 20px;
  margin-bottom: 2.25rem;
  border: 1px solid #e2e6ed;
  box-shadow: 0 3px 16px rgba(0,0,0,0.06);
  overflow: hidden;
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.55s ease, transform 0.55s ease, box-shadow 0.3s ease;
  position: relative;
}
.pk-card.visible { opacity: 1; transform: translateY(0); }
.pk-card:hover { box-shadow: 0 10px 36px rgba(0,0,0,0.11); }

/* Featured gold border */
.pk-card--featured {
  border: 2px solid rgba(212,160,23,0.4);
  box-shadow: 0 4px 24px rgba(181,136,10,0.12);
}
.pk-card--featured:hover { box-shadow: 0 12px 40px rgba(181,136,10,0.2); }

.pk-card__featured-banner {
  position: absolute;
  top: 0; left: 0; right: 0;
  background: linear-gradient(135deg, #b5880a, #d4a017);
  color: #fff;
  text-align: center;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  padding: 0.4rem 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
}

/* Sidebar */
.pk-card__sidebar {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1.1rem;
  padding: 2.5rem 1.75rem;
  min-width: 195px;
  text-align: center;
}
.pk-card--featured .pk-card__sidebar { padding-top: 3.5rem; }

.pk-card__sidebar--1 { background: linear-gradient(160deg, #1a1a2e, #2d2d4e); }
.pk-card__sidebar--2 { background: linear-gradient(160deg, #0f2444, #1a3a6b); }
.pk-card__sidebar--3 { background: linear-gradient(160deg, #1a1200, #3a2800); }

.pk-card__num {
  font-family: 'Playfair Display', serif;
  font-size: 3rem;
  font-weight: 800;
  color: rgba(255,255,255,0.12);
  line-height: 1;
}

.pk-card__price-block {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.15rem;
}
.pk-card__price {
  font-size: 2.2rem;
  font-weight: 900;
  color: #ffffff;
  line-height: 1;
}
.pk-card__sidebar--1 .pk-card__price { color: #f0906a; }
.pk-card__sidebar--2 .pk-card__price { color: #7baee8; }
.pk-card__sidebar--3 .pk-card__price { color: #f0c040; }

.pk-card__price-label {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.5);
  font-weight: 500;
}
.pk-card__minimum {
  font-size: 0.68rem;
  color: rgba(255,255,255,0.35);
  font-weight: 600;
  letter-spacing: 0.04em;
  border: 1px solid rgba(255,255,255,0.12);
  padding: 0.18rem 0.55rem;
  border-radius: 100px;
  margin-top: 0.2rem;
}

.pk-card__duration {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.5);
  display: flex;
  align-items: center;
  gap: 0.4rem;
}
.pk-card__duration i { color: #E8641A; }
.pk-card__sidebar--2 .pk-card__duration i { color: #7baee8; }
.pk-card__sidebar--3 .pk-card__duration i { color: #f0c040; }

.pk-card__cta {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.65rem 1.1rem;
  border-radius: 10px;
  font-size: 0.82rem;
  font-weight: 700;
  text-decoration: none;
  transition: opacity 0.2s, transform 0.15s;
  text-align: center;
}
.pk-card__cta:hover { opacity: 0.88; transform: translateY(-1px); }
.pk-card__cta--1 { background: #E8641A; color: #fff; }
.pk-card__cta--2 { background: #2d5aa0; color: #fff; }
.pk-card__cta--3 { background: linear-gradient(135deg, #b5880a, #d4a017); color: #fff; }

.pk-card__lang {
  font-size: 0.73rem;
  color: rgba(255,255,255,0.3);
  display: flex;
  align-items: center;
  gap: 0.35rem;
}
.pk-card__lang i { color: rgba(255,255,255,0.45); }

/* Card body */
.pk-card__body {
  flex: 1;
  padding: 2.25rem 2.25rem 2rem;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.pk-card--featured .pk-card__body { padding-top: 3.25rem; }

.pk-card__header { display: flex; flex-direction: column; gap: 0.3rem; }
.pk-card__inspired {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  color: #aaa;
  text-transform: uppercase;
}
.pk-card__title {
  font-family: 'Playfair Display', serif;
  font-size: 1.6rem;
  font-weight: 800;
  color: #1a1a2e;
  margin: 0;
  line-height: 1.2;
}
.pk-card__subtitle {
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}
.pk-card__subtitle--1 { color: #E8641A; }
.pk-card__subtitle--2 { color: #2d5aa0; }
.pk-card__subtitle--3 { color: #b5880a; }

.pk-card__description {
  font-size: 0.95rem;
  line-height: 1.75;
  color: #444;
  margin: 0;
}
.pk-card__description strong { color: #1a1a2e; }

/* ── 10x Deliverable box ── */
.pk-deliverable {
  border-radius: 12px;
  padding: 1.1rem 1.25rem;
  border-left: 4px solid;
}
.pk-deliverable--1 { background: #fff5ef; border-color: #E8641A; }
.pk-deliverable--2 { background: #eff4fc; border-color: #2d5aa0; }
.pk-deliverable--3 { background: #fdf9ea; border-color: #d4a017; }

.pk-deliverable__header {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.5rem;
}
.pk-deliverable__header i { font-size: 0.9rem; }
.pk-deliverable--1 .pk-deliverable__header i { color: #E8641A; }
.pk-deliverable--2 .pk-deliverable__header i { color: #2d5aa0; }
.pk-deliverable--3 .pk-deliverable__header i { color: #d4a017; }
.pk-deliverable__header strong { font-size: 0.82rem; font-weight: 700; color: #1a1a2e; text-transform: uppercase; letter-spacing: 0.05em; }

.pk-deliverable p { font-size: 0.88rem; line-height: 1.65; color: #555; margin: 0; }
.pk-deliverable strong { color: #1a1a2e; }
.pk-deliverable em { font-style: italic; }

/* ── 3-Step Ladder ── */
.pk-ladder {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.pk-ladder__step {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 0.9rem 1rem;
  border-radius: 10px;
  background: #f7f8fa;
  border: 1px solid #eaedf2;
}
.pk-ladder__step--1 { border-left: 3px solid #E8641A; }
.pk-ladder__step--2 { border-left: 3px solid #c94f10; }
.pk-ladder__step--3 { border-left: 3px solid #8c3308; }

.pk-ladder__connector {
  width: 3px;
  height: 18px;
  background: linear-gradient(to bottom, #E8641A, #c94f10);
  margin-left: 1.9rem;
}
.pk-ladder__icon {
  width: 34px;
  height: 34px;
  min-width: 34px;
  border-radius: 50%;
  background: rgba(232,100,26,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #E8641A;
  font-size: 0.85rem;
}
.pk-ladder__step strong {
  display: block;
  font-size: 0.85rem;
  font-weight: 700;
  color: #1a1a2e;
  margin-bottom: 0.15rem;
}
.pk-ladder__step p { font-size: 0.8rem; color: #666; line-height: 1.4; margin: 0; }

/* ── Goal block ── */
.pk-goal {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  background: #1a1a2e;
  border-radius: 10px;
  padding: 1rem 1.2rem;
}
.pk-goal > i { color: #E8641A; font-size: 1rem; margin-top: 0.15rem; flex-shrink: 0; }
.pk-goal p { font-size: 0.88rem; color: rgba(255,255,255,0.75); line-height: 1.6; margin: 0; }
.pk-goal strong { color: #fff; }
.pk-goal em { color: #f0906a; font-style: italic; }

/* ── Trifecta focus ── */
.pk-trifecta-focus {
  background: #f7f8fa;
  border: 1px solid #eaedf2;
  border-radius: 12px;
  padding: 1rem 1.25rem;
}
.pk-trifecta-focus__title {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #888;
  margin-bottom: 0.85rem;
}
.pk-trifecta-focus__pillars {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
}
.pk-pillar {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.25rem;
  padding: 0.7rem 1.1rem;
  border-radius: 10px;
  flex: 1;
  min-width: 90px;
  text-align: center;
}
.pk-pillar--muted {
  background: #f0f2f5;
  border: 1px solid #e2e6ed;
  opacity: 0.55;
}
.pk-pillar--muted i,
.pk-pillar--muted span { color: #999; }
.pk-pillar--muted small { color: #bbb; }

.pk-pillar--active {
  background: rgba(232,100,26,0.08);
  border: 1px solid rgba(232,100,26,0.25);
}
.pk-pillar--active i { color: #E8641A; font-size: 1.1rem; }
.pk-pillar--active span { font-size: 0.85rem; font-weight: 700; color: #1a1a2e; }
.pk-pillar--active small { font-size: 0.68rem; color: #E8641A; font-weight: 600; letter-spacing: 0.04em; }

.pk-pillar--gold {
  background: rgba(212,160,23,0.08);
  border: 1px solid rgba(212,160,23,0.3);
}
.pk-pillar--gold i { color: #d4a017; }
.pk-pillar--gold small { color: #d4a017; }

/* ── Bilingual block ── */
.pk-bilingual {
  display: flex;
  align-items: flex-start;
  gap: 0.85rem;
  background: rgba(45,90,160,0.06);
  border: 1px solid rgba(45,90,160,0.15);
  border-radius: 10px;
  padding: 0.9rem 1.1rem;
}
.pk-bilingual > i { font-size: 1.2rem; color: #2d5aa0; margin-top: 0.1rem; flex-shrink: 0; }
.pk-bilingual strong { display: block; font-size: 0.82rem; font-weight: 700; color: #1a1a2e; margin-bottom: 0.2rem; }
.pk-bilingual p { font-size: 0.83rem; color: #555; line-height: 1.5; margin: 0; }

/* ── Growth Path Matrix ── */
.pk-matrix {
  background: #f7f8fa;
  border: 1px solid #eaedf2;
  border-radius: 12px;
  padding: 1.2rem 1.25rem;
}
.pk-matrix__title {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #888;
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 0.4rem;
}
.pk-matrix__title i { color: #d4a017; }
.pk-matrix__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 0.75rem;
}
.pk-matrix__cell {
  background: #ffffff;
  border: 1px solid #eaedf2;
  border-radius: 10px;
  padding: 0.85rem 0.9rem;
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
}
.pk-matrix__cell i { font-size: 1.1rem; color: #d4a017; }
.pk-matrix__cell strong { font-size: 0.83rem; font-weight: 700; color: #1a1a2e; }
.pk-matrix__cell p { font-size: 0.76rem; color: #666; line-height: 1.45; margin: 0; }

/* ── Feature tags ── */
.pk-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
}
.pk-tag {
  display: inline-block;
  background: #f0f2f5;
  border: 1px solid #e2e6ed;
  color: #555;
  font-size: 0.74rem;
  font-weight: 600;
  padding: 0.28rem 0.7rem;
  border-radius: 100px;
}
.pk-tag--lang {
  background: rgba(232,100,26,0.08);
  border-color: rgba(232,100,26,0.22);
  color: #c94f10;
}
.pk-tag--lang i { margin-right: 0.2rem; }

/* ════════════════════════════════════════════════════════
   COMPARISON TABLE
════════════════════════════════════════════════════════ */
.pk-compare {
  background: #ffffff;
  border-radius: 20px;
  padding: 2.5rem;
  border: 1px solid #e2e6ed;
  box-shadow: 0 2px 12px rgba(0,0,0,0.05);
  margin-top: 0.5rem;
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}
.pk-compare.visible { opacity: 1; transform: translateY(0); }
.pk-compare__title {
  font-family: 'Playfair Display', serif;
  font-size: 1.4rem;
  font-weight: 700;
  color: #1a1a2e;
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  gap: 0.6rem;
}
.pk-compare__title i { color: #E8641A; }
.pk-compare__wrap { overflow-x: auto; }
.pk-compare__table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.85rem;
  min-width: 640px;
}
.pk-compare__table thead tr { background: #1a1a2e; }
.pk-compare__table thead th {
  padding: 0.85rem 1rem;
  text-align: left;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.75);
  border: none;
}
.pk-col--1 { border-top: 3px solid #E8641A !important; }
.pk-col--2 { border-top: 3px solid #2d5aa0 !important; }
.pk-col--3 { border-top: 3px solid #d4a017 !important; background: rgba(212,160,23,0.08) !important; }

.pk-compare__table tbody td {
  padding: 0.8rem 1rem;
  color: #444;
  border-bottom: 1px solid #eaedf2;
  vertical-align: middle;
  line-height: 1.45;
}
.pk-compare__table tbody td:first-child {
  font-weight: 600;
  color: #1a1a2e;
  font-size: 0.82rem;
}
.pk-compare__alt td { background: #f8f9fb; }
.pk-compare__table tbody tr:hover td { background: rgba(232,100,26,0.03); }
.pk-compare__table tbody td:nth-child(4) { background: rgba(212,160,23,0.05); }
.pk-check { color: #16a34a; font-size: 1rem; }

/* ════════════════════════════════════════════════════════
   CTA STRIP
════════════════════════════════════════════════════════ */
.pk-cta {
  background: linear-gradient(135deg, #0f1923 0%, #1a2535 100%);
  padding: 4rem 0;
  border-top: 3px solid rgba(232,100,26,0.35);
}
.pk-cta__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
}
.pk-cta__text h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.55rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 0.4rem;
}
.pk-cta__text p { font-size: 0.92rem; color: rgba(255,255,255,0.55); }
.pk-cta__actions { display: flex; gap: 1rem; flex-wrap: wrap; flex-shrink: 0; }

/* ════════════════════════════════════════════════════════
   DISCLAIMER
════════════════════════════════════════════════════════ */
.pk-disclaimer {
  background: #1a1a2e;
  border-top: 3px solid rgba(232,100,26,0.3);
  padding: 2.5rem 0;
}
.pk-disclaimer__inner {
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
}
.pk-disclaimer__icon {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(232,100,26,0.12);
  border: 1px solid rgba(232,100,26,0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #E8641A;
  font-size: 1.1rem;
  margin-top: 0.2rem;
}
.pk-disclaimer__text h4 {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #E8641A;
  margin-bottom: 0.7rem;
}
.pk-disclaimer__text p {
  font-size: 0.82rem;
  line-height: 1.75;
  color: rgba(255,255,255,0.5);
  margin-bottom: 0.75rem;
}
.pk-disclaimer__text p:last-of-type { margin-bottom: 1rem; }
.pk-disclaimer__stamp {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  color: rgba(255,255,255,0.25);
  border: 1px solid rgba(255,255,255,0.1);
  padding: 0.3rem 0.8rem;
  border-radius: 100px;
}

/* ════════════════════════════════════════════════════════
   RESPONSIVE
════════════════════════════════════════════════════════ */
@media (max-width: 900px) {
  .pk-card { flex-direction: column; }
  .pk-card__sidebar {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-between;
    padding: 1.5rem 1.5rem;
    min-width: unset;
    gap: 0.75rem;
  }
  .pk-card--featured .pk-card__sidebar { padding-top: 2.5rem; }
  .pk-card__num { display: none; }
  .pk-card__body { padding: 1.5rem; }
  .pk-card--featured .pk-card__body { padding-top: 1.5rem; }
  .pk-trifecta-focus__pillars { gap: 0.5rem; }
}
@media (max-width: 768px) {
  .pk-hero { padding: 140px 0 70px; }
  .pk-hero__pills { flex-direction: column; align-items: center; }
  .pk-pill { width: 100%; max-width: 280px; }
  .pk-why-strip__grid { flex-direction: column; gap: 1.1rem; }
  .pk-why-item { max-width: 100%; }
  .pk-compare { padding: 1.5rem 1rem; }
  .pk-cta__inner { flex-direction: column; text-align: center; }
  .pk-cta__actions { justify-content: center; }
  .pk-disclaimer__inner { flex-direction: column; gap: 1rem; }
  .pk-matrix__grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 480px) {
  .pk-matrix__grid { grid-template-columns: 1fr; }
  .pk-ladder__step { flex-direction: column; gap: 0.5rem; }
}
