:root{
  --bg:#f4f6fb;
  --panel:#ffffff;
  --text:#1a1f2b;
  --muted:#5c6475;
  --line: rgba(18,20,26,.12);

  --black:#0d0f14;
  --orange:#ff7a00;
  --orange2:#ff9a3d;

  --container: 1160px;
  --radius: 16px;
  --shadow: 0 12px 30px rgba(16,18,24,.10);
}

*{ box-sizing:border-box; }
html,body{ margin:0; padding:0; }
body{
  font-family: system-ui,-apple-system,Segoe UI,Roboto,Arial,sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.5;
}
img{ max-width:100%; height:auto; display:block; }
a{ color:inherit; text-decoration:none; }
a:hover{ text-decoration:none; }

.cx-container{
  width: min(var(--container), calc(100% - 32px));
  margin-inline: auto;
}

/* Buttons */
.cx-btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding: 9px 14px;
  border-radius: 999px;
  border: 2px solid transparent;
  font-weight: 800;
  letter-spacing: .2px;
  transition: background .12s ease, color .12s ease, transform .12s ease, border-color .12s ease;
  user-select:none;
  cursor:pointer;
}
.cx-btn:hover{ transform: translateY(-1px); }
.cx-btn--login{
  background: transparent;
  color: #fff;
  border-color: var(--orange);
}
.cx-btn--login:hover{
  background: rgba(255,122,0,.12);
}
.cx-btn--reg{
  background: var(--orange);
  color: #111;
  border-color: var(--orange);
}
.cx-btn--reg:hover{
  background: #ff8c1a;
  border-color: #ff8c1a;
}
.cx-btn--cta{
  background: var(--orange);
  color: #111;
  border-radius: 14px;
  padding: 10px 16px;
}
.cx-btn--cta:hover{ background: #ff8c1a; }

/* Header (dark) */
.cx-header{
  background: #0c0d10;
  color: #fff;
}
.cx-header__inner{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap: 14px;
  padding: 10px 0;
}
.cx-logo{
  display:flex;
  align-items:center;
  gap: 10px;
  font-weight: 900;
  letter-spacing: .6px;
}
.cx-logo__img {
    height: 45px;
    width: auto;
}
.cx-actions{ display:flex; gap: 10px; }

/* Main */
.cx-main{ padding: 18px 0 40px; }

/* Slider */
.cx-hero{ padding: 14px 0 6px; }
.cx-slider{
  position:relative;
  overflow:hidden; /* fix: prevents horizontal scroll */
  border-radius: 18px;
  background: var(--panel);
  box-shadow: var(--shadow);
}
.cx-track{
  display:flex;
  transition: transform .45s ease;
  will-change: transform;
}
@media (prefers-reduced-motion: reduce){
  .cx-track{ transition:none; }
}
.cx-slide{
  flex: 0 0 100%;
  min-width: 100%;
  display:grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 18px;
  align-items:center;
  padding: 18px;
}
@media (max-width: 900px){
  .cx-slide{ grid-template-columns: 1fr; }
}

.cx-slide__content{ padding: 6px; }
.cx-slide__title {
    font-size: clamp(20px, 2.8vw, 34px);
    font-weight: 950;
    margin: 0 0 8px;
    color: #fff;
}
.cx-slide__text {
    color: #fff;
    font-weight: 600;
    margin: 0 0 14px;
}

.cx-slide__media {
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    width: 100%;
    z-index: -1;
}
.cx-slide__img{
  width: 100%;
  max-height: 260px;
  object-fit: cover;
  border-radius: 16px;
  border: 1px solid var(--line);
  filter: brightness(0.75);
}

/* Slider controls */
.cx-controls{
  display:flex;
  justify-content:center;
  align-items:center;
  gap: 10px;
  padding: 10px 0 0;
}
.cx-dot{
  width: 10px; height: 10px;
  border-radius: 999px;
  border: 0;
  background: rgba(0,0,0,.20);
  cursor:pointer;
}
.cx-dot.is-active{ background: var(--orange); }

/* Content block like competitor: white panel on light bg */
.cx-content{
  margin-top: 16px;
}
.cx-panel{
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 18px;
  box-shadow: var(--shadow);
  padding: 18px;
}
.cx-h1{
  margin: 0 0 10px;
  font-size: clamp(22px, 3vw, 38px);
  font-weight: 950;
}
.cx-wysiwyg{ color: #1c2230; }
.cx-wysiwyg p{ margin: .7em 0; }
.cx-wysiwyg :where(h2,h3,h4){ margin: 1em 0 .4em; }
.cx-wysiwyg ul, .cx-wysiwyg ol{ margin: .6em 0 .6em 1.2em; }
.cx-wysiwyg table{
  width:100%;
  border-collapse: collapse;
  margin: 12px 0;
  border-radius: 12px;
  overflow:hidden;
}
.cx-wysiwyg th, .cx-wysiwyg td{
  padding: 10px;
  border: 1px solid rgba(0,0,0,.10);
}
.cx-wysiwyg th{ background: rgba(0,0,0,.04); }
.cx-demoimg{
  margin: 14px 0;
  border-radius: 16px;
  overflow:hidden;
  border: 1px solid var(--line);
}

/* FAQ */
.cx-faq{ margin-top: 16px; }
.cx-faq__title{ font-size: 26px; font-weight: 950; margin: 0 0 12px; }
.cx-faq__intro{ color: var(--muted); margin-bottom: 10px; }

.cx-acc{
  border: 1px solid var(--line);
  border-radius: 16px;
  overflow:hidden;
  background: #fff;
}
.cx-acc__item + .cx-acc__item{ border-top: 1px solid var(--line); }
.cx-acc__q{
  width:100%;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap: 12px;
  padding: 14px 14px;
  background: #fff;
  border: 0;
  cursor:pointer;
  text-align:left;
  font-weight: 900;
  color: #1a1f2b;
  font-size: 16px;
}
.cx-acc__q::after{
  content:"";
  width: 10px;
  height: 10px;
  border-right: 2px solid rgba(0,0,0,.55);
  border-bottom: 2px solid rgba(0,0,0,.55);
  transform: rotate(45deg);
  transition: transform .12s ease;
}
.cx-acc__item.is-open .cx-acc__q::after{ transform: rotate(-135deg); }

.cx-acc__a{
  display:none;
  padding: 0 14px 14px;
  color: var(--muted);
}
.cx-acc__item.is-open .cx-acc__a{ display:block; }

/* Footer (light, with rows of logos) */
.cx-footer{
  margin-top: 22px;
  background: #fff;
  border-top: 1px solid var(--line);
}
.cx-footer__inner{
  padding: 18px 0 22px;
}
.cx-footer__links{
  display:flex;
  flex-wrap:wrap;
  gap: 14px;
  justify-content:center;
  padding: 8px 0 12px;
}
.cx-footer__links a{
  color: rgba(0,0,0,.65);
  font-weight: 700;
  font-size: 13px;
}
.cx-footer__links a:hover{ color: rgba(0,0,0,.90); }

.cx-footer__icons{
  display:flex;
  justify-content:center;
  gap: 10px;
  padding: 8px 0 14px;
}
.cx-footer__icon{
  width: 34px; height: 34px;
  border-radius: 999px;
  border: 1px solid rgba(0,0,0,.10);
  background: rgba(0,0,0,.03);
  display:flex;
  align-items:center;
  justify-content:center;
}
.cx-footer__icon img{ width: 18px; height: 18px; object-fit: contain; }

.cx-logos{
  display:flex;
  flex-wrap:wrap;
  gap: 16px;
  justify-content:center;
  align-items:center;
  padding: 10px 0 0;
  opacity: .85;
}
.cx-logos img{
  height: 22px;
  width:auto;
  object-fit: contain;
  filter: grayscale(1);
  opacity: .7;
}
.cx-logos img:hover{
  filter: grayscale(0);
  opacity: 1;
}

.cx-footer__bottom{
  margin-top: 14px;
  padding-top: 12px;
  border-top: 1px solid rgba(0,0,0,.08);
  text-align:center;
  color: rgba(0,0,0,.55);
  font-size: 12px;
  line-height: 1.4;
}


/* ===== Slots grid (tiles) ===== */
.cx-h2{
  margin: 0 0 6px;
  font-size: 22px;
  font-weight: 950;
}

.cx-slots{ margin-top: 16px; }
.cx-slots__head{
  display:flex;
  align-items:flex-end;
  justify-content:space-between;
  gap: 12px;
  margin-bottom: 12px;
}
@media (max-width: 720px){
  .cx-slots__head{ flex-direction: column; align-items: stretch; }
  .cx-slots__cta{ width: 100%; }
}
.cx-slots__sub{
  color: rgba(0,0,0,.55);
  font-weight: 600;
  font-size: 13px;
}

.cx-slots__grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 12px;
}
@media (max-width: 1100px){ .cx-slots__grid{ grid-template-columns: repeat(4, 1fr); } }
@media (max-width: 780px){ .cx-slots__grid{ grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 520px){ .cx-slots__grid{ grid-template-columns: repeat(2, 1fr); } }

.cx-slot{
  border: 1px solid rgba(0,0,0,.10);
  border-radius: 16px;
  background: #fff;
  overflow:hidden;
  box-shadow: 0 10px 22px rgba(16,18,24,.06);
}
.cx-slot__media{
  position: relative;
  aspect-ratio: 1 / 1;
  background: rgba(0,0,0,.04);
}
.cx-slot__img{
  width:100%;
  height:100%;
  object-fit: cover;
}
.cx-slot__img--fallback{
  background: linear-gradient(135deg, rgba(255,122,0,.18), rgba(0,0,0,.02));
}

.cx-slot__badge{
  position:absolute;
  left: 10px;
  top: 10px;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(0,0,0,.70);
  color: #fff;
  font-weight: 800;
  font-size: 12px;
}

.cx-slot__overlay{
  position:absolute;
  inset:0;
  display:flex;
  align-items:center;
  justify-content:center;
  opacity:0;
  background: rgba(0,0,0,.45);
  transition: opacity .12s ease;
}
.cx-slot:hover .cx-slot__overlay{ opacity: 1; }

.cx-slot__actions{
  display:flex;
  gap: 10px;
  padding: 10px;
}

.cx-slot__title{
  padding: 10px 12px 12px;
  font-weight: 900;
  font-size: 13px;
  color: rgba(0,0,0,.80);
}

article.cx-slide {
    position: relative;
}
.cx-controls {
    position: relative;
    z-index: 2;
}