:root{
  --bg:#0b0b10;
  --card:#15151d;
  --text:#ffffff;
  --muted:rgba(255,255,255,.7);
  --muted2:rgba(255,255,255,.55);
  --hot:#ff1f5b;
  --hot2:#ff2a6d;
  --shadow:0 20px 60px rgba(0,0,0,.55);
  --radius:18px;
}

*{box-sizing:border-box}
html{scroll-behavior:smooth}
html, body{ overflow-x:hidden; }
img, video{ max-width:100%; height:auto; }

body{
  margin:0;
  font-family:system-ui,-apple-system,Segoe UI,Roboto,Arial;
  background:
    radial-gradient(1100px 500px at 50% -10%, rgba(255,31,91,.22), transparent 60%),
    radial-gradient(900px 500px at 20% 20%, rgba(255,31,91,.12), transparent 60%),
    var(--bg);
  color:var(--text);
}
.container{ width:min(1100px, 92vw); margin:0 auto; }

/* ================= NAV ================= */
.topbar{
  position:fixed; top:0; left:0; right:0;
  z-index:999;
  padding:14px 0;
  background: linear-gradient(180deg, rgba(0,0,0,.55), rgba(0,0,0,0));
  transition: .25s ease;
}
.topbar.is-solid{
  background: rgba(10,10,14,.85);
  backdrop-filter: blur(10px);
  border-bottom:1px solid rgba(255,255,255,.06);
}
.nav{ display:flex; align-items:center; justify-content:space-between; gap:18px; }
.brand{ display:flex; align-items:center; text-decoration:none; color:#fff; }
.brand__logo{ height:30px; width:auto; object-fit:contain; }

.menu{ display:flex; align-items:center; gap:22px; }
.menu__link{
  text-decoration:none;
  color:rgba(255,255,255,.85);
  font-weight:800;
  font-size:12px;
  letter-spacing:.9px;
  position:relative;
  padding:10px 0;
}
.menu__link:hover{ color:#fff; }
.menu__link.is-active{ color:var(--hot); }
.menu__link.is-active::after{
  content:"";
  position:absolute; left:0; right:0; bottom:2px;
  height:2px; background:var(--hot);
  border-radius:3px;
}

.nav__actions{ display:flex; align-items:center; gap:10px; }
.iconBtn{
  display:none;
  width:42px;height:42px;
  border-radius:12px;
  border:1px solid rgba(255,255,255,.12);
  background: rgba(0,0,0,.25);
  color:#fff;
  cursor:pointer;
}

.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  text-decoration:none;
  border:1px solid rgba(255,255,255,.12);
  color:#fff;
  padding:12px 18px;
  border-radius:14px;
  font-weight:900;
  letter-spacing:.6px;
  font-size:12px;
  transition:.2s ease;
  background: rgba(255,255,255,.04);
}
.btn:hover{ transform: translateY(-1px); box-shadow: 0 14px 35px rgba(0,0,0,.35); }
.btn--pill{ border-radius:999px; padding:12px 22px; }
.btn--hot, .btn--primary{
  background: linear-gradient(180deg, var(--hot2), var(--hot));
  border-color: rgba(255,31,91,.55);
  box-shadow: 0 18px 45px rgba(255,31,91,.22);
}
.btn--wide{ width:100%; border-radius:999px; padding:13px 18px; }

/* MOBILE MENU */
.mobile{
  display:none;
  border-top:1px solid rgba(255,255,255,.06);
  background: rgba(10,10,14,.92);
  backdrop-filter: blur(12px);
  padding:10px 4vw 16px;
}
.mobile.is-open{ display:block; }
.mobile a{
  display:block;
  padding:12px 10px;
  color:#fff;
  text-decoration:none;
  font-weight:900;
  letter-spacing:.6px;
  border-radius:12px;
}
.mobile a:hover{ background: rgba(255,255,255,.06); }
#mobile a.is-active{ color:#ff1f5b; }

/* ================= HERO ================= */
.hero{
  min-height:100vh;
  padding-top:84px;
  position:relative;
  overflow:hidden;
  padding-bottom: 40px;
}
.hero__bg{
  position:absolute; inset:0;
  background:
    linear-gradient(180deg, rgba(0,0,0,.55), rgba(0,0,0,.55)),
    radial-gradient(900px 500px at 70% 60%, rgba(255,31,91,.35), transparent 60%),
    url("assets/BGg.jpg");
  background-size: cover;
  background-position:center;
  transform: scale(1.03);
}
.hero::after{
  content:"";
  position:absolute; inset:0;
  background: linear-gradient(90deg, rgba(255,31,91,.12), rgba(255,31,91,.32));
  mix-blend-mode:screen;
  opacity:.65;
  pointer-events:none;
}
.hero__content{
  position:relative;
  z-index:2;
  display:grid;
  place-items:center;
  text-align:center;
  padding: 70px 0 40px;
  margin-top: -40px; /* move texts up */
}
.hero__center{ width:min(840px, 100%); }
.hero__sub{
  margin: 18px auto 26px;
  width:min(640px, 96%);
  color: var(--muted);
  font-size: 13px;
  line-height: 1.6;
}
.hero__cta{ display:flex; justify-content:center; }

.fancyTitle{
  font-size: clamp(2.2rem, 7vw, 4rem);
  font-weight: 900;
  line-height: 1.15;
  color: transparent;
  background: linear-gradient(90deg,#ffffff,#ffd1e4,#ff1f5b);
  background-size: 300% 100%;
  background-clip: text;
  -webkit-background-clip: text;
  animation: fadeInUp 0.9s ease-out forwards 0.3s, shineText 4s ease-in-out infinite 1s;
  opacity: 0;
  text-shadow: 0 0 20px rgba(255, 31, 91, .3);
}
@keyframes shineText{ 0%{background-position:0% 50%} 50%{background-position:100% 50%} 100%{background-position:0% 50%} }
@keyframes fadeInUp{ from{opacity:0; transform: translateY(40px)} to{opacity:1; transform: translateY(0)} }

/* ================= SECTIONS ================= */
.section{ padding: 90px 0; position:relative; overflow:hidden; }
.kicker{
  margin:0 0 10px;
  color: rgba(255,31,91,.85);
  font-weight:950;
  letter-spacing:1px;
  text-align:center;
  font-size:12px;
  text-transform:uppercase;
}
.title{
  margin:0 0 26px;
  text-align:center;
  font-size: clamp(26px, 3vw, 44px);
  font-weight:950;
  letter-spacing:1px;
  text-transform:uppercase;
}
.title span{ color: var(--hot); }

/* Backgrounds per section */
#about{
  background:
    radial-gradient(circle at 20% 30%, #ff2d7a33, transparent 60%),
    linear-gradient(120deg, #0a0f1f, #070812);
}
#channels{
  background:
    radial-gradient(circle at 80% 40%, #00d4ff33, transparent 60%),
    linear-gradient(120deg, #05060a, #0a0f1f);
}
#setup{
  background:
    radial-gradient(circle at 30% 70%, #7c3aed33, transparent 60%),
    linear-gradient(120deg, #0a0c12, #05060a);
}
#pricing{
  background:
    radial-gradient(circle at 50% 30%, #ff2d7a22, transparent 60%),
    linear-gradient(120deg, #070812, #0a0f1f);
}
#faq{
  background:
    radial-gradient(circle at 70% 20%, #06b6d433, transparent 60%),
    linear-gradient(120deg, #05060a, #0a0f1f);
}
#contact{
  background:
    radial-gradient(circle at 40% 60%, #f43f5e33, transparent 60%),
    linear-gradient(120deg, #070812, #0a0c12);
}

/* ================= Cards ================= */
.cards3{ display:grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.card{
  background: rgba(255,255,255,.03);
  border:1px solid rgba(255,31,91,.35);
  border-radius: var(--radius);
  padding: 22px;
  box-shadow: var(--shadow);
  transition: .22s ease;
}
.card:hover{ transform: translateY(-6px); border-color: rgba(255,31,91,.75); }
.card__icon{
  width:44px; height:44px; display:grid; place-items:center;
  border-radius: 14px;
  background: rgba(255,31,91,.16);
  border:1px solid rgba(255,31,91,.35);
  margin-bottom: 12px;
}
.card h3{ margin:0 0 8px; font-weight:950; letter-spacing:.6px; text-transform:uppercase; font-size:14px; }
.card p{ margin:0; color: var(--muted2); font-size:13px; line-height:1.6; }

/* ================= About layout ================= */
.aboutGrid{
  display:grid;
  grid-template-columns: 360px 1fr 420px;
  gap: 40px;
  align-items:center;
}
.aboutLeft, .aboutLeft *{ text-align:center; }
.aboutLeft .aboutIcon{ margin: 0 auto 12px; }
.aboutCard{ padding: 18px 0; transition: transform .25s ease, box-shadow .25s ease; }
.aboutCard + .aboutCard{
  border-top: 1px solid rgba(255,255,255,.12);
  margin-top: 18px;
  padding-top: 18px;
}
.aboutCard:hover{ transform: translateY(-3px); box-shadow: 0 18px 45px rgba(255,31,91,.15); }
.aboutIcon{
  width: 56px; height: 56px;
  border-radius: 50%;
  display:grid; place-items:center;
  background: rgba(255,255,255,.10);
  border: 1px solid rgba(255,255,255,.12);
}
.aboutDescInline{
  color:rgba(255,255,255,.78);
  line-height:1.7;
  max-width:520px;
  margin: 0 auto 12px;
  text-align:center;
}
.aboutMap{ display:flex; justify-content:center; align-items:center; }
.mapWrap{ position:relative; width: min(520px, 100%); }
.mapWrap img{ width:100%; height:auto; display:block; filter: drop-shadow(0 25px 55px rgba(0,0,0,.45)); }
.mapWrap::after{
  content:"";
  position:absolute;
  left: 12%; right: 12%;
  bottom: -28px;
  height: 70px;
  background: radial-gradient(closest-side, rgba(255,31,91,.35), transparent 70%);
  filter: blur(18px);
}
.aboutRight{ text-align:center; }
.aboutRight .btn{ margin: 18px auto 0; display:inline-flex; }

/* ================= Setup Guide cards ================= */
.setupSteps{
  display:grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
  margin-top: 32px;
}
@media (max-width: 1100px){ .setupSteps{ grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 800px){ .setupSteps{ grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 520px){ .setupSteps{ grid-template-columns: 1fr; } }

.setupCard{
  background: linear-gradient(180deg,#111,#0b0b0f);
  border-radius:22px;
  padding:26px;
  border:1px solid rgba(255,255,255,.06);
  box-shadow:0 0 25px rgba(255,0,80,.08);
  transition:.3s ease;
}
.setupCard:hover{ transform:translateY(-6px); box-shadow:0 0 40px rgba(255,0,80,.25); }
.stepNum{
  width:42px; height:42px;
  border-radius:50%;
  background:#ff1f5b;
  display:flex; align-items:center; justify-content:center;
  font-weight:800;
  margin-bottom:15px;
}

/* ================= Popular channels slider ================= */
.chanCarousel{ position: relative; margin-top: 26px; }
.chanViewport{
  overflow: hidden;
  border-radius: 22px;
  padding: 4px 0;
}
.chanTrack{
  display: flex;
  gap: 18px;
  align-items: center;
  width: max-content;
  will-change: transform;
  transform: translate3d(0,0,0);
}
.chanCard{
  flex: 0 0 auto;
  width: 260px;
  height: 360px;
  border-radius: 26px;
  overflow: hidden;
  border: 2px solid rgba(255,31,91,.55);
  box-shadow: 0 25px 65px rgba(0,0,0,.55);
  background: rgba(255,255,255,.02);
  transition: transform .2s ease, border-color .2s ease;
}
.chanCard:hover{ transform: translateY(-6px); border-color: rgba(255,31,91,.95); }
.chanCard img{ width: 100%; height: 100%; display: block; object-fit: cover; }
.chanArrow{
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 54px;
  height: 54px;
  border-radius: 16px;
  border: 1px solid rgba(255,255,255,.18);
  background: rgba(20,20,26,.65);
  backdrop-filter: blur(10px);
  color: #fff;
  cursor: pointer;
  display: grid;
  place-items: center;
  z-index: 5;
  transition: transform .15s ease, background .15s ease;
}
.chanArrow:hover{
  transform: translateY(-50%) scale(1.05);
  background: rgba(255,31,91,.35);
}
.chanArrow--left{ left: 10px; }
.chanArrow--right{ right: 10px; }
@media (max-width: 900px){ .chanCard{ width: 220px; height: 320px; } }
@media (max-width: 520px){
  .chanArrow{ width: 46px; height: 46px; border-radius: 14px; }
  .chanCard{ width: 190px; height: 280px; }
}

/* ================= PRICING ================= */
.serverTabs{
  width: min(720px, 100%);
  margin: 22px auto 26px;
  display:flex;
  gap: 10px;
  padding: 8px;
  border-radius: 18px;
  border: 1px solid rgba(255,255,255,.10);
  background: rgba(255,255,255,.04);
  box-shadow: 0 18px 55px rgba(0,0,0,.35);
}
.serverTab{
  flex: 1 1 0;
  height: 46px;
  border: 0;
  cursor: pointer;
  border-radius: 14px;
  font-weight: 950;
  letter-spacing: .8px;
  text-transform: uppercase;
  font-size: 12px;
  display:flex;
  align-items:center;
  justify-content:center;
  color: rgba(255,255,255,.85);
  background: transparent;
  transition: .18s ease;
}
.serverTab:hover{ background: rgba(255,255,255,.06); }
.serverTab.is-active{
  background: linear-gradient(180deg, var(--hot2), var(--hot));
  color: #fff;
  box-shadow: 0 16px 40px rgba(255,31,91,.22);
}
@media (max-width: 520px){
  .serverTabs{ gap: 8px; padding: 6px; }
  .serverTab{ height: 44px; font-size: 11px; }
}

.pricingIntro{
  width: min(980px, 100%);
  margin: 0 auto 18px;
  text-align: center;
  padding: 18px 18px;
  border-radius: 18px;
  border: 1px solid rgba(255,255,255,.10);
  background: rgba(255,255,255,.03);
  box-shadow: 0 18px 45px rgba(0,0,0,.35);
}
.pricingIntro h3{
  margin: 0 0 6px;
  font-weight: 950;
  letter-spacing: .8px;
  text-transform: uppercase;
  font-size: 16px;
}
.pricingIntro p{
  margin: 0;
  color: rgba(255,255,255,.78);
  line-height: 1.7;
  font-size: 13px;
}
.pricingIntro .screens{
  margin-top: 10px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  border-radius: 999px;
  border: 1px solid rgba(255,31,91,.45);
  background: rgba(255,31,91,.10);
  color: #ff1f5b;
  font-weight: 950;
  letter-spacing: .4px;
  font-size: 12px;
}

.pricing{
  display:grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
@media (max-width: 980px){ .pricing{ grid-template-columns: 1fr; } }

.priceCard{
  border-radius: 22px;
  overflow: visible;
  background: rgba(255,255,255,.03);
  border:1px solid rgba(255,255,255,.10);
  box-shadow: 0 20px 60px rgba(0,0,0,.55);
  padding: 0 0 18px;
  position:relative;
  transition:.22s ease;
}
.priceCard:hover{ transform: translateY(-6px); border-color: rgba(255,31,91,.45); }

.priceCard__top{
  padding: 34px 18px 14px;
  border-bottom:1px solid rgba(255,255,255,.06);
  text-align:center;
}
.priceCard__top h3{
  margin:0;
  font-weight:950;
  letter-spacing:1px;
  font-size:14px;
  text-transform: uppercase;
}

.priceCard__price{
  display:flex;
  align-items:baseline;
  justify-content:center;
  gap:6px;
  font-weight: 950;
  font-size: 46px;
  letter-spacing: .5px;
  margin: 10px 0 10px;
}
.priceCard__price small{
  font-size: 18px;
  opacity: .85;
  font-weight: 900;
  order: 1;
}
/* English/French: DH right */
html[lang="en"] .priceCard__price small,
html[lang="fr"] .priceCard__price small{ order: 2; }

.priceList{
  list-style:none;
  margin: 14px 0 16px;
  padding: 0 18px;
  display:grid;
  gap: 10px;
}
.priceList li{
  display:flex;
  gap: 12px;
  align-items:flex-start;
  color: rgba(255,255,255,.82);
  font-size: 13px;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(255,255,255,.10);
}
.priceList li:last-child{ border-bottom:0; padding-bottom:0; }
.priceList i{
  flex: 0 0 auto;
  width: 18px;
  height: 18px;
  display:inline-grid;
  place-items:center;
  margin-top: 2px;
  color: var(--hot);
  font-size: 16px;
}
.priceList span{ display:block; }

.badgePill{
  position:absolute;
  top: 12px;
  left:50%;
  transform: translate(-50%, -80%);
  padding: 7px 12px;
  border-radius: 999px;
  background:#fff;
  color:#111;
  font-weight: 950;
  letter-spacing: .6px;
  font-size: 10px;
  text-transform: uppercase;
  box-shadow: 0 12px 28px rgba(0,0,0,.25);
  z-index: 10;
  white-space: nowrap;
}

.priceCard .btn.btn--wide{
  width: 70%;
  margin: 22px auto 0;
  display:block;
  border-radius: 999px;
  background: linear-gradient(180deg, var(--hot2), var(--hot));
  border: 1px solid rgba(255,31,91,.55);
  color:#fff;
  text-align:center;
}

/* Featured card */
.priceCard.featured{
  background: linear-gradient(180deg, #ff1f5b, #e3004d);
  border-color: rgba(255,31,91,.75);
  box-shadow: 0 30px 85px rgba(255,31,91,.25);
}
.priceCard.featured .priceCard__top h3,
.priceCard.featured .priceCard__price,
.priceCard.featured .priceList span,
.priceCard.featured .priceNote{ color:#fff; }
.priceCard.featured .priceList i{ color:#fff; }

/* Featured button white */
.priceCard.featured .btn.btn--wide{
  background:#fff !important;
  border-color:#fff !important;
  color:#111 !important;
  box-shadow: 0 16px 40px rgba(0,0,0,.35);
}

.priceNote{
  margin-top: 12px;
  text-align:center;
  color: rgba(255,255,255,.70);
  font-size: 12px;
}

/* ================= Trial ================= */
.trial{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:18px;
  padding: 22px;
  border-radius: var(--radius);
  border:1px solid rgba(255,31,91,.35);
  background: rgba(255,255,255,.03);
  box-shadow: var(--shadow);
}
.trial p{ margin:0; color: var(--muted); line-height:1.6; }

/* ================= Devices ================= */
.deviceRow{ display:flex; gap: 10px; flex-wrap:wrap; justify-content:center; }
.deviceBadge{
  padding: 12px 14px;
  border-radius: 12px;
  border:1px solid rgba(255,255,255,.12);
  background: rgba(0,0,0,.22);
  color: rgba(255,255,255,.85);
  font-weight: 900;
  letter-spacing:.4px;
  font-size: 12px;
  display:flex;
  gap:10px;
  align-items:center;
}

/* ================= Testimonials ================= */
.testimonials{ display:grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.tCard{
  padding: 22px;
  border-radius: var(--radius);
  border:1px solid rgba(255,31,91,.35);
  background: rgba(255,255,255,.03);
  box-shadow: var(--shadow);
}
.stars{ color: #ffd166; letter-spacing:2px; margin-bottom:10px; }
.tCard p{ margin:0 0 12px; color: var(--muted); line-height:1.6; font-size:13px; }
.tName{ color: rgba(255,255,255,.85); font-weight: 900; }

/* ================= FAQ ================= */
.faq{ display:grid; gap: 10px; margin-top: 8px; }
.faqItem{
  border-radius: 14px;
  overflow:hidden;
  border:1px solid rgba(255,31,91,.25);
  background: rgba(0,0,0,.22);
}
.faqQ{
  width:100%;
  border:0;
  background: transparent;
  color:#fff;
  text-align:left;
  padding: 16px 16px;
  cursor:pointer;
  display:flex;
  justify-content:space-between;
  align-items:center;
  font-weight: 950;
  letter-spacing:.6px;
  text-transform:uppercase;
  font-size: 12px;
}
.faqA{
  max-height:0;
  overflow:hidden;
  transition: max-height .25s ease, padding .25s ease;
  padding: 0 16px;
  color: var(--muted);
  font-size:13px;
  line-height:1.6;
}
.faqItem.is-open{ border-color: rgba(255,31,91,.55); }
.faqItem.is-open .faqQ{ background: linear-gradient(180deg, var(--hot2), var(--hot)); }
.faqItem.is-open .faqA{ padding: 14px 16px 16px; max-height: 260px; }

/* ================= WhatsApp contact card ================= */
.whatsapp-only{
  max-width:550px;
  margin:60px auto;
  text-align:center;
  padding:40px 25px;
  background:rgba(255,255,255,0.03);
  border:1px solid rgba(255,31,91,0.6);
  border-radius:20px;
  box-shadow:0 0 30px rgba(255,31,91,0.35);
}

/* ================= Floating WhatsApp ================= */
.wa-float{
  opacity: 0;
  position: fixed;
  right: 22px;
  bottom: 22px;
  width: 62px;
  height: 62px;
  background: #25D366;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 30px;
  z-index: 9999;
  transform: translateY(40px) scale(0.8);
  pointer-events: none;
  transition: opacity .4s ease, transform .4s ease, box-shadow .25s ease;
  text-decoration:none;
  border:0;
}
.wa-float.show{
  opacity: 1;
  transform: translateY(0) scale(1);
  pointer-events: auto;
}
.wa-float:hover{ transform: scale(1.1); box-shadow: 0 0 25px rgba(37,211,102,.9); }

/* ================= Language switcher ================= */
.langPro{ position: fixed; left: 18px; bottom: 18px; z-index: 9999; }
.langPro__btn{
  display:flex; align-items:center; gap:10px;
  padding:10px 12px;
  border-radius: 14px;
  border:1px solid rgba(255,255,255,.10);
  background: rgba(20,20,24,.75);
  box-shadow: 0 10px 30px rgba(0,0,0,.35);
  color:#fff;
  cursor:pointer;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  transition: transform .18s ease, border-color .18s ease;
}
.langPro__btn:hover{ transform: translateY(-1px); border-color: rgba(255,31,91,.35); }
.langPro__btnText{ font-weight: 900; font-size: 13px; }
.langPro__chev{ font-size: 12px; opacity:.8; transition: transform .2s ease; }

.langPro__menu{
  position:absolute; left:0;
  bottom: calc(100% + 10px);
  width: 170px;
  padding: 6px;
  border-radius: 18px;
  border:1px solid rgba(255,255,255,.10);
  background: rgba(16,16,20,.78);
  box-shadow: 0 18px 50px rgba(0,0,0,.45);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  opacity: 0;
  transform: translateY(10px) scale(.98);
  pointer-events: none;
  transition: opacity .18s ease, transform .18s ease;
}
#lang.is-open .langPro__menu{ opacity: 1; transform: translateY(0) scale(1); pointer-events: auto; }
#lang.is-open .langPro__chev{ transform: rotate(180deg); }

.langPro__item{
  width:100%;
  display:flex;
  align-items:center;
  padding: 8px 10px;
  gap: 6px;
  border-radius: 16px;
  border: 1px solid transparent;
  background: transparent;
  color:#fff;
  cursor:pointer;
  transition: background .15s ease, border-color .15s ease, transform .15s ease;
}
.langPro__item:hover{ background: rgba(255,255,255,.06); border-color: rgba(255,31,91,.25); transform: translateY(-1px); }
.langPro__item.is-active{
  border-color: rgba(255,31,91,.75);
  background: rgba(255,31,91,.08);
  box-shadow: 0 0 0 1px rgba(255,31,91,.25);
}
.langPro__name{ flex:1; text-align:left; opacity:.92; font-weight: 700; }
.langPro__dot{
  width: 10px; height: 10px; border-radius: 999px;
  background: #ff1f5b;
  box-shadow: 0 0 0 4px rgba(255,31,91,.12);
  opacity:0;
  transform: scale(.6);
  transition: .18s ease;
}
.langPro__item.is-active .langPro__dot{ opacity:1; transform: scale(1); }

/* ================= Reviews Wall ================= */
.reviewsWall{ position:relative; overflow:hidden; }
.reviewsWall__title{
  text-align:center;
  font-weight: 950;
  letter-spacing: 1px;
  text-transform: uppercase;
  font-size: clamp(26px, 3vw, 44px);
  margin: 0 0 18px;
}
.reviewsWall__underline{
  display:block;
  width: 160px;
  height: 6px;
  margin: 12px auto 0;
  border-radius: 999px;
  background: rgba(255,255,255,.20);
  position: relative;
  overflow:hidden;
}
.reviewsWall__underline::before{
  content:"";
  position:absolute; inset:0;
  background: linear-gradient(90deg, transparent, rgba(255,31,91,.95), transparent);
  transform: translateX(-60%);
  animation: underlineSweep 2.4s ease-in-out infinite;
  opacity:.9;
}
@keyframes underlineSweep{
  0%{ transform: translateX(-60%); }
  50%{ transform: translateX(60%); }
  100%{ transform: translateX(-60%); }
}
.reviewsWall__frame{
  position:relative;
  border-radius: 28px;
  padding: 18px;
  background:
    radial-gradient(900px 320px at 50% 20%, rgba(255,31,91,.16), transparent 60%),
    rgba(0,0,0,.25);
  border: 1px solid rgba(255,255,255,.10);
  box-shadow: 0 30px 90px rgba(0,0,0,.55);
  overflow:hidden;
}
.reviewsWall__glow{
  position:absolute; inset:-2px;
  border-radius: 30px;
  pointer-events:none;
  background:
    radial-gradient(800px 300px at 20% 30%, rgba(255,31,91,.20), transparent 60%),
    radial-gradient(700px 260px at 80% 40%, rgba(255,31,91,.12), transparent 60%);
  filter: blur(6px);
  opacity: .9;
}
.reviewsWall__track{
  position:relative;
  z-index:2;
  display:flex;
  gap: 18px;
  overflow-x: auto;
  overflow-y: hidden;
  scroll-behavior: smooth;
  padding: 12px 6px 18px;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  cursor: grab;
}
.reviewsWall__track::-webkit-scrollbar{ display:none; }
.reviewsWall__shot{
  flex: 0 0 auto;
  width: min(240px, 70vw);
  aspect-ratio: 9/19;
  border-radius: 18px;
  overflow:hidden;
  border: 2px solid rgba(255, 255, 255, 0.204);
  background: rgba(255,255,255,.03);
  box-shadow: 0 22px 60px rgba(0,0,0,.55);
  transition: transform .2s ease, border-color .2s ease, box-shadow .2s ease;
}
.reviewsWall__shot:hover{
  transform: translateY(-6px);
  border-color: rgba(255,31,91,.65);
  box-shadow: 0 26px 70px rgba(255,31,91,.10);
}
.reviewsWall__shot img{ width:100%; height:100%; object-fit: cover; display:block; }
html[dir="rtl"] .reviewsWall__track{ direction: rtl; }

/* ================= Payment ================= */
#payment .container{
  display:flex;
  flex-direction:column;
  align-items:center;
  text-align:center;
}
#payment .payCard{
  width:min(880px, 92vw);
  margin: 22px auto 0;
  padding: 28px;
  border-radius: 26px;
  background: rgba(20,20,28,.55);
  border: 1px solid rgba(255,31,91,.35);
  box-shadow: 0 25px 70px rgba(0,0,0,.55);
}
#payment .payDesc{
  margin: 0 auto 18px;
  max-width: 720px;
  color: rgba(255,255,255,.75);
  line-height: 1.7;
  font-size: 13px;
}
#payment .payList{
  padding:0;
  margin: 0 auto;
  width:100%;
  display:flex;
  flex-direction:column;
  align-items:center;
  gap: 14px;
}
#payment .payItem{
  width:min(760px, 100%);
  display:flex;
  align-items:center;
  justify-content:flex-start;
  gap: 14px;
  padding: 16px 18px;
  border-radius: 18px;
  background: rgba(0,0,0,.22);
  border: 1px solid rgba(255,255,255,.10);
}
#payment .payItem i{
  width: 44px;
  height: 44px;
  display:grid;
  place-items:center;
  flex: 0 0 44px;
  font-size: 22px;
  color: var(--hot2);
}
#payment .payText{ text-align:left; }
#payment .payName{ font-weight: 950; font-size: 18px; line-height: 1.1; }
#payment .paySub{ margin-top: 6px; opacity: .72; font-size: 14px; }
#payment .payNote{
  width:min(760px, 100%);
  margin: 14px auto 0;
  padding: 16px 18px;
  border-radius: 18px;
  background: rgba(0,0,0,.18);
  border: 1px solid rgba(255,255,255,.10);
  text-align:center;
  display:grid;
  gap: 6px;
}
#payment .payBtn{
  display:inline-flex;
  justify-content:center;
  margin: 20px auto 0;
  min-width: 280px;
  border-radius: 999px;
}
@media (max-width:560px){
  #payment .payCard{ padding: 18px; }
  #payment .payItem{ width:100%; }
  #payment .payBtn{ width: 92%; min-width: 0; }
}

/* ================= Footer ================= */
.footerPro{
  margin-top:0;
  background:
    radial-gradient(circle at 20% 50%, rgba(255,0,0,0.45), transparent 60%),
    linear-gradient(90deg, #2a0000, #000000 70%);
}
.footerPro__grid{
  display:grid;
  grid-template-columns: 1.2fr 1fr 1fr 1fr;
  gap: 40px;
  padding: 55px 0;
  align-items:flex-start;
}
.footerPro__brand{
  display:flex;
  flex-direction:column;
  align-items:center;
  text-align:center;
}
.footerPro__logo{
  width:150px;
  height:auto;
  display:block;
  margin:0 auto 15px;
  filter: drop-shadow(0 8px 18px rgba(0,0,0,.35));
}
.footerPro__desc{ color: rgba(255,255,255,.80); line-height: 1.7; max-width: 320px; margin:0; }
.footerPro__title{ font-size: 18px; margin: 6px 0 14px; color: #fff; }
.footerPro__link{
  display:block;
  color: rgba(255,255,255,.78);
  text-decoration:none;
  padding: 7px 0;
  transition: .2s ease;
}
.footerPro__link:hover{ color:#fff; transform: translateX(2px); }
.footerPro__contact{ display:flex; align-items:center; gap: 10px; padding: 8px 0; color: rgba(255,255,255,.85); }
.footerPro__contact i{ color: rgba(255,31,91,.95); }

.footerPro__centerTop{
  display:flex;
  justify-content:center;
  align-items:center;
  width:100%;
  padding: 20px 0 10px;
}
.footerPro__icon{
  width:48px;
  height:48px;
  border-radius:999px;
  display:flex;
  align-items:center;
  justify-content:center;
  color:#fff;
  text-decoration:none;
  border:1px solid rgba(255,255,255,.25);
  background: linear-gradient(180deg, var(--hot2), var(--hot));
  box-shadow: 0 18px 45px rgba(255,31,91,.28);
}
.footerPro__icon:hover{
  transform: translateY(-2px) scale(1.05);
  box-shadow: 0 22px 60px rgba(255,31,91,.35);
}

.footerPro__bottom{ background: rgba(0,0,0,.8); }
.footerPro__bottomInner{
  display:flex;
  justify-content:center;
  text-align:center;
  gap: 14px;
  padding: 14px 0;
  font-weight: 700;
}

/* ================= Reveal ================= */
.reveal{
  opacity:0;
  transform: translateY(22px);
  transition: .55s ease;
  transition-delay: var(--d, 0ms);
}
.reveal.is-in{ opacity:1; transform: translateY(0); }

/* ================= Logo Marquee ================= */
.logoMarquee{
  position: absolute;
  left: 0;
  right: 0;
  bottom: 70px;
  margin-top: 0 !important;
  z-index: 5;

  padding: 14px 0;
  background: rgba(255,255,255,.78);
  border-top: 1px solid rgba(0,0,0,.06);
  border-bottom: 1px solid rgba(0,0,0,.06);

  direction: ltr !important;
}
.logoMarquee__viewport{ overflow: hidden; position: relative; }
.logoMarquee__viewport::before,
.logoMarquee__viewport::after{
  content:"";
  position:absolute;
  top:0;
  width:90px;
  height:100%;
  z-index:2;
  pointer-events:none;
}
.logoMarquee__viewport::before{
  left:0;
  background: linear-gradient(90deg, rgba(255,255,255,1), rgba(255,255,255,0));
}
.logoMarquee__viewport::after{
  right:0;
  background: linear-gradient(270deg, rgba(255,255,255,1), rgba(255,255,255,0));
}
.logoMarquee__track{
  display:flex;
  align-items:center;
  gap: 48px;
  width: max-content;
  direction:ltr !important;
  will-change: transform;
  transform: translate3d(0,0,0);
  animation: marquee 28s linear infinite;
}
.logoMarquee__track img{
  height: 34px;
  width:auto;
  opacity:.9;
  flex: 0 0 auto;
}
@keyframes marquee{
  0%   { transform: translate3d(0,0,0); }
  100% { transform: translate3d(-50%,0,0); }
}
html[dir="rtl"] .logoMarquee,
html[dir="rtl"] .logoMarquee__viewport,
html[dir="rtl"] .logoMarquee__track{
  direction:ltr !important;
  animation-direction: normal !important;
}
@media (prefers-reduced-motion: reduce){
  .logoMarquee__track{ animation:none; }
}

/* ================= RTL fixes ================= */
html[dir="rtl"] .nav{ flex-direction: row-reverse; }
html[dir="rtl"] .faqQ{ direction: rtl; text-align: right; }
html[dir="rtl"] .langPro__name{ text-align:right; }
html[dir="rtl"] .hiw-sub{ text-align:center !important; }

/* ================= Responsive ================= */
@media (max-width: 980px){
  .menu{ display:none; }
  .iconBtn{ display:inline-flex; align-items:center; justify-content:center; }
  .cards3{ grid-template-columns: 1fr; }
  .testimonials{ grid-template-columns: 1fr; }
  .trial{ flex-direction:column; align-items:flex-start; }
  .aboutGrid{ grid-template-columns: 1fr; gap:22px; text-align:center; }
  .aboutMap{ order: -1; }
}
@media (max-width: 768px){
  .footerPro__grid{
    grid-template-columns: 1fr;
    gap: 28px;
    text-align: center;
  }
  .footerPro__contact{ justify-content: center; }
}
@media (max-width: 900px){
  .nav__actions{ margin-left:auto; gap:12px; }
  #burger{ order: 2; }
  #orderBtn{ order: 1; }
}




/* =========================
   PROCESS (START WATCHING...) — CLEAN FINAL
   Put at END of style.css
========================= */

#process{
  text-align: center;
}

/* Title + highlight */
#process .hiw-title{
  text-align: center;
  margin-bottom: 14px;
}

#process .hiw-start{
  color: var(--hot);
  font-weight: 950;
}

/* Subtitle centered like your old look */
#process .hiw-sub{
  text-align: center !important;
  max-width: 980px;
  margin: 0 auto 36px !important;
  color: rgba(255,255,255,.78);
  line-height: 1.75;
  font-size: 14px;
}

/* Steps grid (3 cards) */
#process .stepsBox{
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 26px;
  margin-top: 36px;
}

/* Card */
#process .stepCard{
  background: rgba(255,255,255,.03);
  border: 1px solid rgba(255,255,255,.10);
  border-radius: 22px;
  padding: 34px 26px;
  text-align: left;                 /* ✅ بحال اللي كان عندك */
  box-shadow: 0 22px 60px rgba(0,0,0,.45);
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}

#process .stepCard:hover{
  transform: translateY(-8px);
  border-color: rgba(255,31,91,.45);
  box-shadow: 0 28px 75px rgba(255,31,91,.10);
}

/* Badge */
#process .stepBadge{
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 14px;
  border-radius: 999px;
  background: rgba(255,31,91,.14);
  border: 1px solid rgba(255,31,91,.35);
  color: var(--hot);
  font-weight: 950;
  letter-spacing: .8px;
  font-size: 11px;
  text-transform: uppercase;
  margin-bottom: 16px;
}

/* Icon */
#process .stepIcon{
  width: 54px;
  height: 54px;
  border-radius: 16px;
  background: rgba(255,31,91,.14);
  border: 1px solid rgba(255,31,91,.30);
  display: grid;
  place-items: center;
  margin-bottom: 16px;
  color: #fff;
  font-size: 20px;
}

/* Title + text inside card */
#process .stepCard h3{
  margin: 0 0 10px;
  font-weight: 950;
  letter-spacing: .4px;
  font-size: 20px;
}

#process .stepCard p{
  margin: 0;
  color: rgba(255,255,255,.70);
  line-height: 1.7;
  font-size: 13px;
}

/* Responsive */
@media (max-width: 980px){
  #process .stepsBox{
    grid-template-columns: 1fr;
    gap: 16px;
  }
  #process .stepCard{
    text-align: left;
  }
}

