/* =========================================
   desktop-home.css (for your provided EJS)
   ========================================= */

:root{
  --sx-orange:#ff6a00;
  --sx-black:#0f0f0f;
  --sx-text:#0b0b0b;
  --sx-muted:#6b6b6b;
  --sx-card:#ffffff;
}

/* base */
.se-page{
  margin:0;
  padding:0;
  font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  background:#fff;
  color:var(--sx-text);
}

/* hide desktop-only if you already have global rules in main.css, still safe */
.se-desktopOnly{ display:block; }
@media (max-width: 900px){
  .se-desktopOnly{ display:none; }
}

/* =========================================
   HERO WRAP
   ========================================= */
.spH{
  position:relative;
  min-height: 86vh;
  background: #f6faf9;
  overflow:hidden;
}

/* soft glow background like Pronto */
.spH__bg{
  position:absolute;
  left:-120px;
  right:-120px;
  top:-140px;
  height: 560px;
  background:
    radial-gradient(closest-side at 50% 45%, rgba(255,106,0,.16), rgba(255,106,0,0) 72%),
    radial-gradient(closest-side at 50% 40%, rgba(0,0,0,.06), rgba(0,0,0,0) 70%);
  filter: blur(3px);
  pointer-events:none;
  z-index:0;
}

/* =========================================
   TOP PILL NAV
   ========================================= */
.spH__topNavWrap{
  position:relative;
  z-index:5;
  display:flex;
  justify-content:center;
  padding-top:18px;
}

.spH__topNav{
  background: rgba(255,255,255,.92);
  border: 1px solid rgba(0,0,0,.08);
  border-radius: 999px;
  padding: 12px 20px;
  display:flex;
  gap: 22px;
  align-items:center;
  box-shadow: 0 18px 40px rgba(0,0,0,.12);
  backdrop-filter: blur(10px);
}

.spH__navLink{
  text-decoration:none;
  color:#2b2b2b;
  font-weight:700;
  font-size:14px;
  padding: 7px 10px;
  border-radius: 12px;
  transition: background .15s ease, color .15s ease;
}

.spH__navLink:hover{
  background: rgba(255,106,0,.10);
  color:#111;
}

.spH__brand{
  text-decoration:none;
  font-weight: 900;
  font-size: 22px;
  color: var(--sx-orange);
  letter-spacing: -0.3px;
  padding: 2px 12px;
}

/* =========================================
   MODEL IMAGES (LEFT / RIGHT)
   + DISSOLVE INTO BACKGROUND (no sharp box)
   ========================================= */
.spH__model{
  position:absolute;
  bottom: 0;
  width: 360px;
  z-index:2;
  pointer-events:none;
  user-select:none;
}

/* IMPORTANT: make images look like they "blend" */
.spH__model img{
  width:100%;
  height:auto;
  display:block;
  filter: drop-shadow(0 22px 28px rgba(0,0,0,.14));

  /* dissolve edges (works in chrome/edge/safari) */
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-size: 100% 100%;
  mask-repeat: no-repeat;
  mask-size: 100% 100%;
}

/* left image position */
.spH__model--left{
  left: 26px;
}

/* right image position */
.spH__model--right{
  right: 26px;
}

/* left image dissolve */
.spH__model--left img{
  -webkit-mask-image: linear-gradient(
    to right,
    transparent 0%,
    rgba(0,0,0,0.30) 12%,
    rgba(0,0,0,0.85) 30%,
    rgba(0,0,0,1) 55%
  );
  mask-image: linear-gradient(
    to right,
    transparent 0%,
    rgba(0,0,0,0.30) 12%,
    rgba(0,0,0,0.85) 30%,
    rgba(0,0,0,1) 55%
  );
}

