.pack-repair {
  --pack-ink: #06172d;
  --pack-muted: #5a708d;
  --pack-blue: #117ce7;
  --pack-cyan: #16b7d6;
  --pack-green: #7ac943;
  --pack-dark: #07172e;
  --pack-line: rgba(17, 124, 231, 0.16);
  --pack-shadow: 0 28px 80px rgba(6, 23, 45, 0.14);
  overflow: hidden;
  color: var(--pack-ink);
  background:
    radial-gradient(circle at 12% 0%, rgba(22, 183, 214, 0.16), transparent 34rem),
    radial-gradient(circle at 92% 6%, rgba(122, 201, 67, 0.14), transparent 34rem),
    linear-gradient(180deg, #f7fbff 0%, #ffffff 40%, #f3f9ff 100%);
}

.pack-repair * {
  letter-spacing: 0;
}

.pack-hero {
  position: relative;
  padding: 64px 0 58px;
  overflow: hidden;
  background:
    radial-gradient(circle at 78% 18%, rgba(22, 183, 214, 0.28), transparent 30rem),
    radial-gradient(circle at 8% 86%, rgba(122, 201, 67, 0.18), transparent 26rem),
    linear-gradient(135deg, #06172d 0%, #092746 48%, #07596d 100%);
}

.pack-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(6, 23, 45, 0.62), transparent 58%),
    radial-gradient(circle at 62% 18%, rgba(255, 255, 255, 0.1), transparent 16rem);
  pointer-events: none;
}

.pack-hero::after {
  content: "";
  position: absolute;
  left: -8%;
  right: -8%;
  bottom: -86px;
  height: 150px;
  background: #f7fbff;
  border-radius: 50% 50% 0 0 / 100% 100% 0 0;
  pointer-events: none;
}

.pack-hero__grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 0.9fr);
  gap: 42px;
  align-items: center;
}

.pack-kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 999px;
  color: #c9ecff;
  background: rgba(255, 255, 255, 0.08);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.pack-hero h1,
.pack-section-head h2,
.pack-final h2 {
  margin: 18px 0 0;
  font-weight: 900;
  line-height: 1.02;
}

.pack-hero h1 {
  max-width: 760px;
  color: #ffffff;
  font-size: clamp(42px, 6.2vw, 82px);
}

.pack-hero__lead {
  max-width: 690px;
  margin: 22px 0 0;
  color: rgba(255, 255, 255, 0.84);
  font-size: clamp(18px, 2vw, 22px);
  line-height: 1.62;
}

.pack-hero__question {
  margin: 24px 0 0;
  padding: 18px 20px;
  border-left: 5px solid var(--pack-green);
  border-radius: 0 18px 18px 0;
  color: #ffffff;
  background: rgba(6, 23, 45, 0.58);
  border-top: 1px solid rgba(255, 255, 255, 0.13);
  border-right: 1px solid rgba(255, 255, 255, 0.13);
  border-bottom: 1px solid rgba(255, 255, 255, 0.13);
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.18);
  font-size: 19px;
  font-weight: 800;
  backdrop-filter: blur(10px);
}

.pack-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.pack-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 54px;
  padding: 0 22px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  color: #ffffff;
  font-weight: 900;
  text-decoration: none;
  transition: transform 0.24s ease, box-shadow 0.24s ease, background 0.24s ease;
}

.pack-btn:hover {
  transform: translateY(-2px);
  color: #ffffff;
}

.pack-btn--primary {
  border: 0;
  background: linear-gradient(135deg, var(--pack-blue), var(--pack-green));
  box-shadow: 0 18px 44px rgba(17, 124, 231, 0.32);
}

.pack-btn--light {
  color: #08203b;
  border-color: rgba(17, 124, 231, 0.18);
  background: #ffffff;
}

.pack-btn--light:hover {
  color: #08203b;
  box-shadow: 0 18px 40px rgba(6, 23, 45, 0.14);
}

.pack-proof {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 22px 0 0;
  padding: 0;
  list-style: none;
}

.pack-proof li {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 12px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.9);
  background: rgba(255, 255, 255, 0.08);
  font-size: 14px;
  font-weight: 800;
}

.pack-proof i {
  color: var(--pack-green);
}

.pack-visual {
  position: relative;
  min-height: 570px;
}