/* RTL */
html[dir="rtl"] #process .stepCard{
  text-align: right;
}
html[dir="rtl"] #process .stepBadge{
  letter-spacing: 0;
}




/* centre whole process content */
#process .container{
  display: flex;
  flex-direction: column;
  align-items: center; /* هذا هو الحل الرئيسي */
}

/* centre steps */
#process .stepsBox{
  display: flex;
  justify-content: center;
  gap: 26px;
  flex-wrap: wrap;
  width: 100%;
  max-width: 1100px; /* يخليهم فالنص */
}

/* card width */
#process .stepCard{
  width: 320px;
  text-align: center;
}

/* centre badge and icon */
#process .stepBadge,
#process .stepIcon{
  margin-left: auto;
  margin-right: auto;
}



#process{
  display: flex;
  justify-content: center;
}



/* DEFAULT (FR / EN) */
#process .container{
  display: flex;
  flex-direction: column;
  align-items: center;
}

#process .stepsBox{
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 26px;
}

/* FIX ARABIC RTL */
html[dir="rtl"] #process .container{
  align-items: center !important;
}

html[dir="rtl"] #process .stepsBox{
  justify-content: center !important;
  direction: ltr; /* هذا هو السر */
}

/* keep Arabic text RTL inside cards */
html[dir="rtl"] #process .stepCard{
  direction: rtl;
  text-align: center;
}