/* right image dissolve */
.spH__model--right img{
  -webkit-mask-image: linear-gradient(
    to left,
    transparent 0%,
    rgba(0,0,0,0.30) 12%,
    rgba(0,0,0,0.85) 30%,
    rgba(0,0,0,1) 55%
  );
  mask-image: linear-gradient(
    to left,
    transparent 0%,
    rgba(0,0,0,0.30) 12%,
    rgba(0,0,0,0.85) 30%,
    rgba(0,0,0,1) 55%
  );
}

/* bottom brand text on images */
.spH__modelTag{
  position:absolute;
  left: 26px;
  bottom: 28px;
  font-weight: 900;
  font-size: 36px;
  color: rgba(255,255,255,.94);
  text-shadow: 0 12px 18px rgba(0,0,0,.28);
}

.spH__modelTag--right{
  left: 26px;
}

/* =========================================
   CENTER CONTENT
   ========================================= */
.spH__center{
  position:relative;
  z-index:4;
  max-width: 880px;
  margin: 0 auto;
  padding: 64px 18px 72px;
  text-align:center;
}

.spH__title{
  margin: 0 0 14px;
  font-weight: 900;
  letter-spacing: -1.1px;
  color: var(--sx-text);
  line-height: 1.05;
  font-size: 64px;
}

.spH__accent{
  color: var(--sx-orange);
}

.spH__sub{
  margin: 0 0 22px;
  color: var(--sx-muted);
  font-size: 18px;
  font-weight: 700;
}

.spH__cities{
  color: var(--sx-orange);
  font-weight: 900;
}

.spH__sub2{
  color: var(--sx-muted);
  font-weight: 800;
}

/* store buttons row */
.spH__btnRow{
  display:flex;
  justify-content:center;
  gap: 18px;
  flex-wrap: wrap;
  margin-top: 18px;
}

/* store buttons like Pronto */
.spBtn{
  width: 300px;
  height: 72px;
  border-radius: 16px;
  background: var(--sx-black);
  border: 2px solid rgba(255,106,0,.22);
  display:flex;
  align-items:center;
  gap: 14px;
  padding: 0 18px;
  text-decoration:none;
  box-shadow: 0 16px 30px rgba(0,0,0,.16);
  transition: transform .14s ease, box-shadow .14s ease;
  cursor:pointer;
}

.spBtn:hover{
  transform: translateY(-1px);
  box-shadow: 0 20px 34px rgba(0,0,0,.18);
}

.spBtn__ico{
  width: 46px;
  height: 46px;
  border-radius: 12px;
  display:flex;
  align-items:center;
  justify-content:center;
  background: rgba(255,106,0,.10);
  flex: 0 0 auto;
}

.spBtn__txt{
  display:flex;
  flex-direction:column;
  line-height:1.05;
  text-align:left;
}

.spBtn__small{
  color: rgba(255,255,255,.78);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .6px;
}

.spBtn__big{
  color:#fff;
  font-size: 22px;
  font-weight: 900;
}

/* tagline under buttons */
.spH__note{
  margin-top: 18px;
  color:#7b7b7b;
  font-weight: 700;
  font-size: 15px;
}

/* =========================================
   RESPONSIVE
   ========================================= */
@media (max-width: 1200px){
  .spH__model{ width: 320px; }
  .spH__title{ font-size: 56px; }
}

@media (max-width: 1050px){
  .spH__model{ width: 280px; }
  .spH__title{ font-size: 50px; }
}

@media (max-width: 900px){
  .spH{
    min-height: auto;
    padding-bottom: 20px;
  }
  .spH__model{ display:none; }
  .spH__title{ font-size: 40px; }
  .spBtn{ width: 100%; max-width: 360px; }
}
.spH__model{
position:absolute;
bottom:0;
width:360px;
z-index:2;
pointer-events:none;
user-select:none;
overflow:hidden;
}

.spH__model img{
width:100%;
height:auto;
display:block;
filter:drop-shadow(0 22px 28px rgba(0,0,0,.14));
}

