:root {
  --gold: #f0b429;
  --gold-light: #ffd166;
  --gold-dim: rgba(240, 180, 41, 0.12);
  --gold-border: rgba(240, 180, 41, 0.28);
  --bg: #080808;
  --bg-2: #0e0e0e;
  --bg-3: #151515;
  --text: #e8eaf0;
  --text-muted: #9a9da8;
  --white: #fff;
  --wa: #25d366;
  --radius-sm: 10px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --touch-min: 48px;
}
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-tap-highlight-color: transparent; }
body {
  font-family: Inter, system-ui, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  min-height: 100dvh;
}
a { color: var(--gold); text-decoration: none; }
a:hover { color: var(--gold-light); }
.skip-link {
  position: absolute; left: -9999px; top: 0; z-index: 9999;
  background: var(--gold); color: #000; padding: 0.5rem 1rem;
}
.skip-link:focus { left: 0; }

.order-site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(8, 8, 8, 0.92); backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}
.order-site-header__inner {
  max-width: min(1480px, 94vw); margin: 0 auto; padding: 0.85rem 1rem;
  display: flex; align-items: center; justify-content: space-between; gap: 1rem;
}
.order-logo { font-weight: 800; font-size: 1.15rem; color: var(--white); display: flex; align-items: center; gap: 0.4rem; }
.order-site-nav { display: flex; gap: 1.1rem; flex-wrap: wrap; align-items: center; }
.order-site-nav a { color: var(--text-muted); font-weight: 600; font-size: 0.88rem; }
.order-site-nav a:hover { color: var(--gold); }

.order-header-right {
  display: flex; align-items: center; gap: 0.85rem; flex-wrap: wrap; justify-content: flex-end;
}