/* Fix phone number direction in Arabic */
.phone,
.footerPro__link[href^="tel"],
.footerPro__contact a {
  direction: ltr;
  unicode-bidi: isolate;
  display: inline-block;
}





#reviewsTrack{
  overflow-x: auto;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
}
#reviewsTrack::-webkit-scrollbar{ display:none; }




/* ===== PAYMENT RTL FIX ===== */

html[dir="rtl"] .payItem {
  direction: rtl;
  text-align: right;
}

html[dir="rtl"] .payText {
  text-align: right;
}

html[dir="rtl"] .payName {
  text-align: right;
}

html[dir="rtl"] .paySub {
  text-align: right;
  display: block;
}

/* يخلي icon فاليمين */
html[dir="rtl"] .payItem {
  flex-direction: row-reverse;
}

/* spacing icon */
html[dir="rtl"] .payItem i {
  margin-left: 0;
  margin-right: 14px;
}
/* =======================
   PAYMENT — RTL (AR) FIX
   ======================= */

html[dir="rtl"] #payment .payItem{
  direction: rtl !important;
  display: flex !important;
  align-items: center !important;
  gap: 14px !important;
  flex-direction: row-reverse !important; /* icon يمين */
  justify-content: flex-start !important;  /* النص يبقى قريب من اليمين */
}