.spH__model::after{
content:"";
position:absolute;
top:-2px;
right:-2px;
bottom:-2px;
left:-2px;
pointer-events:none;
background:
radial-gradient(ellipse at center, rgba(246,250,249,0) 50%, rgba(246,250,249,0.98) 85%),
linear-gradient(to bottom, rgba(246,250,249,0.98) 0%, rgba(246,250,249,0) 25%),
linear-gradient(to top, rgba(246,250,249,0.98) 0%, rgba(246,250,249,0) 25%),
linear-gradient(to right, rgba(246,250,249,0.98) 0%, rgba(246,250,249,0) 25%),
linear-gradient(to left, rgba(246,250,249,0.98) 0%, rgba(246,250,249,0) 25%);
filter:blur(2px);
}

.spH__model--left{
left:26px;
}

.spH__model--right{
right:26px;
}
/* ---------------------------------------
   Sections base
---------------------------------------- */
html { scroll-behavior: smooth; }
.spSec{
  max-width: 1100px;
  margin: 0 auto;
  padding: 68px 18px;
}
.spSec__head{ text-align:center; margin-bottom: 26px; }
.spSec__title{
  font-size: 44px;
  line-height: 1.1;
  font-weight: 900;
  letter-spacing: -0.02em;
  margin: 0;
}
.spSec__sub{
  margin: 10px auto 0;
  max-width: 740px;
  font-size: 16px;
  line-height: 1.6;
  color: rgba(0,0,0,.62);
}
.spSec__hint{
  text-align:center;
  margin-top: 14px;
  font-size: 13px;
  color: rgba(0,0,0,.55);
}
.spSpacer{ height: 26px; }

/* ---------------------------------------
   Services carousel (Pronto-like)
---------------------------------------- */
.spCar{
  position: relative;
  margin-top: 22px;
}
.spCar__trackWrap{
  overflow: hidden;
  border-radius: 22px;
}
.spCar__track{
  display: flex;
  gap: 14px;
  padding: 4px;
  will-change: transform;
  scroll-behavior: smooth;
  overflow-x: auto;
  scrollbar-width: none;
}
.spCar__track::-webkit-scrollbar{ display:none; }

.spCar__btn{
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  border-radius: 999px;
  border: 1px solid rgba(0,0,0,.08);
  background: rgba(255,255,255,.92);
  box-shadow: 0 10px 30px rgba(0,0,0,.10);
  cursor: pointer;
  z-index: 5;
  font-size: 24px;
  line-height: 44px;
  text-align: center;
  user-select: none;
}
.spCar__btn--left{ left: -8px; }
.spCar__btn--right{ right: -8px; }

.spCard{
  flex: 0 0 320px;
  display: block;
  text-decoration: none;
  color: inherit;
  background: #fff;
  border: 1px solid rgba(0,0,0,.08);
  border-radius: 22px;
  overflow: hidden;
  box-shadow: 0 18px 45px rgba(0,0,0,.06);
}
.spCard__img{
  height: 180px;
  position: relative;
  background: linear-gradient(135deg, rgba(255,106,0,.12), rgba(0,0,0,.03));
  display: grid;
  place-items: center;
}
.spCard__img img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.spCard__ph{
  position: absolute;
  font-size: 54px;
  opacity: .95;
}
.spCard__body{ padding: 16px 16px 18px; }
.spCard__kicker{
  font-size: 12px;
  font-weight: 700;
  color: rgba(0,0,0,.55);
  letter-spacing: .08em;
  text-transform: uppercase;
}
.spCard__title{
  margin-top: 6px;
  font-size: 18px;
  font-weight: 900;
}
.spCard__desc{
  margin-top: 6px;
  font-size: 14px;
  line-height: 1.5;
  color: rgba(0,0,0,.62);
}
.spCard:hover{
  transform: translateY(-2px);
  transition: transform .18s ease;
}