.lang-switcher { position: relative; flex-shrink: 0; }
.lang-btn {
  display: flex; align-items: center; gap: 0.55rem; background: #161618;
  border: 1px solid rgba(255, 255, 255, 0.08); color: var(--white); font-weight: 500;
  font-size: 0.82rem; padding: 0.45rem 0.75rem; border-radius: 12px;
  cursor: pointer; transition: 0.2s ease; white-space: nowrap; min-height: 44px; font-family: inherit;
}
.lang-btn:hover { background: #222; }
.lang-btn .fa-globe { font-size: 1rem; color: #9aa0a6; }
.lang-btn .arrow { font-size: 0.7rem; color: #9aa0a6; transition: transform 0.25s; }
.lang-switcher.open .lang-btn .arrow { transform: rotate(180deg); }
.lang-dropdown {
  display: none; position: absolute; top: calc(100% + 6px); right: 0; background: var(--bg-3);
  border: 1px solid rgba(255, 255, 255, 0.1); border-radius: var(--radius-md); overflow: hidden;
  width: 150px; box-shadow: 0 16px 48px rgba(0, 0, 0, 0.85); z-index: 200;
}
.lang-switcher.open .lang-dropdown { display: block; }
.lang-option {
  display: flex; align-items: center; gap: 0.65rem; padding: 0.7rem 1rem;
  font-size: 0.85rem; color: var(--text); cursor: pointer; transition: background 0.15s;
}
.lang-option:hover { background: rgba(255, 255, 255, 0.07); }
.lang-option.active { color: var(--gold); font-weight: 700; }

.order-main {
  max-width: 720px; margin: 0 auto;
  padding: 1.25rem 1rem 2.5rem;
  padding-left: max(1rem, env(safe-area-inset-left));
  padding-right: max(1rem, env(safe-area-inset-right));
  padding-bottom: max(2.5rem, env(safe-area-inset-bottom));
}
.order-breadcrumb { font-size: 0.78rem; color: var(--text-muted); margin-bottom: 1rem; }
.order-breadcrumb a { color: var(--text-muted); }
.order-breadcrumb a:hover { color: var(--gold); }

.order-page-title {
  font-size: clamp(1.2rem, 4vw, 1.45rem);
  font-weight: 800; color: var(--white);
  margin-bottom: 0.35rem; line-height: 1.3;
}
.order-page-sub { color: var(--text-muted); font-size: 0.9rem; margin-bottom: 1.25rem; }

.selected-plan-box {
  background: var(--gold-dim); border: 1px solid var(--gold);
  border-radius: var(--radius-md); padding: 1rem; margin-bottom: 1rem;
}
.selected-plan-head {
  display: flex; align-items: flex-start; justify-content: space-between; gap: 1rem;
  text-align: left;
}
.selected-plan-label {
  font-size: 0.72rem; color: var(--gold); text-transform: uppercase;
  font-weight: 700; letter-spacing: 0.06em; margin-bottom: 0.25rem;
}
.selected-plan-name { font-size: 1.15rem; font-weight: 800; color: var(--white); }

.change-plan-btn {
  flex-shrink: 0; display: inline-flex; align-items: center; gap: 0.4rem;
  padding: 0.55rem 0.85rem; border-radius: var(--radius-sm);
  border: 1px solid var(--gold-border); background: rgba(0,0,0,0.25);
  color: var(--gold); font-size: 0.78rem; font-weight: 700;
  font-family: inherit; cursor: pointer; white-space: nowrap;
  min-height: var(--touch-min); touch-action: manipulation;
  text-decoration: none;
}
a.change-plan-btn:hover { background: rgba(240,180,41,0.12); border-color: var(--gold); color: var(--gold); }
.change-plan-btn[aria-expanded="true"] { background: var(--gold); color: #000; border-color: var(--gold); }

.plan-picker {
  background: var(--bg-3); border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-md); padding: 1rem; margin-bottom: 1.25rem;
}
.plan-picker[hidden] { display: none !important; }
.plan-picker__title {
  font-size: 0.92rem; font-weight: 700; color: var(--white);
  margin-bottom: 0.85rem;
}
.plan-picker__tabs {
  display: flex; gap: 0.45rem; margin-bottom: 0.85rem; flex-wrap: wrap;
}
.plan-picker__tab {
  flex: 1; min-width: 5.5rem; padding: 0.55rem 0.75rem;
  border-radius: 999px; border: 1.5px solid rgba(255,255,255,0.12);
  background: transparent; color: var(--text-muted);
  font-size: 0.82rem; font-weight: 700; font-family: inherit; cursor: pointer;
}
.plan-picker__tab.active {
  background: var(--gold); color: #000; border-color: var(--gold);
}
.plan-picker__grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 0.55rem;
}
@media (min-width: 520px) { .plan-picker__grid { grid-template-columns: repeat(4, 1fr); } }

.plan-option {
  position: relative; display: flex; flex-direction: column; align-items: center;
  justify-content: center; gap: 0.15rem; min-height: 4.5rem; padding: 0.65rem 0.4rem;
  border-radius: var(--radius-sm); border: 1.5px solid rgba(255,255,255,0.1);
  background: var(--bg-2); color: var(--text); font-family: inherit; cursor: pointer;
  text-align: center; touch-action: manipulation;
}
.plan-option__dur { font-size: 0.78rem; font-weight: 700; color: var(--white); }
.plan-option__price { font-size: 0.95rem; font-weight: 800; color: var(--gold); }
.plan-option__badge {
  position: absolute; top: -0.45rem; left: 50%; transform: translateX(-50%);
  font-size: 0.58rem; font-weight: 800; text-transform: uppercase;
  background: var(--gold); color: #000; padding: 0.12rem 0.45rem;
  border-radius: 999px; white-space: nowrap;
}
.plan-option.active {
  border-color: var(--gold); background: rgba(240,180,41,0.1);
  box-shadow: 0 0 0 1px rgba(240,180,41,0.25);
}
.plan-option:hover:not(.active) { border-color: rgba(240,180,41,0.45); }

.form-group { margin-bottom: 1rem; }
.form-label { display: block; font-weight: 600; font-size: 0.86rem; margin-bottom: 0.4rem; }
.form-hint { color: var(--text-muted); font-weight: 400; font-size: 0.72rem; margin-left: 0.28rem; }
.form-input {
  display: block; width: 100%; background: var(--bg-3);
  border: 1px solid rgba(255, 255, 255, 0.1); border-radius: var(--radius-sm);
  padding: 0.75rem 1rem; color: var(--white); font-size: 0.9rem;
  font-family: inherit; outline: none; transition: border-color 0.2s;
}
.form-input:focus { border-color: var(--gold); background: rgba(240, 180, 41, 0.05); }

.phone-input-wrap { display: flex; gap: 0.5rem; }
.phone-country-select {
  flex: 0 0 auto; min-width: 7.5rem; max-width: 42%;
  background: var(--bg-3); border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-sm); color: var(--white);
  font-size: 0.82rem; font-family: inherit; font-weight: 600;
  padding: 0.75rem 2rem 0.75rem 0.65rem; cursor: pointer;
  appearance: none; -webkit-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%23f0b429' d='M1 1l5 5 5-5'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 0.65rem center;
}
.phone-local { flex: 1; min-width: 0; }

.device-picker { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0.55rem; }
.dev-chip {
  position: relative; display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 0.35rem; min-height: 4.5rem; padding: 0.65rem 0.4rem;
  background: linear-gradient(160deg, rgba(255,255,255,0.06), rgba(255,255,255,0.02));
  border: 1.5px solid rgba(255,255,255,0.1); border-radius: 14px;
  cursor: pointer; font-family: inherit; touch-action: manipulation;
}
.dev-chip__icon {
  width: 2.35rem; height: 2.35rem; border-radius: 12px;
  display: flex; align-items: center; justify-content: center; font-size: 1.05rem;
  background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.1);
}
.dev-chip__icon--fire { color: #ff9900; }
.dev-chip__icon--android { color: #3ddc84; }
.dev-chip__icon--phone { color: #60a5fa; }
.dev-chip__icon--apple { color: #f5f5f7; }
.dev-chip__icon--tv { color: var(--gold); }
.dev-chip__icon--lg { color: #a50034; }
.dev-chip__icon--pc { color: #a78bfa; }
.dev-chip__icon--other { color: #94a3b8; }
.dev-chip__label { font-size: 0.72rem; font-weight: 600; color: var(--text-muted); text-align: center; }
.dev-chip__tick {
  position: absolute; top: 0.4rem; right: 0.4rem;
  width: 1.15rem; height: 1.15rem; border-radius: 50%;
  background: var(--gold); color: #000; font-size: 0.62rem;
  display: flex; align-items: center; justify-content: center;
  opacity: 0; transform: scale(0.5); transition: opacity 0.2s, transform 0.25s;
}
.dev-chip.active {
  border-color: var(--gold);
  background: linear-gradient(160deg, rgba(240,180,41,0.14), rgba(240,180,41,0.04));
  box-shadow: 0 0 0 1px rgba(240,180,41,0.2);
}
.dev-chip.active .dev-chip__label { color: var(--gold); }
.dev-chip.active .dev-chip__tick { opacity: 1; transform: scale(1); }

.submit-btn {
  width: 100%; padding: 0.95rem; border-radius: var(--radius-sm); border: none;
  background: var(--gold); color: #000; font-weight: 800; font-size: 1rem;
  font-family: inherit; cursor: pointer; display: flex; align-items: center; justify-content: center; gap: 0.5rem;
  min-height: var(--touch-min); touch-action: manipulation;
}
.submit-btn:hover { background: var(--gold-light); }
.submit-btn:disabled { opacity: 0.7; cursor: wait; }

.order-pay-foot {
  display: flex; gap: 0.75rem; align-items: flex-start;
  margin-top: 1rem; padding: 0.85rem 1rem;
  background: rgba(74, 222, 128, 0.08); border: 1px solid rgba(74, 222, 128, 0.22);
  border-radius: var(--radius-md);
}
.order-no-pay-icon { color: #4ade80; font-size: 1.25rem; flex-shrink: 0; margin-top: 0.1rem; }
.order-no-pay-text strong { display: block; color: var(--white); font-size: 0.88rem; margin-bottom: 0.2rem; }
.order-no-pay-text span { font-size: 0.8rem; color: var(--text-muted); line-height: 1.45; }

.order-trust {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 0.5rem;
  margin-top: 1.25rem; text-align: center; font-size: 0.72rem; color: var(--text-muted);
}
.order-trust i { display: block; color: var(--gold); font-size: 1rem; margin-bottom: 0.25rem; }

.order-site-footer {
  max-width: 720px; margin: 0 auto; padding: 1.5rem 1rem 2rem;
  border-top: 1px solid rgba(255,255,255,0.06); text-align: center;
  font-size: 0.78rem; color: var(--text-muted);
}
.order-site-footer a { margin: 0 0.35rem; }

@media (min-width: 640px) {
  .order-main { padding-top: 1.75rem; }
  .device-picker { gap: 0.62rem; }
  .dev-chip { min-height: 4.75rem; }
}

@media (max-width: 480px) {
  .selected-plan-head { flex-direction: column; align-items: stretch; }
  .change-plan-btn { width: 100%; justify-content: center; }
}

/* ——— Full pricing grid (plans section) ——— */
:root {
  --green: #4ade80;
  --radius-xl: 999px;
  --transition: 0.2s ease;
  --transition-slow: 0.35s ease;
  --shadow-lg: 0 12px 40px rgba(0, 0, 0, 0.45);
  --shadow-gold: 0 8px 32px rgba(240, 180, 41, 0.22);
}

.pricing-page-section {
  position: relative;
  overflow: hidden;
  background: var(--bg-2);
  padding: 1.25rem 1rem 2.5rem;
  padding-left: max(1rem, env(safe-area-inset-left));
  padding-right: max(1rem, env(safe-area-inset-right));
}
.pricing-page-inner {
  position: relative;
  z-index: 1;
  max-width: min(1480px, 94vw);
  margin: 0 auto;
}
.pricing-page-head { text-align: center; margin-bottom: 1rem; }
.pricing-page-title {
  font-size: clamp(1.5rem, 4vw, 2rem);
  font-weight: 900;
  color: var(--white);
  margin-bottom: 0.35rem;
}
.pricing-page-sub {
  color: var(--text-muted);
  font-size: 0.9rem;
  max-width: 560px;
  margin: 0 auto 0.75rem;
}

.pricing-bg {
  position: absolute; inset: 0; z-index: 0; pointer-events: none; overflow: hidden;
}
.pricing-bg::before {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 90% 70% at 50% 40%, rgba(240, 180, 41, 0.14) 0%, transparent 55%),
    radial-gradient(ellipse 50% 40% at 0% 100%, rgba(240, 180, 41, 0.08) 0%, transparent 50%);
}
.pricing-bg__orb {
  position: absolute; border-radius: 50%; filter: blur(80px);
  animation: pricingOrbFloat 16s ease-in-out infinite alternate;
}
.pricing-bg__orb--1 {
  width: min(50vw, 520px); height: min(50vw, 520px);
  top: 5%; left: 50%;
  background: rgba(240, 180, 41, 0.2);
  animation-name: pricingOrbFloatCenter;
}
.pricing-bg__orb--2 {
  width: min(35vw, 380px); height: min(35vw, 380px);
  bottom: -5%; right: -8%;
  background: rgba(240, 180, 41, 0.1);
  animation-delay: -5s;
}
.pricing-bg__grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: radial-gradient(ellipse 85% 75% at 50% 50%, #000 20%, transparent 72%);
  opacity: 0.45;
}
@keyframes pricingOrbFloat {
  0% { transform: translate(0, 0) scale(1); }
  100% { transform: translate(20px, -15px) scale(1.05); }
}
@keyframes pricingOrbFloatCenter {
  0% { transform: translateX(-50%) translateY(0) scale(1); }
  100% { transform: translateX(-50%) translateY(-12px) scale(1.06); }
}
@keyframes glowPulse {
  0%, 100% { box-shadow: var(--shadow-gold); }
  50% { box-shadow: 0 10px 40px rgba(240, 180, 41, 0.35); }
}

.pricing-top-banners { display: flex; flex-direction: column; align-items: center; gap: 0.35rem; margin-bottom: 1rem; }
.trial-banner {
  display: inline-flex; align-items: center; gap: 0.5rem;
  background: var(--gold-dim); border: 1px solid var(--gold-border);
  color: var(--gold); padding: 0.35rem 1.1rem; border-radius: 50px;
  font-size: 0.8rem; font-weight: 700;
}
.no-contract { color: var(--text-muted); font-size: 0.74rem; font-weight: 500; }
.pricing-hint {
  display: inline-flex; align-items: center; gap: 0.4rem;
  font-size: 0.78rem; color: var(--text-muted); margin-bottom: 0.7rem;
}

.device-tabs {
  display: flex; gap: 0.45rem; justify-content: stretch;
  margin-bottom: 0.9rem; flex-wrap: wrap; width: 100%;
}
@media (min-width: 521px) {
  .device-tabs { justify-content: center; gap: 0.55rem; width: auto; }
}
.device-tab {
  display: inline-flex; align-items: center; justify-content: center;
  font-weight: 600; font-size: 0.82rem; padding: 0.5rem 0.9rem;
  border-radius: var(--radius-xl); border: 1.5px solid rgba(255, 255, 255, 0.13);
  color: var(--text-muted); cursor: pointer; transition: var(--transition);
  background: transparent; font-family: inherit;
  flex: 1 1 calc(50% - 0.25rem); min-height: var(--touch-min); min-width: 0;
}
@media (min-width: 521px) {
  .device-tab { flex: 0 1 auto; padding: 0.52rem 1.6rem; }
}
.device-tab.active {
  background: var(--gold); color: #000; border-color: var(--gold);
  box-shadow: 0 3px 12px rgba(240, 180, 41, 0.3);
}
.device-tab:hover:not(.active) { border-color: var(--gold); color: var(--gold); }

.pricing-grid {
  display: grid; grid-template-columns: 1fr; gap: 0.75rem;
  align-items: stretch; overflow: visible; padding-top: 0.25rem;
}
.pricing-grid[hidden] { display: none !important; }
@media (min-width: 560px) {
  .pricing-grid { grid-template-columns: repeat(2, 1fr); gap: 0.85rem; }
}
@media (min-width: 1100px) {
  .pricing-grid { grid-template-columns: repeat(4, 1fr); gap: 0.9rem; }
  .plan-card:not(.popular) .plan-top-spacer { min-height: 1.4rem; }
  .plan-card:not(.popular) .plan-extras-spacer { min-height: 1.4rem; }
  .plan-card:not(.popular) .plan-extras-spacer--double { min-height: 2.65rem; }
}

.plan-card {
  background: var(--bg-3); border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: var(--radius-lg); padding: 1.35rem 1.1rem 1.2rem;
  position: relative; transition: var(--transition-slow);
  display: flex; flex-direction: column; opacity: 0.87; overflow: visible;
}
.plan-card:hover {
  transform: translateY(-5px); border-color: rgba(240, 180, 41, 0.3);
  opacity: 1; box-shadow: var(--shadow-lg);
}
.plan-card.popular {
  border-color: var(--gold);
  background: linear-gradient(145deg, #1a1400, #111);
  opacity: 1; z-index: 2; box-shadow: var(--shadow-gold);
  margin-top: 0.5rem; padding-top: 1.35rem;
}
.plan-card.selected {
  border-color: var(--gold);
  box-shadow: 0 0 0 2px rgba(240, 180, 41, 0.35);
  opacity: 1;
}
@media (min-width: 1100px) {
  .plan-card.popular { margin-top: 0; transform: scale(1.02); animation: glowPulse 4s ease-in-out infinite; }
}

.popular-badge {
  position: absolute; top: 0; left: 50%; transform: translate(-50%, -50%);
  background: var(--gold); color: #000; font-weight: 800; font-size: 0.68rem;
  text-transform: uppercase; padding: 0.35rem 0.9rem; border-radius: 50px;
  white-space: nowrap; z-index: 4;
}
.save-badge {
  display: inline-block; background: rgba(74, 222, 128, 0.14);
  color: var(--green); border: 1px solid rgba(74, 222, 128, 0.3);
  font-size: 0.65rem; font-weight: 700; padding: 0.18rem 0.55rem;
  border-radius: 6px; margin-bottom: 0.5rem; line-height: 1.25;
}

/* Reserve space on shorter plans so feature lists align with 12-month card */
.plan-top-spacer {
  display: block;
  min-height: 1.35rem;
  margin-bottom: 0.5rem;
}
.plan-extras-spacer {
  display: block;
  min-height: 1.35rem;
  margin-bottom: 0.65rem;
}
.plan-extras-spacer--double {
  min-height: 2.55rem;
}

.plan-dur { font-weight: 700; font-size: 1rem; color: var(--white); margin-bottom: 0.35rem; }
.plan-price-wrap { margin-bottom: 0.15rem; }
.plan-price-wrap .cur { font-size: 0.95rem; font-weight: 700; color: var(--gold); vertical-align: super; }
.plan-price-wrap .amount { font-size: 2.5rem; font-weight: 900; color: var(--white); letter-spacing: -0.02em; line-height: 1; }
.plan-price-wrap .cents { font-size: 1.05rem; font-weight: 700; color: var(--text-muted); vertical-align: super; }
.monthly-equiv { font-size: 0.86rem; color: var(--gold); font-weight: 700; margin-top: 0; margin-bottom: 0.65rem; line-height: 1.25; }
.per-device { font-size: 0.72rem; color: var(--text-muted); font-style: italic; margin-top: 0; margin-bottom: 0.65rem; line-height: 1.25; }

.plan-features { list-style: none; margin: 0 0 1rem; padding: 0; flex: 1; }
.plan-features li {
  display: flex; align-items: flex-start; gap: 0.55rem;
  font-size: 0.84rem; color: var(--text); margin-bottom: 0.7rem; line-height: 1.55;
}
.plan-features li .check-icon { color: var(--gold); flex-shrink: 0; margin-top: 0.2rem; font-size: 0.78rem; }

.plan-btn {
  display: block; text-align: center; background: transparent;
  border: 1.5px solid rgba(255, 255, 255, 0.16); color: var(--white);
  font-weight: 700; font-size: 0.9rem; padding: 0.82rem;
  border-radius: var(--radius-sm); transition: var(--transition);
  cursor: pointer; width: 100%; min-height: var(--touch-min);
  margin-top: auto; font-family: inherit; text-decoration: none;
}
.plan-btn:hover { background: rgba(255, 255, 255, 0.06); border-color: var(--white); }
.plan-card.popular .plan-btn { background: var(--gold); color: #000; border-color: var(--gold); }
.plan-card.popular .plan-btn:hover { background: var(--gold-light); }

.checkout-section {
  background: var(--bg);
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding: 2rem 1rem 2.5rem;
  padding-left: max(1rem, env(safe-area-inset-left));
  padding-right: max(1rem, env(safe-area-inset-right));
  padding-bottom: max(2.5rem, env(safe-area-inset-bottom));
}
.checkout-section--solo {
  border-top: none;
  min-height: calc(100dvh - 4rem);
  padding-top: 1.5rem;
}
.order-page-main { min-height: calc(100dvh - 4rem); }
.checkout-section[hidden] { display: none !important; }
.checkout-inner {
  max-width: 720px; margin: 0 auto;
}
.checkout-title {
  font-size: clamp(1.2rem, 4vw, 1.45rem);
  font-weight: 800; color: var(--white); margin-bottom: 0.35rem;
}
.checkout-sub { color: var(--text-muted); font-size: 0.9rem; margin-bottom: 1.25rem; }

.order-site-footer { max-width: min(1480px, 94vw); }