html[dir="rtl"] #payment .payText{
  flex: 1 !important;
  text-align: right !important; /* النص كامل يمين */
}

html[dir="rtl"] #payment .payName,
html[dir="rtl"] #payment .paySub{
  text-align: right !important;
}

/* مسافات الأيقونة فـ RTL */
html[dir="rtl"] #payment .payItem i{
  margin: 0 14px 0 0 !important; /* مسافة بين الايقونة والنص */
}





/* =========================
   PAYMENT — RTL ALIGN RIGHT (FINAL FIX)
   put at END of style.css
========================= */

html[dir="rtl"] #payment .payList{
  align-items: stretch !important;   /* مايبقاش كيسنتر العناصر */
}

html[dir="rtl"] #payment .payItem{
  flex-direction: row-reverse !important;  /* icon فاليمين */
  justify-content: flex-start !important;
  width: min(760px, 100%) !important;
}

html[dir="rtl"] #payment .payText{
  flex: 1 !important;
  text-align: right !important;      /* “المغرب/دولي” فاليمين */
}

html[dir="rtl"] #payment .payName,
html[dir="rtl"] #payment .paySub{
  text-align: right !important;
}

html[dir="rtl"] #payment .payItem i{
  margin: 0 14px 0 0 !important;     /* مسافة بين icon والنص */
}