/* ---------------------------------------
   Why us (proof + grid)
---------------------------------------- */
.spProof{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin: 26px 0 18px;
}
.spProof__card{
  background: #fff;
  border: 1px solid rgba(0,0,0,.08);
  border-radius: 18px;
  padding: 18px;
  text-align:center;
  box-shadow: 0 18px 45px rgba(0,0,0,.05);
}
.spProof__num{
  font-size: 44px;
  font-weight: 900;
  letter-spacing: -0.03em;
}
.spProof__lbl{
  margin-top: 4px;
  color: rgba(0,0,0,.62);
  font-weight: 600;
}

.spWhy__grid{
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  margin-top: 14px;
}
.spWhy__tile{
  background: #fff;
  border: 1px solid rgba(0,0,0,.08);
  border-radius: 18px;
  padding: 16px;
  box-shadow: 0 18px 45px rgba(0,0,0,.05);
}
.spWhy__tile--unique{
  border: 1px solid rgba(255,106,0,.25);
  box-shadow: 0 18px 45px rgba(255,106,0,.10);
}
.spWhy__ico{ font-size: 22px; }
.spWhy__t{ margin-top: 8px; font-weight: 900; font-size: 16px; }
.spWhy__d{ margin-top: 6px; color: rgba(0,0,0,.62); line-height: 1.5; font-size: 14px; }

/* ---------------------------------------
   FAQs (accordion)
---------------------------------------- */
.spFaq__pill{
  display:inline-flex;
  align-items:center;
  gap: 8px;
  padding: 8px 14px;
  border-radius: 999px;
  border: 1px solid rgba(0,0,0,.10);
  background: rgba(0,0,0,.03);
  font-weight: 800;
  font-size: 13px;
  margin-bottom: 14px;
}
.spFaq__list{
  max-width: 920px;
  margin: 18px auto 0;
  display: grid;
  gap: 14px;
}
.spFaq__item{
  background: #fff;
  border: 1px solid rgba(0,0,0,.08);
  border-radius: 18px;
  overflow: hidden;
}
.spFaq__q{
  width: 100%;
  display:flex;
  align-items:center;
  justify-content: space-between;
  gap: 12px;
  padding: 18px 18px;
  background: transparent;
  border: 0;
  cursor: pointer;
  font-size: 16px;
  font-weight: 900;
  text-align: left;
}
.spFaq__plus{
  width: 42px;
  height: 42px;
  border-radius: 999px;
  display:grid;
  place-items:center;
  background: rgba(0,0,0,.86);
  color: #fff;
  font-size: 22px;
  line-height: 1;
  flex: 0 0 auto;
}
.spFaq__a{
  padding: 0 18px 18px;
  color: rgba(0,0,0,.65);
  line-height: 1.55;
  font-size: 14px;
}
.spFaq__item.isOpen .spFaq__plus{
  transform: rotate(45deg);
  transition: transform .15s ease;
}

/* ---------------------------------------
   Responsive
---------------------------------------- */
@media (max-width: 980px){
  .spSec__title{ font-size: 34px; }
  .spProof{ grid-template-columns: 1fr; }
  .spWhy__grid{ grid-template-columns: 1fr; }
  .spCard{ flex-basis: 280px; }
  .spCar__btn{ display:none; } /* swipe on smaller screens */
}
/* -----------------------------
   Base helpers for sections
------------------------------ */
html { scroll-behavior: smooth; }

.spSec{
  max-width: 1300px;
  margin: 0 auto;
  padding: 70px 18px;
}

.spSec__head{
  text-align: center;
  margin-bottom: 26px;
}

.spSec__title{
  font-size: 44px;
  line-height: 1.1;
  font-weight: 900;
  letter-spacing: -0.02em;
  margin: 0;
}

.spSec__sub{
  margin: 10px auto 0;
  max-width: 760px;
  font-size: 16px;
  line-height: 1.6;
  color: rgba(0,0,0,.62);
}

.spSec__hint{
  text-align: center;
  margin-top: 14px;
  font-size: 13px;
  color: rgba(0,0,0,.55);
}

