/* ================================================
   VOLTRA SERVICES — Offers.css
   Complete responsive styling
   ================================================ */

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  width: 100%;
  overflow-x: hidden;
  scroll-behavior: smooth;
}

body {
  width: 100%;
  min-width: 0;
  margin: 0;
  overflow-x: hidden;
}

img,
svg {
  display: block;
  max-width: 100%;
}

.offers-page {
  background-color: #080808;
  transition: background-color 0.3s ease;
}

.offers-page .page-bg {
  display: none;
}

/* MAIN */

.off-main {
  position: relative;
  z-index: 1;

  width: 100%;
  min-width: 0;
  min-height: 100vh;

  padding-top: calc(68px + 40px);
  padding-bottom: 80px;
}

/* HAMBURGER */

.nav-hamburger {
  position: relative;
  z-index: 110;

  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;

  width: 42px;
  height: 42px;
  padding: 4px;

  flex-shrink: 0;

  background: transparent;
  border: 0;
  border-radius: 8px;

  cursor: pointer;
  touch-action: manipulation;
}

.nav-hamburger span {
  display: block;

  width: 22px;
  height: 2px;

  background: #ffffff;
  border-radius: 2px;

  transform-origin: center;

  transition:
    transform 0.28s ease,
    opacity 0.2s ease,
    background 0.3s ease;
}

.nav-hamburger.is-open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav-hamburger.is-open span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}

.nav-hamburger.is-open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* PAGE HEADER */

.off-header {
  padding: 0 16px 40px;
  text-align: center;
}

.currency-selector {
  display: inline-flex;
  align-items: center;
  gap: 6px;

  max-width: 100%;
  padding: 5px;
  margin-bottom: 20px;

  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 24px;

  transition: background 0.3s ease, border-color 0.3s ease;
}

.currency-btn {
  min-width: 70px;
  min-height: 40px;
  padding: 8px 15px;

  font-family: "Barlow", sans-serif;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;

  color: rgba(255, 255, 255, 0.65);
  background: transparent;

  border: 0;
  border-radius: 18px;

  cursor: pointer;
  touch-action: manipulation;

  transition:
    background 0.25s ease,
    color 0.25s ease,
    box-shadow 0.25s ease;
}

.currency-btn:hover {
  color: #ffffff;
}

.currency-btn.is-active {
  color: #ffffff;

  background:
    linear-gradient(
      135deg,
      #1a8cff,
      #3a5af0
    );

  box-shadow:
    0 5px 18px rgba(26, 140, 255, 0.28);
}

.currency-btn:focus-visible,
.off-btn:focus-visible,
.pkg-btn:focus-visible,
.nav-hamburger:focus-visible {
  outline: 2px solid #ffffff;
  outline-offset: 3px;
}

.off-title {
  margin: 0 0 14px;

  font-family: "Barlow Condensed", sans-serif;
  font-size: clamp(2.2rem, 8vw, 5.6rem);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.01em;

  color: #ffffff;

  overflow-wrap: anywhere;
}

.off-title-blue {
  background:
    linear-gradient(
      90deg,
      #a0c4ff 0%,
      #4a9eff 45%,
      #1a6fff 100%
    );

  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.off-subtitle {
  margin: 0 0 20px;

  font-family: "Barlow", sans-serif;
  font-size: 0.9rem;
  line-height: 1.55;

  color: rgba(255, 255, 255, 0.65);
}

.off-subtitle strong {
  color: #ffffff;
  font-weight: 700;
}

.off-divider {
  width: 44px;
  height: 3px;
  margin: 0 auto;

  background:
    linear-gradient(
      90deg,
      #1a8cff,
      #5ab4ff
    );

  border-radius: 2px;
}

/* SECTION WRAPPER */

.off-section {
  width: 100%;
  max-width: 1320px;
  min-width: 0;

  padding: 0 16px;
  margin: 0 auto 56px;
}

.off-section--packages {
  margin-bottom: 0;
}

.off-section-label {
  margin-bottom: 28px;
  text-align: center;
}

.label-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;

  max-width: 100%;
  padding: 7px 20px;
  margin-bottom: 10px;

  font-family: "Barlow", sans-serif;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.1em;

  border-radius: 24px;
}