.pack-visual__main,
.pack-visual__small {
  position: absolute;
  overflow: hidden;
  border: 12px solid rgba(255, 255, 255, 0.92);
  background: #ffffff;
  box-shadow: var(--pack-shadow);
}

.pack-visual__main {
  inset: 10px 0 auto 22px;
  border-radius: 34px;
  transform: rotate(1.2deg);
  animation: packFloat 7s ease-in-out infinite;
}

.pack-visual__main img {
  width: 100%;
  height: 460px;
  display: block;
  object-fit: cover;
  object-position: 56% 50%;
}

.pack-visual__small {
  right: -10px;
  bottom: 24px;
  width: 48%;
  border-width: 9px;
  border-radius: 26px;
  transform: rotate(-4deg);
  animation: packFloatReverse 8s ease-in-out infinite;
}

.pack-visual__small img {
  width: 100%;
  height: 230px;
  display: block;
  object-fit: cover;
}

.pack-visual__badge {
  position: absolute;
  left: 0;
  bottom: 58px;
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 12px;
  align-items: center;
  max-width: 330px;
  padding: 14px;
  border-radius: 20px;
  color: #ffffff;
  background: rgba(7, 23, 46, 0.94);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.24);
}

.pack-visual__badge i {
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  border-radius: 15px;
  background: linear-gradient(135deg, var(--pack-blue), var(--pack-green));
}

.pack-visual__badge strong,
.pack-visual__badge span {
  display: block;
}

.pack-visual__badge span {
  color: rgba(255, 255, 255, 0.74);
  font-size: 13px;
  font-weight: 700;
}

.pack-section {
  padding: 58px 0;
}

.pack-section--dark {
  color: #ffffff;
  background: linear-gradient(135deg, #07172e, #07485f);
}

.pack-section-head {
  max-width: 840px;
  margin-bottom: 30px;
}

.pack-section-head.center {
  margin-right: auto;
  margin-left: auto;
  text-align: center;
}

.pack-section-head .pack-kicker {
  color: #0a73d3;
  border-color: rgba(17, 124, 231, 0.18);
  background: rgba(255, 255, 255, 0.74);
}

.pack-section--dark .pack-section-head .pack-kicker {
  color: #c9ecff;
  border-color: rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.08);
}

.pack-section-head h2 {
  color: var(--pack-ink);
  font-size: clamp(32px, 4.4vw, 58px);
}

.pack-section--dark h2 {
  color: #ffffff;
}

.pack-section-head p,
.pack-intro p,
.pack-card p,
.pack-step p,
.pack-faq p {
  color: var(--pack-muted);
  line-height: 1.68;
}

.pack-section--dark .pack-section-head p,
.pack-section--dark .pack-step p {
  color: rgba(255, 255, 255, 0.76);
}

.pack-evidence {
  background:
    radial-gradient(circle at 10% 14%, rgba(17, 124, 231, 0.12), transparent 30rem),
    linear-gradient(180deg, #f7fbff 0%, #ffffff 58%, #f4faff 100%);
}

.pack-intro {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  gap: 24px;
  align-items: start;
}

.pack-intro__statement,
.pack-card,
.pack-step,
.pack-faq,
.pack-recovery,
.pack-component-map {
  border: 1px solid var(--pack-line);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.86);
  box-shadow: 0 16px 44px rgba(6, 23, 45, 0.08);
}

.pack-intro__statement {
  padding: 28px;
  background:
    radial-gradient(circle at 100% 0%, rgba(122, 201, 67, 0.14), transparent 18rem),
    #ffffff;
}

.pack-intro__statement h2 {
  margin: 12px 0 0;
  font-size: clamp(30px, 3.8vw, 48px);
  font-weight: 900;
  line-height: 1.04;
}

.pack-intro__statement strong {
  color: #0c73ce;
}

.pack-intro__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.pack-card {
  padding: 22px;
}

.pack-card i {
  display: grid;
  width: 48px;
  height: 48px;
  margin-bottom: 16px;
  place-items: center;
  border-radius: 14px;
  color: #ffffff;
  background: linear-gradient(135deg, var(--pack-blue), var(--pack-green));
}

.pack-card h3,
.pack-step h3,
.pack-faq h3,
.pack-component-map h3,
.pack-recovery h3 {
  margin: 0 0 10px;
  color: var(--pack-ink);
  font-weight: 900;
}

.pack-component-map {
  padding: 26px;
}