/* FOOTER — رفع النص ديال الوصف تحت اللوغو */
.footerPro__brand{
  gap: 10px;            /* مسافة بين اللوغو والنص */
}

.footerPro__desc{
  margin-top: -8px;     /* طلعو لفوق */
  line-height: 1.6;
}
/* رفع logo + description كاملين لفوق */
.footerPro__brand{
  transform: translateY(-10px);
}

/* optional: مسافة أدق بين اللوغو والنص */
.footerPro__logo{
  margin-bottom: 2px;
}

.footerPro__desc{
  margin-top: 4;
}


/* =========================
   PAYMENT — LOOK LIKE SCREENSHOT (PATCH)
   Put at END of style.css
========================= */

/* section padding باش يجي بحال modal وسط */
#payment.section{
  padding: 80px 0;
}

/* الكارت الرئيسية */
#payment .payCard{
  position: relative;
  padding: 44px 34px;
  border-radius: 28px;
  background:
    radial-gradient(900px 340px at 50% 15%, rgba(255,31,91,.16), transparent 60%),
    rgba(12,12,18,.72);
  border: 1px solid rgba(255,31,91,.45);
  box-shadow: 0 28px 90px rgba(0,0,0,.65);
  overflow: hidden;
}

/* glow border بحال الصورة */
#payment .payCard::before{
  content:"";
  position:absolute; inset:-2px;
  border-radius: 30px;
  background:
    radial-gradient(650px 220px at 20% 25%, rgba(255,31,91,.22), transparent 60%),
    radial-gradient(650px 220px at 80% 40%, rgba(255,31,91,.12), transparent 60%);
  filter: blur(8px);
  opacity: .95;
  pointer-events:none;
}