.label-badge--discount {
  color: #fca5a5;
  background: rgba(239, 68, 68, 0.12);
  border: 1px solid rgba(239, 68, 68, 0.35);
}

.label-badge--pkg {
  color: #c4b5fd;
  background: rgba(139, 92, 246, 0.12);
  border: 1px solid rgba(139, 92, 246, 0.35);
}

.label-sub {
  margin: 0;

  font-family: "Barlow", sans-serif;
  font-size: 0.82rem;
  line-height: 1.5;

  color: rgba(255, 255, 255, 0.45);
}

/* CARD GRIDS */

.off-cards {
  display: grid;
  gap: 16px;

  width: 100%;
  min-width: 0;
}

.off-cards--discount,
.off-cards--packages {
  grid-template-columns: minmax(0, 1fr);
}

/* GENERAL CARD */

.off-card {
  min-width: 0;
  overflow: hidden;

  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 20px;

  animation: offCardIn 0.55s ease both;

  transition:
    transform 0.25s cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 0.25s ease,
    border-color 0.25s ease,
    background 0.3s ease;
}

.off-card:hover {
  transform: translateY(-5px);
}

.off-card[data-index="0"] {
  animation-delay: 0.05s;
}

.off-card[data-index="1"] {
  animation-delay: 0.12s;
}

.off-card[data-index="2"] {
  animation-delay: 0.19s;
}

.off-card[data-index="3"] {
  animation-delay: 0.26s;
}