.spSpacer{ height: 26px; }


/* -----------------------------
   HERO Decoration ticker (auto)
------------------------------ */
.spHeroTick{
  margin: 16px auto 0;
  max-width: 760px;
  overflow: hidden;
  border-radius: 999px;
  border: 1px solid rgba(0,0,0,.08);
  background: rgba(255,255,255,.82);
  box-shadow: 0 14px 40px rgba(0,0,0,.06);
}

.spHeroTick__track{
  display: flex;
  gap: 10px;
  padding: 10px 12px;
  width: max-content;
  will-change: transform;
  animation: spTick 16s linear infinite;
}

.spHeroTick:hover .spHeroTick__track{ animation-play-state: paused; }

.spHeroTick__chip{
  white-space: nowrap;
  font-size: 13px;
  font-weight: 800;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(0,0,0,.04);
  border: 1px solid rgba(0,0,0,.06);
}

@keyframes spTick{
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}


/* -----------------------------
   Services carousel (auto + arrows)
------------------------------ */
.spCar{
  position: relative;
  margin-top: 22px;
}

.spCar__trackWrap{
  overflow: hidden;
  border-radius: 22px;
}

.spCar__track{
  display: flex;
  gap: 14px;
  padding: 4px;
  will-change: transform;
  scroll-behavior: smooth;
  overflow-x: auto;
  scrollbar-width: none;
}
.spCar__track::-webkit-scrollbar{ display:none; }

.spCar__btn{
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 46px;
  height: 46px;
  border-radius: 999px;
  border: 1px solid rgba(0,0,0,.08);
  background: rgba(255,255,255,.93);
  box-shadow: 0 10px 30px rgba(0,0,0,.12);
  cursor: pointer;
  z-index: 5;
  font-size: 24px;
  line-height: 44px;
  text-align: center;
  user-select: none;
}
.spCar__btn--left{ left: -8px; }
.spCar__btn--right{ right: -8px; }

.spCard{
  flex: 0 0 320px;
  display: block;
  text-decoration: none;
  color: inherit;
  background: #fff;
  border: 1px solid rgba(0,0,0,.08);
  border-radius: 22px;
  overflow: hidden;
  box-shadow: 0 18px 45px rgba(0,0,0,.06);
  transform: translateY(0);
  transition: transform .18s ease;
}
.spCard:hover{ transform: translateY(-2px); }

.spCard__img{
  height: 180px;
  position: relative;
  background: linear-gradient(135deg, rgba(255,106,0,.12), rgba(0,0,0,.03));
  display: grid;
  place-items: center;
}
.spCard__img img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.spCard__ph{
  position: absolute;
  font-size: 54px;
  opacity: .95;
}

.spCard__body{ padding: 16px 16px 18px; }

.spCard__kicker{
  font-size: 12px;
  font-weight: 800;
  color: rgba(0,0,0,.55);
  letter-spacing: .08em;
  text-transform: uppercase;
}

.spCard__title{
  margin-top: 6px;
  font-size: 18px;
  font-weight: 900;
}

.spCard__desc{
  margin-top: 6px;
  font-size: 14px;
  line-height: 1.5;
  color: rgba(0,0,0,.62);
}


/* -----------------------------
   Why us (real stats + grid)
------------------------------ */
.spProof{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin: 26px 0 18px;
}

.spProof__card{
  background: #fff;
  border: 1px solid rgba(0,0,0,.08);
  border-radius: 18px;
  padding: 18px;
  text-align: center;
  box-shadow: 0 18px 45px rgba(0,0,0,.05);
}

.spProof__num{
  font-size: 44px;
  font-weight: 900;
  letter-spacing: -0.03em;
}

.spProof__lbl{
  margin-top: 4px;
  color: rgba(0,0,0,.62);
  font-weight: 700;
}

.spWhy__grid{
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  margin-top: 14px;
}