/* باش المحتوى يبقى فوق glow */
#payment .payCard > *{ position: relative; z-index: 2; }

#payment .payTitle{
  margin: 0 0 10px;
  font-weight: 950;
  letter-spacing: .6px;
  font-size: 18px;
  color:#fff;
}

#payment .payDesc{
  margin: 0 auto 26px;
  max-width: 760px;
  color: rgba(255,255,255,.70);
  line-height: 1.75;
  font-size: 13px;
}

/* list */
#payment .payList{
  gap: 16px;
}

/* item card */
#payment .payItem{
  position: relative;
  padding: 18px 20px;
  border-radius: 20px;
  background: rgba(0,0,0,.22);
  border: 1px solid rgba(255,255,255,.10);
  box-shadow: 0 18px 50px rgba(0,0,0,.45);
  transition: transform .22s ease, border-color .22s ease, box-shadow .22s ease, background .22s ease;
}

#payment .payItem:hover{
  transform: translateY(-4px);
  border-color: rgba(255,31,91,.55);
  box-shadow: 0 22px 70px rgba(255,31,91,.10);
  background: rgba(0,0,0,.28);
}

/* icon */
#payment .payItem i{
  width: 48px;
  height: 48px;
  flex: 0 0 48px;
  border-radius: 16px;
  background: rgba(255,31,91,.14);
  border: 1px solid rgba(255,31,91,.28);
  color: var(--hot2);
  font-size: 20px;
}