@keyframes offCardIn {
  from {
    opacity: 0;
    transform: translateY(24px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.off-card-inner {
  display: flex;
  flex-direction: column;
  align-items: center;

  min-width: 0;
  height: 100%;
  padding: 28px 20px 24px;

  text-align: center;
}

/* OFFER CARD THEMES */

.off-card--blue {
  background:
    linear-gradient(
      160deg,
      #0b1535 0%,
      #0d1a40 100%
    );
}

.off-card--blue:hover {
  box-shadow:
    0 20px 48px rgba(58, 90, 240, 0.25);
}

.off-card--purple {
  background:
    linear-gradient(
      160deg,
      #120a2a 0%,
      #1a0d38 100%
    );
}

.off-card--purple:hover {
  box-shadow:
    0 20px 48px rgba(124, 58, 237, 0.25);
}

.off-card--pink {
  background:
    linear-gradient(
      160deg,
      #1a0820 0%,
      #220a28 100%
    );
}

.off-card--pink:hover {
  box-shadow:
    0 20px 48px rgba(236, 72, 153, 0.25);
}

.off-card--green {
  background:
    linear-gradient(
      160deg,
      #041410 0%,
      #071c16 100%
    );
}

.off-card--green:hover {
  box-shadow:
    0 20px 48px rgba(16, 185, 129, 0.22);
}

/* ILLUSTRATIONS */

.off-illustration {
  display: flex;
  justify-content: center;

  width: 100%;
  margin-bottom: 18px;
}

.ill-circle {
  position: relative;

  display: flex;
  align-items: center;
  justify-content: center;

  width: 110px;
  height: 90px;

  border-radius: 50%;
}

.ill-circle--blue {
  background:
    radial-gradient(
      circle,
      rgba(58, 90, 240, 0.25) 0%,
      transparent 70%
    );
}

.ill-circle--purple {
  background:
    radial-gradient(
      circle,
      rgba(124, 58, 237, 0.3) 0%,
      transparent 70%
    );
}

.ill-circle--pink {
  background:
    radial-gradient(
      circle,
      rgba(219, 39, 119, 0.25) 0%,
      transparent 70%
    );
}

.ill-circle--green {
  background:
    radial-gradient(
      circle,
      rgba(16, 185, 129, 0.25) 0%,
      transparent 70%
    );
}

.ill-svg {
  width: 100px;
  height: 82px;
}

/* SPARKLES */

.sparkle {
  position: absolute;

  font-size: 0.6rem;
  opacity: 0.7;

  animation:
    sparkleFloat 2.8s ease-in-out infinite;
}

.s1 {
  top: 6px;
  left: 10px;
  color: #a0c4ff;
}

.s2 {
  top: 18px;
  right: 8px;
  color: #c4b5fd;
}

.s3 {
  bottom: 8px;
  left: 22px;
  color: #93c5fd;
}

@keyframes sparkleFloat {
  0%,
  100% {
    opacity: 0.7;
    transform: translateY(0) scale(1);
  }

  50% {
    opacity: 1;
    transform: translateY(-5px) scale(1.25);
  }
}

/* OFFER BADGES */

.off-badge-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;

  margin-bottom: 14px;
}

.off-num {
  display: flex;
  align-items: center;
  justify-content: center;

  width: 34px;
  height: 34px;

  flex-shrink: 0;

  background: rgba(10, 20, 50, 0.8);
  border: 1.5px solid rgba(74, 158, 255, 0.4);
  border-radius: 50%;

  transition: background 0.3s ease;
}

.off-num span {
  font-family: "Barlow", sans-serif;
  font-size: 0.72rem;
  font-weight: 600;

  color: rgba(255, 255, 255, 0.8);
}

.off-num--purple {
  background: rgba(20, 10, 45, 0.8);
  border-color: rgba(167, 139, 250, 0.5);
}

.off-num--pink {
  background: rgba(25, 8, 32, 0.8);
  border-color: rgba(236, 72, 153, 0.5);
}

.off-num--green {
  background: rgba(4, 20, 16, 0.8);
  border-color: rgba(16, 185, 129, 0.5);
}

.discount-pill {
  padding: 3px 10px;

  font-family: "Barlow", sans-serif;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.06em;

  color: #fca5a5;
  background: rgba(239, 68, 68, 0.15);

  border: 1px solid rgba(239, 68, 68, 0.4);
  border-radius: 12px;
}

/* OFFER TEXT */

.off-name {
  margin: 0 0 8px;

  font-family: "Barlow", sans-serif;
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.3;

  color: #ffffff;

  overflow-wrap: anywhere;
}

.off-desc {
  margin: 0 0 14px;

  flex: 1;

  font-family: "Barlow", sans-serif;
  font-size: 0.78rem;
  line-height: 1.6;

  color: rgba(255, 255, 255, 0.5);

  overflow-wrap: anywhere;
}

/* OFFER PRICES */

.off-price-block {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;

  margin-bottom: 12px;
}

.off-price-was {
  font-family: "Barlow Condensed", sans-serif;
  font-size: 0.88rem;

  color: rgba(255, 255, 255, 0.35);

  text-decoration: line-through;
  text-decoration-color: rgba(239, 68, 68, 0.6);
}

.off-price-now {
  font-family: "Barlow Condensed", sans-serif;
  font-size: 1.25rem;
  font-weight: 800;
  letter-spacing: -0.01em;

  color: #ffffff;
}

/* OFFER DETAIL */

.off-detail {
  display: flex;
  align-items: flex-start;
  gap: 8px;

  width: 100%;
  padding: 0 2px;
  margin-bottom: 18px;

  font-family: "Barlow", sans-serif;
  font-size: 0.75rem;
  line-height: 1.5;
  text-align: left;

  color: rgba(255, 255, 255, 0.5);

  overflow-wrap: anywhere;
}

.detail-icon {
  flex-shrink: 0;
  font-size: 0.85rem;
}

.detail-icon--blue {
  color: #4a9eff;
}

.detail-icon--purple {
  color: #a78bfa;
}

.detail-icon--pink {
  color: #f472b6;
}

.detail-icon--green {
  color: #34d399;
}

/* OFFER BUTTONS */

.off-btn,
.pkg-btn {
  position: relative;

  display: inline-flex;
  align-items: center;
  justify-content: center;

  width: 100%;
  min-height: 46px;

  text-align: center;
  text-decoration: none;

  cursor: pointer;
  touch-action: manipulation;
}

.off-btn {
  padding: 12px 18px;
  margin-top: auto;

  font-family: "Barlow", sans-serif;
  font-size: 0.88rem;
  font-weight: 600;

  border-radius: 10px;

  transition:
    filter 0.2s ease,
    transform 0.18s ease,
    box-shadow 0.2s ease;
}

.off-btn:hover,
.pkg-btn:hover {
  filter: brightness(1.12);
  transform: translateY(-2px);
}

.off-btn--blue {
  color: #ffffff;
  background: #3a5af0;
  box-shadow: 0 4px 18px rgba(58, 90, 240, 0.4);
}

.off-btn--purple {
  color: #ffffff;
  background: #7c3aed;
  box-shadow: 0 4px 18px rgba(124, 58, 237, 0.4);
}

.off-btn--pink {
  color: #ffffff;
  background: #db2777;
  box-shadow: 0 4px 18px rgba(219, 39, 119, 0.4);
}

.off-btn--green {
  color: #ffffff;
  background: #059669;
  box-shadow: 0 4px 18px rgba(5, 150, 105, 0.4);
}

/* PACKAGE CARDS */

.pkg-card {
  position: relative;
  min-width: 0;

  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
}

.pkg-card--blue {
  background:
    linear-gradient(
      145deg,
      #0a1428 0%,
      #0d1e45 100%
    );
}

.pkg-card--blue:hover {
  border-color: rgba(26, 140, 255, 0.35);
  box-shadow:
    0 20px 50px rgba(26, 140, 255, 0.2);
}

.pkg-card--purple {
  background:
    linear-gradient(
      145deg,
      #100820 0%,
      #180d3a 100%
    );
}

.pkg-card--purple:hover {
  border-color: rgba(124, 58, 237, 0.35);
  box-shadow:
    0 20px 50px rgba(124, 58, 237, 0.2);
}

.pkg-card--orange {
  background:
    linear-gradient(
      145deg,
      #160800 0%,
      #200e00 100%
    );
}

.pkg-card--orange:hover {
  border-color: rgba(234, 88, 12, 0.4);
  box-shadow:
    0 20px 50px rgba(234, 88, 12, 0.22);
}

.pkg-card--gold {
  background:
    linear-gradient(
      145deg,
      #141000 0%,
      #1e1700 100%
    );
}

.pkg-card--gold:hover {
  border-color: rgba(202, 138, 4, 0.35);
  box-shadow:
    0 20px 50px rgba(202, 138, 4, 0.2);
}

/* FEATURED PACKAGE */

.pkg-featured {
  border-color: rgba(234, 88, 12, 0.4);
  box-shadow: 0 0 0 1px rgba(234, 88, 12, 0.2);
}

.pkg-featured-badge {
  position: absolute;
  top: 0;
  left: 50%;
  z-index: 2;

  padding: 5px 18px;

  font-family: "Barlow", sans-serif;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.08em;

  white-space: nowrap;
  color: #ffffff;

  background:
    linear-gradient(
      90deg,
      #ea580c,
      #f97316
    );

  border-radius: 0 0 12px 12px;

  transform: translateX(-50%);
}

.pkg-inner {
  display: flex;
  flex-direction: column;

  min-width: 0;
  height: 100%;
  padding: 28px 22px 24px;
}

.pkg-featured .pkg-inner {
  padding-top: 38px;
}

.pkg-top {
  display: flex;
  align-items: center;
  justify-content: space-between;

  margin-bottom: 14px;
}

.pkg-icon {
  font-size: 1.8rem;
}

.pkg-num {
  font-family: "Barlow Condensed", sans-serif;
  font-size: 2rem;
  font-weight: 800;
  line-height: 1;

  color: rgba(26, 140, 255, 0.25);
}

.pkg-num--purple {
  color: rgba(124, 58, 237, 0.3);
}

.pkg-num--orange {
  color: rgba(234, 88, 12, 0.3);
}

.pkg-num--gold {
  color: rgba(202, 138, 4, 0.3);
}

.pkg-name {
  margin: 0 0 6px;

  font-family: "Barlow Condensed", sans-serif;
  font-size: 1.5rem;
  font-weight: 800;
  line-height: 1.1;

  color: #ffffff;

  overflow-wrap: anywhere;
}

.pkg-tagline {
  margin: 0 0 18px;

  font-family: "Barlow", sans-serif;
  font-size: 0.78rem;
  line-height: 1.55;

  color: rgba(255, 255, 255, 0.45);

  overflow-wrap: anywhere;
}

/* PACKAGE SERVICES */

.pkg-services {
  display: flex;
  flex: 1;
  flex-direction: column;
  gap: 9px;

  padding: 0;
  margin: 0 0 20px;

  list-style: none;
}

.pkg-services li {
  display: flex;
  align-items: flex-start;
  gap: 9px;

  font-family: "Barlow", sans-serif;
  font-size: 0.8rem;
  line-height: 1.45;

  color: rgba(255, 255, 255, 0.7);

  overflow-wrap: anywhere;
}

.pkg-check {
  margin-top: 1px;
  flex-shrink: 0;

  font-size: 0.75rem;
  font-weight: 700;

  color: #4a9eff;
}

.pkg-check--purple {
  color: #a78bfa;
}

.pkg-check--orange {
  color: #fb923c;
}

.pkg-check--gold {
  color: #fbbf24;
}

.pkg-divider {
  height: 1px;
  margin-bottom: 18px;

  background: rgba(255, 255, 255, 0.07);
}

/* PACKAGE PRICES */

.pkg-price-row {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 8px;

  margin-bottom: 18px;
}

.pkg-price {
  display: block;

  font-family: "Barlow Condensed", sans-serif;
  font-size: 1.9rem;
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.02em;

  color: #4a9eff;

  overflow-wrap: anywhere;
}

.pkg-price--purple {
  color: #a78bfa;
}

.pkg-price--orange {
  color: #fb923c;
}

.pkg-price--gold {
  color: #fbbf24;
}

.pkg-timeline {
  display: block;
  margin-top: 4px;

  font-family: "Barlow", sans-serif;
  font-size: 0.72rem;

  color: rgba(255, 255, 255, 0.4);
}

/* PACKAGE BUTTONS */

.pkg-btn {
  padding: 13px 20px;

  font-family: "Barlow", sans-serif;
  font-size: 0.88rem;
  font-weight: 600;

  border-radius: 10px;

  transition:
    filter 0.2s ease,
    transform 0.18s ease,
    box-shadow 0.2s ease;
}

.pkg-btn--blue {
  color: #ffffff;
  background: #1a8cff;
  box-shadow: 0 4px 18px rgba(26, 140, 255, 0.4);
}

.pkg-btn--purple {
  color: #ffffff;
  background: #7c3aed;
  box-shadow: 0 4px 18px rgba(124, 58, 237, 0.4);
}

.pkg-btn--orange {
  color: #ffffff;
  background: #ea580c;
  box-shadow: 0 4px 18px rgba(234, 88, 12, 0.4);
}

.pkg-btn--gold {
  color: #ffffff;
  background: #b45309;
  box-shadow: 0 4px 18px rgba(180, 83, 9, 0.4);
}

/* SMALL PHONES */

@media (max-width: 479px) {
  .off-main {
    padding-top: calc(56px + 24px);
    padding-bottom: 54px;
  }

  .off-header {
    padding: 0 14px 32px;
  }

  .off-title {
    font-size: clamp(2.15rem, 13vw, 3.3rem);
  }

  .off-subtitle {
    max-width: 320px;
    margin-right: auto;
    margin-left: auto;

    font-size: 0.84rem;
  }

  .currency-selector {
    display: grid;
    grid-template-columns:
      repeat(3, minmax(0, 1fr));

    width: min(100%, 300px);
  }

  .currency-btn {
    min-width: 0;
    padding: 8px 7px;
  }

  .off-section {
    padding: 0 14px;
    margin-bottom: 44px;
  }

  .off-section-label {
    margin-bottom: 22px;
  }

  .label-badge {
    padding: 7px 15px;
    font-size: 0.72rem;
  }

  .label-sub {
    max-width: 310px;
    margin-right: auto;
    margin-left: auto;
  }

  .off-cards--discount,
  .off-cards--packages {
    grid-template-columns: minmax(0, 1fr);
    gap: 16px;
  }

  .off-card-inner,
  .pkg-inner {
    padding-right: 18px;
    padding-left: 18px;
  }

  .pkg-featured .pkg-inner {
    padding-top: 42px;
  }

  .off-price-block {
    flex-wrap: wrap;
    row-gap: 5px;
  }

  .pkg-price {
    font-size: 1.75rem;
  }
}

/* LARGE PHONES */

@media (min-width: 480px) and (max-width: 679px) {
  .off-main {
    padding-top: calc(56px + 34px);
  }

  .off-section {
    padding: 0 18px;
  }

  .off-cards--discount,
  .off-cards--packages {
    grid-template-columns:
      repeat(2, minmax(0, 1fr));

    gap: 16px;
  }

  .off-card-inner,
  .pkg-inner {
    padding-right: 16px;
    padding-left: 16px;
  }

  .pkg-name {
    font-size: 1.35rem;
  }

  .pkg-price {
    font-size: 1.7rem;
  }
}

/* MOBILE NAVIGATION */

@media (max-width: 680px) {
  .nav-hamburger {
    display: flex;
  }

  .navbar {
    position: fixed !important;
    top: 0 !important;
    right: 0 !important;
    left: 0 !important;
    z-index: 1000;

    width: 100% !important;

    border-radius: 0 !important;

    transform: none !important;
  }

  .nav-inner {
    position: relative;

    display: flex;
    align-items: center;
    justify-content: space-between;

    width: 100% !important;
    height: 56px;
    padding: 0 16px !important;

    border-radius: 0 !important;
  }

  .nav-links {
    position: absolute;
    top: 56px;
    right: 0;
    left: 0;
    z-index: 1001;

    display: none;
    flex-direction: column;
    gap: 0;

    width: 100%;
    height: auto;
    max-height: calc(100vh - 56px);
    padding: 12px 0;
    margin: 0;

    overflow-y: auto;

    background: rgba(8, 20, 50, 0.98);

    border-top:
      1px solid rgba(26, 140, 255, 0.2);

    border-bottom:
      1px solid rgba(26, 140, 255, 0.2);

    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
  }

  .nav-links.is-open {
    display: flex;
  }

  .nav-links li {
    width: 100%;
  }

  .nav-link {
    display: block;

    width: 100%;
    padding: 13px 24px !important;

    font-size: 0.9rem !important;
    text-align: left;

    border-radius: 0 !important;
  }

  .nav-link.active::after {
    display: none;
  }

  .nav-link.active {
    padding-left: 21px !important;
    border-left: 3px solid #1a8cff;
  }
}

/* TABLETS */

@media (min-width: 681px) and (max-width: 1023px) {
  .off-main {
    padding-top: calc(68px + 48px);
  }

  .off-section {
    padding: 0 28px;
  }

  .off-cards--discount,
  .off-cards--packages {
    grid-template-columns:
      repeat(2, minmax(0, 1fr));

    gap: 20px;
  }
}

/* SMALL DESKTOPS */

@media (min-width: 1024px) and (max-width: 1199px) {
  .off-main {
    padding-top: calc(68px + 56px);
  }

  .off-section {
    padding: 0 30px;
  }

  .off-cards--discount {
    grid-template-columns:
      repeat(4, minmax(0, 1fr));

    gap: 16px;
  }

  .off-cards--packages {
    grid-template-columns:
      repeat(2, minmax(0, 1fr));

    gap: 20px;
  }
}

/* LARGE DESKTOPS */

@media (min-width: 1200px) {
  .off-main {
    padding-top: calc(68px + 60px);
  }

  .off-section {
    padding: 0 32px;
  }

  .off-cards--discount,
  .off-cards--packages {
    grid-template-columns:
      repeat(4, minmax(0, 1fr));

    gap: 18px;
  }
}

/* REDUCED MOTION */

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .off-card,
  .pkg-card,
  .sparkle {
    animation: none;
  }

  .off-card:hover,
  .pkg-card:hover {
    transform: none;
  }

  .currency-btn,
  .off-btn,
  .pkg-btn,
  .nav-hamburger span {
    transition: none;
  }
}

/* ================================================
   LIGHT MODE — toggled by .light-mode on <body>
   (Shared nav pill / hamburger / theme-toggle switch
   styling is already handled by Home.css since it
   loads first. This section covers everything unique
   to the Offers page.)
   ================================================ */

body.light-mode.offers-page {
  background-color: #f0f4ff;
}

/* Header */
body.light-mode .currency-selector {
  background: rgba(26,140,255,0.05);
  border-color: rgba(26,140,255,0.2);
}
body.light-mode .currency-btn {
  color: #475569;
}
body.light-mode .currency-btn:hover {
  color: #0d1117;
}
body.light-mode .currency-btn.is-active {
  color: #ffffff;
}

body.light-mode .off-title { color: #0d1117; }
body.light-mode .off-subtitle { color: #475569; }
body.light-mode .off-subtitle strong { color: #0d1117; }

body.light-mode .label-badge--discount {
  color: #b91c1c;
  background: rgba(239,68,68,0.08);
  border-color: rgba(239,68,68,0.3);
}
body.light-mode .label-badge--pkg {
  color: #6d28d9;
  background: rgba(139,92,246,0.08);
  border-color: rgba(139,92,246,0.3);
}
body.light-mode .label-sub { color: #64748b; }

/* Discounted offer cards — light tints per color family */
body.light-mode .off-card--blue {
  background: linear-gradient(160deg, #eef3ff 0%, #e2ecff 100%);
  border-color: rgba(58,90,240,0.15);
}
body.light-mode .off-card--purple {
  background: linear-gradient(160deg, #f6f0ff 0%, #ede2fd 100%);
  border-color: rgba(124,58,237,0.15);
}
body.light-mode .off-card--pink {
  background: linear-gradient(160deg, #fef1f7 0%, #fce4ef 100%);
  border-color: rgba(219,39,119,0.15);
}
body.light-mode .off-card--green {
  background: linear-gradient(160deg, #f0fdf7 0%, #e2f9ee 100%);
  border-color: rgba(16,185,129,0.18);
}

body.light-mode .off-num {
  background: rgba(255,255,255,0.85);
}
body.light-mode .off-num span { color: #334155; }

body.light-mode .off-name { color: #0d1117; }
body.light-mode .off-desc { color: #64748b; }
body.light-mode .off-price-was { color: #94a3b8; }
body.light-mode .off-price-now { color: #0d1117; }
body.light-mode .off-detail { color: #64748b; }

/* Booster package cards — light tints per color family */
body.light-mode .pkg-card--blue {
  background: linear-gradient(145deg, #eef3ff 0%, #e2ecff 100%);
  border-color: rgba(26,140,255,0.15);
}
body.light-mode .pkg-card--purple {
  background: linear-gradient(145deg, #f6f0ff 0%, #ede2fd 100%);
  border-color: rgba(124,58,237,0.15);
}
body.light-mode .pkg-card--orange {
  background: linear-gradient(145deg, #fff6ee 0%, #ffe9d5 100%);
  border-color: rgba(234,88,12,0.18);
}
body.light-mode .pkg-card--gold {
  background: linear-gradient(145deg, #fffbea 0%, #fef3c7 100%);
  border-color: rgba(202,138,4,0.18);
}
body.light-mode .pkg-featured {
  border-color: rgba(234,88,12,0.35);
  box-shadow: 0 0 0 1px rgba(234,88,12,0.15);
}

body.light-mode .pkg-name { color: #0d1117; }
body.light-mode .pkg-tagline { color: #64748b; }
body.light-mode .pkg-services li { color: #334155; }
body.light-mode .pkg-divider { background: rgba(15,23,42,0.08); }
body.light-mode .pkg-timeline { color: #64748b; }

/* Mobile dropdown nav */
@media (max-width: 680px) {
  body.light-mode .nav-links {
    background: rgba(255,255,255,0.98);
    border-top-color: rgba(26,140,255,0.2);
    border-bottom-color: rgba(26,140,255,0.2);
  }
  body.light-mode .nav-link { color: #334155; }
  body.light-mode .nav-link:hover {
    background: rgba(26,140,255,0.08);
    color: #1a8cff;
  }
  body.light-mode .nav-link.active {
    color: #1a8cff;
    background: rgba(26,140,255,0.08);
  }
}