.spWhy__tile{
  background: #fff;
  border: 1px solid rgba(0,0,0,.08);
  border-radius: 18px;
  padding: 16px;
  box-shadow: 0 18px 45px rgba(0,0,0,.05);
}

.spWhy__tile--unique{
  border: 1px solid rgba(255,106,0,.25);
  box-shadow: 0 18px 45px rgba(255,106,0,.10);
}

.spWhy__ico{ font-size: 22px; }
.spWhy__t{ margin-top: 8px; font-weight: 900; font-size: 16px; }
.spWhy__d{ margin-top: 6px; color: rgba(0,0,0,.62); line-height: 1.5; font-size: 14px; }


/* -----------------------------
   How it works section
------------------------------ */
.spHow__grid{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 18px;
}

.spHow__step{
  background: #fff;
  border: 1px solid rgba(0,0,0,.08);
  border-radius: 18px;
  padding: 18px;
  box-shadow: 0 18px 45px rgba(0,0,0,.05);
  text-align: left;
}

.spHow__num{
  width: 46px;
  height: 46px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  font-weight: 900;
  font-size: 18px;
  background: rgba(255,106,0,.14);
  border: 1px solid rgba(255,106,0,.22);
}

.spHow__t{
  margin-top: 12px;
  font-weight: 900;
  font-size: 16px;
}

.spHow__d{
  margin-top: 6px;
  color: rgba(0,0,0,.62);
  line-height: 1.5;
  font-size: 14px;
}

.spHow__cta{
  display: flex;
  justify-content: center;
  margin-top: 18px;
}

.spHow__btn{
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 16px;
  border-radius: 999px;
  border: 1px solid rgba(0,0,0,.10);
  background: rgba(0,0,0,.86);
  color: #fff;
  font-weight: 900;
  text-decoration: none;
  box-shadow: 0 18px 45px rgba(0,0,0,.12);
}

.spHow__btn:hover{
  transform: translateY(-1px);
  transition: transform .15s ease;
}


/* -----------------------------
   FAQs accordion
------------------------------ */
.spFaq__pill{
  display:inline-flex;
  align-items:center;
  gap: 8px;
  padding: 8px 14px;
  border-radius: 999px;
  border: 1px solid rgba(0,0,0,.10);
  background: rgba(0,0,0,.03);
  font-weight: 900;
  font-size: 13px;
  margin-bottom: 14px;
}

.spFaq__list{
  max-width: 920px;
  margin: 18px auto 0;
  display: grid;
  gap: 14px;
}

.spFaq__item{
  background: #fff;
  border: 1px solid rgba(0,0,0,.08);
  border-radius: 18px;
  overflow: hidden;
}

.spFaq__q{
  width: 100%;
  display:flex;
  align-items:center;
  justify-content: space-between;
  gap: 12px;
  padding: 18px 18px;
  background: transparent;
  border: 0;
  cursor: pointer;
  font-size: 16px;
  font-weight: 900;
  text-align: left;
}

.spFaq__plus{
  width: 42px;
  height: 42px;
  border-radius: 999px;
  display:grid;
  place-items:center;
  background: rgba(0,0,0,.86);
  color: #fff;
  font-size: 22px;
  line-height: 1;
  flex: 0 0 auto;
  transition: transform .15s ease;
}

.spFaq__a{
  padding: 0 18px 18px;
  color: rgba(0,0,0,.65);
  line-height: 1.55;
  font-size: 14px;
}

.spFaq__item.isOpen .spFaq__plus{
  transform: rotate(45deg);
}


/* -----------------------------
   Responsive
------------------------------ */
@media (max-width: 980px){
  .spSec__title{ font-size: 34px; }
  .spProof{ grid-template-columns: 1fr; }
  .spWhy__grid{ grid-template-columns: 1fr; }
  .spHow__grid{ grid-template-columns: 1fr; }

  .spCard{ flex-basis: 280px; }
  .spCar__btn{ display:none; } /* swipe on smaller screens */
}