/* text */
#payment .payText{ flex:1; }
#payment .payName{
  font-weight: 950;
  font-size: 20px;
  letter-spacing: .3px;
}
#payment .paySub{
  margin-top: 6px;
  font-size: 13px;
  opacity: .70;
}

/* note card */
#payment .payNote{
  margin-top: 18px;
  padding: 18px 18px;
  border-radius: 20px;
  background: rgba(0,0,0,.20);
  border: 1px solid rgba(255,255,255,.10);
  box-shadow: 0 18px 55px rgba(0,0,0,.35);
  gap: 8px;
  color: rgba(255,255,255,.78);
}

/* button center + size like screenshot */
#payment .payBtn{
  margin-top: 22px;
  min-width: 320px;
  padding: 14px 24px;
  border-radius: 999px;
  box-shadow: 0 20px 55px rgba(255,31,91,.22);
}

/* Mobile */
@media (max-width:560px){
  #payment .payCard{ padding: 26px 16px; border-radius: 22px; }
  #payment .payItem{ padding: 16px 14px; border-radius: 18px; }
  #payment .payBtn{ width: 92%; min-width: 0; }
}

/* RTL: خلي كلشي فاليمن (icon يمين + text يمين) */
html[dir="rtl"] #payment .payItem{
  flex-direction: row-reverse !important;
}
html[dir="rtl"] #payment .payText{
  text-align: right !important;
}
/* =========================
   PAYMENT — CENTER ALIGN FIX
   Put at END of style.css
========================= */