.pack-module-grid {
  position: relative;
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 12px;
  align-items: end;
  margin-top: 22px;
  padding: 54px 26px 34px;
  border: 2px solid rgba(22, 183, 214, 0.2);
  border-radius: 28px;
  background:
    linear-gradient(90deg, rgba(122, 201, 67, 0.2), transparent 10%, transparent 90%, rgba(17, 124, 231, 0.2)),
    radial-gradient(circle at 50% 50%, rgba(22, 183, 214, 0.14), transparent 18rem),
    #06172d;
  box-shadow: inset 0 0 0 8px rgba(255, 255, 255, 0.03), 0 18px 40px rgba(6, 23, 45, 0.14);
}

.pack-module-grid::before {
  content: "HV battery modules - one weak cell can stop the pack";
  position: absolute;
  top: 16px;
  left: 24px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.pack-module-grid::after {
  content: "";
  position: absolute;
  left: 22px;
  right: 22px;
  bottom: 18px;
  height: 4px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--pack-blue), var(--pack-green), var(--pack-blue));
  opacity: 0.55;
}

.pack-module-grid span {
  position: relative;
  z-index: 1;
  display: block;
  min-height: 126px;
  border: 4px solid #071322;
  border-radius: 10px;
  background:
    linear-gradient(#5fd000, #5fd000) 50% 18% / 72% 17% no-repeat,
    linear-gradient(#5fd000, #5fd000) 50% 39% / 72% 17% no-repeat,
    linear-gradient(#5fd000, #5fd000) 50% 60% / 72% 17% no-repeat,
    linear-gradient(#5fd000, #5fd000) 50% 81% / 72% 17% no-repeat,
    #ffffff;
  box-shadow:
    inset 0 0 0 2px rgba(255, 255, 255, 0.45),
    0 12px 24px rgba(0, 0, 0, 0.32);
  animation: packCellGlow 2.8s ease-in-out infinite;
}

.pack-module-grid span::before {
  content: "";
  position: absolute;
  left: 50%;
  top: -18px;
  width: 42%;
  height: 16px;
  border-radius: 5px 5px 0 0;
  transform: translateX(-50%);
  background: #071322;
  box-shadow: 0 -2px 0 rgba(255, 255, 255, 0.1) inset;
}

.pack-module-grid span::after {
  content: "";
  position: absolute;
  inset: 8px;
  border-radius: 5px;
  border: 1px solid rgba(7, 19, 34, 0.08);
  pointer-events: none;
}

.pack-module-grid span:nth-child(4),
.pack-module-grid span:nth-child(10) {
  background:
    linear-gradient(#d7ee00, #d7ee00) 50% 39% / 72% 17% no-repeat,
    linear-gradient(#d7ee00, #d7ee00) 50% 60% / 72% 17% no-repeat,
    linear-gradient(#d7ee00, #d7ee00) 50% 81% / 72% 17% no-repeat,
    #ffffff;
}

.pack-module-grid span:nth-child(6) {
  background:
    linear-gradient(#ff9f0a, #ff9f0a) 50% 60% / 72% 17% no-repeat,
    linear-gradient(#ff9f0a, #ff9f0a) 50% 81% / 72% 17% no-repeat,
    #ffffff;
}

.pack-module-grid span:nth-child(7) {
  background:
    linear-gradient(#f33237, #f33237) 50% 81% / 72% 17% no-repeat,
    #ffffff;
  animation: packFaultPulse 1.4s ease-in-out infinite;
}

.pack-module-grid span:nth-child(7)::before {
  content: "!";
  display: grid;
  place-items: center;
  top: -38px;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  color: #ffffff;
  background: #e92f2f;
  box-shadow: 0 0 0 6px rgba(233, 47, 47, 0.2);
  font-weight: 900;
}

.pack-component-points {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 18px;
}

.pack-component-points div {
  padding: 16px;
  border: 1px solid rgba(17, 124, 231, 0.12);
  border-radius: 18px;
  background: #f7fbff;
}

.pack-component-points strong {
  display: block;
  color: var(--pack-ink);
}

.pack-component-points span {
  color: var(--pack-muted);
  font-size: 14px;
  line-height: 1.5;
}

.pack-process {
  display: grid;
  grid-template-columns: minmax(280px, 0.76fr) minmax(0, 1.24fr);
  gap: 24px;
  align-items: start;
}

.pack-process__copy {
  position: sticky;
  top: 126px;
}

.pack-steps {
  display: grid;
  gap: 16px;
}

.pack-step {
  display: grid;
  grid-template-columns: 58px 1fr;
  gap: 16px;
  padding: 22px;
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.14);
}

.pack-step span {
  display: grid;
  width: 58px;
  height: 58px;
  place-items: center;
  border-radius: 18px;
  color: #07172e;
  background: linear-gradient(135deg, #ffffff, #9ee85d);
  font-size: 24px;
  font-weight: 900;
}

.pack-step h3 {
  color: #ffffff;
}

.pack-evidence-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.28fr) minmax(300px, 0.72fr);
  gap: 22px;
  align-items: stretch;
  margin-top: 28px;
}

.pack-evidence-main,
.pack-evidence-copy,
.pack-data-card {
  border: 1px solid var(--pack-line);
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 18px 54px rgba(6, 23, 45, 0.1);
}

.pack-evidence-main {
  overflow: hidden;
  border-radius: 30px;
}

.pack-evidence-main img {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  background: #dfe7ef;
}

.pack-evidence-main div {
  padding: 24px;
}

.pack-evidence-main span,
.pack-data-card::before {
  display: inline-flex;
  align-items: center;
  margin-bottom: 10px;
  color: var(--pack-blue);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.pack-evidence-main h3,
.pack-evidence-copy h3,
.pack-data-card h3 {
  margin: 0 0 10px;
  color: var(--pack-ink);
  font-size: 24px;
  font-weight: 900;
}

.pack-evidence-main p,
.pack-evidence-copy li,
.pack-data-card p {
  color: var(--pack-muted);
  line-height: 1.62;
}

.pack-evidence-copy {
  padding: 26px;
  border-radius: 30px;
  background:
    radial-gradient(circle at 100% 0%, rgba(122, 201, 67, 0.16), transparent 16rem),
    #ffffff;
}

.pack-evidence-copy ul {
  display: grid;
  gap: 14px;
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
}

.pack-evidence-copy li {
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 12px;
  align-items: start;
  padding: 14px;
  border: 1px solid rgba(17, 124, 231, 0.12);
  border-radius: 18px;
  background: #f7fbff;
}

.pack-evidence-copy i {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border-radius: 14px;
  color: #ffffff;
  background: linear-gradient(135deg, var(--pack-blue), var(--pack-green));
}

.pack-evidence-copy strong {
  color: var(--pack-ink);
}

.pack-data-gallery {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  margin-top: 18px;
}

.pack-data-card {
  position: relative;
  overflow: hidden;
  border-radius: 24px;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.pack-data-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 24px 64px rgba(6, 23, 45, 0.15);
}

.pack-data-card::before {
  content: "Diagnostic proof";
  margin: 18px 18px 0;
}

.pack-data-card img {
  display: block;
  width: 100%;
  height: 190px;
  object-fit: cover;
  background: #dfe7ef;
}

.pack-data-card h3 {
  padding: 16px 18px 0;
  font-size: 19px;
}

.pack-data-card p {
  margin: 0;
  padding: 8px 18px 20px;
  font-size: 15px;
}

.pack-data-card--wide {
  grid-column: span 2;
}

.pack-recovery-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  gap: 22px;
  align-items: center;
}

.pack-recovery {
  padding: 26px;
}

.pack-charge-visual {
  position: relative;
  min-height: 420px;
  border-radius: 30px;
  overflow: hidden;
  background: linear-gradient(135deg, #07172e, #0c5c84);
  box-shadow: var(--pack-shadow);
}

.pack-charge-visual::before {
  content: "";
  position: absolute;
  inset: 34px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 24px;
}

.pack-charge-rail {
  position: absolute;
  left: 12%;
  right: 12%;
  bottom: 26%;
  height: 18px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.14);
  overflow: hidden;
}

.pack-charge-rail span {
  display: block;
  width: 72%;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--pack-blue), var(--pack-green));
  animation: packCharge 4s ease-in-out infinite;
}

.pack-charge-nodes {
  position: absolute;
  inset: 20% 12% auto;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 14px;
}

.pack-charge-nodes i {
  display: block;
  height: 90px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.12);
  box-shadow: inset 0 -36px 0 rgba(122, 201, 67, 0.54);
}

.pack-charge-nodes i:nth-child(2) {
  box-shadow: inset 0 -22px 0 rgba(122, 201, 67, 0.54);
}

.pack-charge-nodes i:nth-child(4) {
  box-shadow: inset 0 -58px 0 rgba(122, 201, 67, 0.54);
}

.pack-charge-label {
  position: absolute;
  left: 10%;
  right: 10%;
  bottom: 12%;
  color: #ffffff;
  text-align: center;
  font-weight: 900;
}

.pack-faq-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.pack-faq {
  padding: 22px;
}

.pack-final {
  padding: 58px 0 70px;
}

.pack-final__box {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 26px;
  align-items: center;
  padding: 30px;
  border-radius: 30px;
  color: #ffffff;
  background:
    radial-gradient(circle at 88% 12%, rgba(122, 201, 67, 0.22), transparent 22rem),
    linear-gradient(135deg, #07172e, #0b5f89);
  box-shadow: var(--pack-shadow);
}

.pack-final h2 {
  color: #ffffff;
  font-size: clamp(30px, 4vw, 50px);
}

.pack-final p {
  max-width: 740px;
  margin: 14px 0 0;
  color: rgba(255, 255, 255, 0.78);
}

.pack-reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

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

@keyframes packFloat {
  0%, 100% { transform: translateY(0) rotate(1.2deg); }
  50% { transform: translateY(-12px) rotate(-0.4deg); }
}

@keyframes packFloatReverse {
  0%, 100% { transform: translateY(0) rotate(-4deg); }
  50% { transform: translateY(-10px) rotate(-2deg); }
}

@keyframes packCellGlow {
  0%, 100% { filter: brightness(1); }
  50% { filter: brightness(1.18); }
}

@keyframes packFaultPulse {
  0%, 100% {
    filter: brightness(1);
    box-shadow:
      inset 0 0 0 2px rgba(255, 255, 255, 0.18),
      inset 0 10px 18px rgba(255, 255, 255, 0.2),
      0 12px 24px rgba(0, 0, 0, 0.28),
      0 0 0 0 rgba(233, 47, 47, 0.42);
  }
  50% {
    filter: brightness(1.18);
    box-shadow:
      inset 0 0 0 2px rgba(255, 255, 255, 0.18),
      inset 0 10px 18px rgba(255, 255, 255, 0.2),
      0 12px 24px rgba(0, 0, 0, 0.28),
      0 0 0 12px rgba(233, 47, 47, 0);
  }
}

@keyframes packCharge {
  0%, 100% { width: 42%; }
  50% { width: 82%; }
}

@media (max-width: 991px) {
  .pack-hero__grid,
  .pack-intro,
  .pack-process,
  .pack-recovery-grid,
  .pack-final__box {
    grid-template-columns: 1fr;
  }

  .pack-hero::before {
    background:
      linear-gradient(180deg, rgba(6, 23, 45, 0.46), transparent 76%),
      radial-gradient(circle at 75% 12%, rgba(255, 255, 255, 0.1), transparent 14rem);
  }

  .pack-visual {
    min-height: 520px;
  }

  .pack-process__copy {
    position: static;
  }

  .pack-faq-grid,
  .pack-component-points,
  .pack-evidence-layout {
    grid-template-columns: 1fr;
  }

  .pack-data-gallery {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .pack-final__box {
    text-align: left;
  }
}

@media (max-width: 575px) {
  .pack-hero {
    padding: 38px 0 46px;
  }

  .pack-hero h1 {
    font-size: 38px;
  }

  .pack-hero__lead {
    font-size: 17px;
    line-height: 1.54;
  }

  .pack-hero__question {
    font-size: 17px;
  }

  .pack-actions,
  .pack-final .pack-actions {
    display: grid;
  }

  .pack-visual {
    min-height: auto;
    display: grid;
    gap: 14px;
  }

  .pack-visual__main,
  .pack-visual__small,
  .pack-visual__badge {
    position: static;
    width: 100%;
    transform: none;
    animation: none;
  }

  .pack-visual__main img,
  .pack-visual__small img {
    height: 250px;
  }

  .pack-data-gallery {
    grid-template-columns: 1fr;
  }

  .pack-data-card--wide {
    grid-column: auto;
  }

  .pack-evidence-main img,
  .pack-data-card img {
    height: 220px;
    aspect-ratio: auto;
  }

  .pack-intro__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .pack-module-grid {
    grid-template-columns: repeat(6, minmax(0, 1fr));
  }

  .pack-step {
    grid-template-columns: 1fr;
  }

  .pack-charge-visual {
    min-height: 340px;
  }
}