#payment .payCard{
  display: flex;
  flex-direction: column;
  align-items: center;      /* ✅ كلشي فالنص */
  text-align: center;
}

/* خلي اللائحة و note و button نفس العرض و وسط */
#payment .payList{
  width: 100%;
  max-width: 760px;         /* ✅ نفس عرض العناصر بحال الصورة */
  margin: 0 auto;
  align-items: stretch;      /* items ياخذو العرض كامل ديال max-width */
}

#payment .payItem,
#payment .payNote{
  width: 100%;
  margin: 0 auto;            /* ✅ وسط */
}

/* الزر وسط */
#payment .payBtn{
  align-self: center;        /* ✅ وسط */
}

/* RTL: خلي النص فاليمن داخل كل item (غير النص) */
html[dir="rtl"] #payment .payText{
  text-align: right !important;
}

/* RTL: icon يمين + محتوى منظم */
html[dir="rtl"] #payment .payItem{
  flex-direction: row-reverse !important;
  justify-content: space-between; /* ✅ كيعطي توازن داخل السطر */
}


/* =========================
   PAYMENT — FINAL OVERRIDE (NO CONFLICT)
   Put at VERY END of style.css
========================= */

#payment .payCard{
  display:block !important;
  text-align:center !important;
  padding: 44px 34px !important;
}

#payment .payTitle,
#payment .payDesc{
  text-align:center !important;
}

#payment .payList{
  width:100% !important;
  max-width: 760px !important;
  margin: 24px auto 0 !important;
  padding: 0 !important;

  display:flex !important;
  flex-direction:column !important;
  gap:16px !important;

  align-items:stretch !important; /* items ياخذو نفس العرض */
}

/* ===== each method card ===== */
#payment .payItem{
  width:100% !important;
  margin:0 auto !important;

  display:flex !important;
  align-items:center !important;
  justify-content:flex-start !important; /* ماشي space-between */
  gap:16px !important;

  text-align:left !important; /* LTR */
}

/* icon stays same */
#payment .payItem i{
  margin:0 !important;
}

/* note card */
#payment .payNote{
  width:100% !important;
  max-width:760px !important;
  margin: 16px auto 0 !important;
  text-align:center !important;
}

/* button centered */
#payment .payBtn{
  display:inline-flex !important;
  margin: 22px auto 0 !important;
  align-self:auto !important;
}

/* ===== RTL (Arabic) ===== */
html[dir="rtl"] #payment .payItem{
  flex-direction:row-reverse !important; /* icon يمين */
  text-align:right !important;
  justify-content:flex-start !important;
}

html[dir="rtl"] #payment .payText,
html[dir="rtl"] #payment .payName,
html[dir="rtl"] #payment .paySub{
  text-align:right !important;
}

/* mobile */
@media (max-width:560px){
  #payment .payCard{ padding: 26px 16px !important; }
  #payment .payBtn{ width: 92% !important; }
}
/* =========================
   PAYMENT — ANIMATIONS (ADD)
   Put AFTER the final override
========================= */

#payment .payItem{
  transition: transform .22s ease, border-color .22s ease, box-shadow .22s ease, background .22s ease !important;
}

#payment .payItem:hover{
  transform: translateY(-5px) !important;
  border-color: rgba(255,31,91,.60) !important;
  box-shadow: 0 22px 70px rgba(255,31,91,.12) !important;
  background: rgba(0,0,0,.28) !important;
}

/* icon glow on hover */
#payment .payItem i{
  transition: transform .22s ease, box-shadow .22s ease, background .22s ease !important;
}

#payment .payItem:hover i{
  transform: scale(1.06) !important;
  box-shadow: 0 0 0 6px rgba(255,31,91,.10) !important;
  background: rgba(255,31,91,.18) !important;
}

/* note slight glow */
#payment .payNote{
  transition: border-color .22s ease, box-shadow .22s ease !important;
}

#payment .payNote:hover{
  border-color: rgba(255,31,91,.35) !important;
  box-shadow: 0 18px 55px rgba(255,31,91,.08) !important;
}

/* button smooth hover */
#payment .payBtn{
  transition: transform .2s ease, box-shadow .2s ease !important;
}

#payment .payBtn:hover{
  transform: translateY(-2px) scale(1.03) !important;
  box-shadow: 0 24px 70px rgba(255,31,91,.28) !important;
}

/* Respect reduce motion */
@media (prefers-reduced-motion: reduce){
  #payment .payItem,
  #payment .payItem i,
  #payment .payNote,
  #payment .payBtn{
    transition: none !important;
  }
  #payment .payItem:hover,
  #payment .payItem:hover i,
  #payment .payBtn:hover{
    transform: none !important;
  }
}
