/* sell hero start======================== */
.sell-wrap{
  width:100%;
  background:#fff;
  font-family: "Poppins", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
}

/* variables BEFORE root (as you asked) */
.sell-vars{
  display:none;
}

:root{
  --sell-text:#0f172a;
  --sell-black:#000000;
  --sell-white:#ffffff;
  --sell-muted:#6b7280;
  --sell-blue:#00a3e0;
  --sell-blue2:#008dc2;
  --sell-border:#e5e7eb;
  --sell-shadow: 0 10px 30px rgba(2, 8, 23, .08);
  --sell-radius: 26px;
  --sell-max: 1200px;
}

/* container */
.sell-container{
  max-width: var(--sell-max);
  margin: 0 auto;
  padding: 18px 16px 30px;
}

/* top bar */
.sell-topbar{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:12px;
  padding: 6px 0 14px;
}

.sell-back{
  display:inline-flex;
  align-items:center;
  gap:10px;
  color: var(--sell-muted);
  text-decoration:none;
  font-weight:500;
  font-size:13px;
}
.sell-back:hover{ color: var(--sell-text); }
.sell-back__icon{
  width:28px;height:28px;border-radius:999px;
  display:grid;place-items:center;
  border:1px solid var(--sell-border);
  background:#fff;
  box-shadow: 0 8px 18px rgba(2,8,23,.06);
  font-size:18px;
  line-height:1;
}

.sell-breadcrumb{
  display:flex;
  align-items:center;
  gap:8px;
  color: var(--sell-muted);
  font-size:13px;
  flex-wrap:wrap;
}
.sell-breadcrumb a{
  color: var(--sell-muted);
  text-decoration:none;
  font-weight:500;
}
.sell-breadcrumb a:hover{ color: var(--sell-text); }
.sell-sep{ opacity:.7; }

/* hero layout */
.sell-hero{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap: 34px;
  min-height: 520px;
}

/* left */
.sell-left{
  flex: 1 1 520px;
  min-width: 280px;
  padding: 8px 0;
}
.sell-title{
  margin:0;
  line-height:1.02;
  letter-spacing:-0.6px;
}
.sell-title__line{
  display:block;
  font-weight:800;
  font-size: clamp(44px, 4.4vw, 72px);
}
.sell-title__accent{ color: var(--clr-primary); }
.sell-title__dark{ color: #111827; }

.sell-desc{
  margin: 16px 0 26px;
  max-width: 520px;
  color: var(--sell-muted);
  font-size: 15px;
  line-height: 1.7;
}

/* button */
.sell-actions{ display:flex; gap:12px; flex-wrap:wrap; }
.sell-btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:12px;
  background: var(--clr-primary);
  color:#fff;
  text-decoration:none;
  font-weight:700;
  font-size:14px;
  padding: 14px 22px;
  border-radius: 12px;
  box-shadow: 0 12px 25px rgba(0,163,224,.25);
  transition: transform .12s ease, background .12s ease;
}
.sell-btn:hover {
    background: var(--clr-black);
    transform: translateY(-1px);
    color: var(--sell-white);
}
.sell-btn__arrow{
  width:26px;height:26px;border-radius:999px;
  background: rgba(255,255,255,.18);
  display:grid;place-items:center;
  font-size:18px;
}

/* right image */
.sell-right {
    flex: 1 1 560px;
    min-width: 280px;
    display: flex;
    align-items: center;
    align-content: flex-start;
}
.sell-media{
  width: 100%;
  max-width: 560px;
  border-radius: var(--sell-radius);
  overflow:hidden;
  box-shadow: var(--sell-shadow);
  background:#0b1220;
}
.sell-right {
    flex: 1 1 341px;
    min-width: 280px;
    display: flex;
    align-items: center;
    align-content: flex-start;
}
.sell-img{
  width:100%;
  height: 520px;
  object-fit: cover;
  object-position: center;
  display:block;
}

/* ===== Tablet ===== */
@media (max-width: 1024px){
  .sell-hero{
    min-height: unset;
    gap: 22px;
  }
  .sell-img{ height: 420px; }
}

/* ===== Mobile ===== */
@media (max-width: 768px){
  .sell-topbar{
    flex-direction:column;
    align-items:flex-start;
    gap:10px;
  }

  .sell-hero{
    flex-direction:column;
    align-items:stretch;
    gap: 16px;
  }

  .sell-right{ justify-content:flex-start; }
.sell-media {
    max-width: 100%;
    border-radius: 18px;
    height: 57%;
}
  .sell-img{ height: 320px; }

  .sell-desc{ max-width: 100%; }
}

/* very small */
@media (max-width: 420px){
  .sell-title__line{ font-size: 40px; }
  .sell-btn{ width:100%; }
}
/* sell hero end==================================== */

/* Thinking about start==================================== */
.sell-video{
  width:100%;
  padding: clamp(24px, 3vw, 48px) 12px;
  font-family: "Poppins", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
}

/* BLUE AREA – 1680px */
.sell-video-bg {
    max-width: 100%;
    margin: 0 auto;
    background: linear-gradient(135deg,#0c5e86,#0a4f72);
    border-radius: 28px;
    padding: clamp(36px, 4vw, 80px) clamp(16px, 2vw, 28px);
    box-shadow: 0 30px 80px rgba(2,8,23,.18);
    overflow: hidden;
}

/* INNER – 1200px */
.sell-video-inner{
  max-width:1200px;
  margin:0 auto;
  display:flex;
  flex-direction:column;
  align-items:center;
  text-align:center;
}

/* TEXT */
.sell-video-head{
  max-width:820px;
}

.sell-video-title{
  margin:0;
  color:#fff;
  font-weight:800;
  letter-spacing:-0.4px;
  line-height:1.15;
  font-size: clamp(22px, 2.8vw, 40px);
}

.sell-video-sub{
  margin-top:12px;
  color: rgba(255,255,255,.88);
  font-size: clamp(14px, 1.25vw, 17px);
  line-height:1.75;
}

/* VIDEO */
.sell-video-wrap{
  width:100%;
  display:flex;
  justify-content:center;
  margin-top: clamp(22px, 3vw, 42px);
}

.sell-video-frame{
  width: min(1200px, 100%);
  background:#000;
  border-radius:20px;
  overflow:hidden;
  aspect-ratio: 16 / 9;
  box-shadow: 0 30px 70px rgba(0,0,0,.35);
  position:relative;
}

.sell-video-frame iframe{
  width:100%;
  height:100%;
  border:0;
  display:block;
}

/* ============================
   TABLET
============================ */
@media (max-width:1024px){
  .sell-video-bg{
    border-radius:22px;
  }
}

/* ============================
   MOBILE
============================ */
@media (max-width:640px){
  .sell-video{
    padding:20px 10px;
  }

  .sell-video-bg{
    border-radius:18px;
    padding:28px 14px 36px;
  }

  .sell-video-sub{
    font-size:14px;
  }

  .sell-video-frame{
    border-radius:14px;
  }
}

/* button */

/* =========================
   BUTTON
========================= */
.sell-btn-wrap{
  width:100%;
  display:flex;
  justify-content:center;
  padding: 18px 0;
  font-family:"Poppins",system-ui,-apple-system,Segoe UI,Roboto,Arial,sans-serif;
}
.sell-cta-btn{
  border:0;
  cursor:pointer;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  text-align:center;
  padding: 14px 28px;
  border-radius: 12px;
  background: var(--clr-primary);
  color:#fff;
  font-weight:700;
  font-size: 15px;
  box-shadow: 0 12px 26px rgba(0,0,0,.14);
  transition: transform .18s ease, box-shadow .18s ease, filter .18s ease;
}
.sell-cta-btn:hover{
  transform: translateY(-1px);
  box-shadow: 0 18px 40px rgba(0,0,0,.18);
  filter: brightness(1.02);
  background-color: var(--clr-black);
}
.sell-cta-btn:active{
  transform: translateY(0);
  box-shadow: 0 10px 22px rgba(0,0,0,.14);
}
/* form */
.sell-modal{
  position:fixed;
  inset:0;
  z-index:99999;
  display:none;
  font-family:"Poppins",system-ui,-apple-system,Segoe UI,Roboto,Arial,sans-serif;
}
.sell-modal.is-open{ display:block; }

.sell-modal__backdrop{
  position:absolute;
  inset:0;
  background: rgba(15,23,42,.65);
  backdrop-filter: blur(6px);
  animation: sellFade .18s ease forwards;
}

.sell-modal__dialog{
  position:relative;
  width:min(1040px, calc(100% - 24px));
  margin: 40px auto;
  background:#fff;
  border-radius: 18px;
  overflow:hidden;
  box-shadow: 0 40px 120px rgba(0,0,0,.35);
  transform: translateY(10px) scale(.98);
  opacity:0;
  animation: sellPop .22s ease forwards;
}

.sell-modal__close{
  position:absolute;
  top:14px;
  right:14px;
  width:40px;
  height:40px;
  border-radius: 999px;
  border:1px solid rgba(15,23,42,.12);
  background: rgba(255,255,255,.85);
  cursor:pointer;
  font-size:18px;
  line-height:1;
  display:grid;
  place-items:center;
  z-index:5;
}
.sell-modal__close:hover{ background:#fff; }

.sell-modal__grid{
  display:flex;
  min-height: 640px;
}

/* left */
.sell-modal__left{
  flex: 1 1 58%;
  padding: 28px 28px 22px;
}

.sell-modal__title{
  margin:0 0 16px;
  font-size: 28px;
  line-height:1.15;
  letter-spacing:-.3px;
  color:#0f172a;
  font-weight:800;
}
.sell-modal__title span{ color:#0f8fbb; }

.sell-form{ display:flex; flex-direction:column; gap: 14px; }
.sell-field{ display:flex; flex-direction:column; gap: 8px; }
.sell-label{ font-size: 13px; font-weight:600; color:#0f172a; }
.sell-req{ color:#e11d48; }

.sell-input,
.sell-textarea,
.sell-select{
  width:100%;
  border: 1px solid #e5e7eb;
  border-radius: 10px;
  padding: 12px 12px;
  font-size: 14px;
  outline:none;
  background:#fff;
}
.sell-input:focus,
.sell-textarea:focus,
.sell-select:focus{
  border-color: rgba(15,143,187,.55);
  box-shadow: 0 0 0 4px rgba(15,143,187,.14);
}

.sell-textarea{ resize: vertical; min-height: 110px; }

.sell-phone{
  display:flex;
  gap:10px;
}
.sell-select{
  width: 140px;
  cursor:pointer;
}
.sell-input--phone{ flex:1; }

.sell-check{
  display:flex;
  gap:10px;
  align-items:flex-start;
  font-size: 12.5px;
  color:#475569;
  line-height:1.55;
}
.sell-check input{ margin-top: 3px; }

.sell-submit{
  margin-top: 6px;
  border:0;
  cursor:pointer;
  padding: 14px 14px;
  border-radius: 12px;
  background: linear-gradient(135deg,#18a7d1,#0f8fbb);
  color:#fff;
  font-weight:800;
  font-size: 14px;
  letter-spacing:.2px;
  box-shadow: 0 16px 40px rgba(0,0,0,.16);
  transition: transform .18s ease, box-shadow .18s ease;
}
.sell-submit:hover{
  transform: translateY(-1px);
  box-shadow: 0 22px 60px rgba(0,0,0,.20);
}
.sell-submit:active{ transform: translateY(0); }

.sell-legal{
  margin: 6px 0 0;
  font-size: 12px;
  color:#64748b;
  line-height:1.6;
}
.sell-legal a{
  color:#0f8fbb;
  text-decoration: underline;
}

/* right */
.sell-modal__right{
  flex: 1 1 42%;
  background: #e9f7ff;
  position:relative;
  display:flex;
  align-items:center;
  justify-content:center;
  padding: 0;
}

.sell-agent{
  width:100%;
  height:100%;
  position:relative;
  overflow:hidden;
}
.sell-agent__img{
  width:100%;
  height:100%;
  object-fit:cover;
  object-position:center;
  display:block;
}
.sell-agent__shape{
  position:absolute;
  inset:auto -30% -30% auto;
  width: 380px;
  height: 380px;
  background: rgba(24,167,209,.35);
  border-radius: 999px;
  filter: blur(0px);
}

/* animations */
@keyframes sellFade{
  from{ opacity:0; }
  to{ opacity:1; }
}
@keyframes sellPop{
  to{
    transform: translateY(0) scale(1);
    opacity:1;
  }
}

/* responsive */
@media (max-width: 980px){
  .sell-modal__dialog{ margin: 18px auto; }
  .sell-modal__grid{ flex-direction:column; min-height:unset; }
  .sell-modal__right{ min-height: 260px; }
  .sell-modal__left{ padding: 22px 18px 18px; }
  .sell-modal__title{ font-size: 22px; }
}
@media (max-width: 520px){
  .sell-phone{ flex-direction:column; }
  .sell-select{ width:100%; }
}
/* form end */


/* Thinking about end==================================== */

/* Why start==================================== */
/* =========================
   SELL WHY SECTION
========================= */

.sell-why{
  padding: clamp(40px,5vw,80px) 16px;
  font-family:Poppins,system-ui;
  background:#f8fafc;
}

.sell-why-container{
  max-width:1200px;
  margin:0 auto;
}

/* Title */
.sell-why-head{
  text-align:center;
  margin-bottom: clamp(28px,3vw,50px);
}

.sell-why-title{
  font-size: clamp(24px,2.5vw,40px);
  font-weight:800;
  color:#0f172a;
}
.sell-why-title span{
  color:var(--clr-primary);
}

/* Layout */
.sell-why-grid{
  display:flex;
  gap:28px;
  align-items:stretch;
}

/* Left image */
.sell-why-media{
  flex:1;
  border-radius:18px;
  overflow:hidden;
  box-shadow:0 18px 40px rgba(0,0,0,.08);
}
.sell-why-media img{
  width:100%;
  height:100%;
  object-fit:cover;
  display:block;
}

/* Right stats */
.sell-why-stats{
  flex:1;
  display:grid;
  grid-template-columns: repeat(2,1fr);
  gap:16px;
}

.sell-stat{
  background:#eaf2f6;
  border-radius:14px;
  padding:20px;
  display:flex;
  flex-direction:column;
  justify-content:center;
  min-height:110px;
}

.sell-stat h3{
  font-size:22px;
  font-weight:800;
  color:#0f172a;
  margin-bottom:6px;
}

.sell-stat p{
  font-size:13px;
  color:#475569;
}

/* =========================
   TABLET
========================= */
@media (max-width:1024px){
  .sell-why-grid{
    flex-direction:column;
  }
  .sell-why-media{
    height:340px;
  }
}

/* =========================
   MOBILE
========================= */
@media (max-width:640px){

  .sell-why{
    padding:32px 12px;
  }

  .sell-why-stats{
    grid-template-columns:1fr;
  }

  .sell-why-media{
    height:260px;
  }

  .sell-stat{
    padding:16px;
  }
}
/* Why end==================================== */

/* powerful Marketing start==================================== */

/* ===== Prefix: sell- (no :root) ===== */
.sell-mkt{
  padding: clamp(34px, 5vw, 72px) 16px;
  background:#ffffff;
  font-family:Poppins,system-ui,-apple-system,Segoe UI,Roboto,Arial,sans-serif;
}
.sell-mkt__container{
  max-width:1200px;
  margin:0 auto;
}
.sell-mkt__head{
  text-align:center;
  margin-bottom: clamp(18px, 2.4vw, 34px);
}
.sell-mkt__title{
  margin:0;
  font-size: clamp(26px, 3vw, 44px);
  font-weight: 800;
  letter-spacing: -.3px;
  color:#0f172a;
  line-height:1.12;
}
.sell-mkt__title span{
  color:var(--clr-primary);
}

/* grid */
.sell-mkt__grid{
  display:grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

/* cards */
.sell-mkt__card{
  background:#eef7fb;
  border:1px solid rgba(30,167,214,.10);
  border-radius: 16px;
  padding: 18px 18px 20px;
  min-height: 152px;
  box-shadow: 0 16px 40px rgba(2,8,23,.06);
  transition: transform .16s ease, box-shadow .16s ease, background .16s ease;
}
.sell-mkt__card:hover{
  transform: translateY(-2px);
  box-shadow: 0 22px 55px rgba(2,8,23,.10);
  background:#eaf4fa;
}

/* icon */
.sell-mkt__icon{
  width: 42px;
  height: 42px;
  border-radius: 12px;
  background: rgba(30,167,214,.12);
  display:flex;
  align-items:center;
  justify-content:center;
  margin-bottom: 12px;
}
.sell-mkt__icon svg{
  width: 22px;
  height: 22px;
  fill:var(--clr-primary);
}

/* text */
.sell-mkt__text {
    margin: 0;
    color: #0f172a;
    font-weight: 500;
    font-size: 14px;
    line-height: 1.55;
    font-family: 'Poppins';
}

/* tablet */
@media (max-width: 1024px){
  .sell-mkt__grid{ grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .sell-mkt__card{ min-height: 150px; }
}

/* mobile */
@media (max-width: 640px){
  .sell-mkt{ padding: 34px 12px; }
  .sell-mkt__grid{ grid-template-columns: 1fr; gap: 14px; }
  .sell-mkt__card{ padding: 16px; }
}

/* powerful Marketing end==================================== */

/* Reach More Buyers start==================================== */
/* ===== BASE ===== */
.val3-wrap{
  width:100%;
  background:#ffffff;
  font-family:"Poppins",sans-serif;
}

.val3-container{
  max-width:1200px;
  margin:0 auto;
  padding:60px 16px;
}

/* ===== ROW ===== */
.val3-row{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:40px;
}

/* ===== LEFT ===== */
.val3-left{
  flex:1;
  min-width:260px;
}

.val3-title{
  margin:0 0 16px 0;
  font-size:42px;
  line-height:1.1;
  font-weight:800;
  color:#0f172a;
}

.val3-text{
  margin:0 0 22px 0;
  color:#6b7280;
  font-size:15px;
  line-height:1.7;
  max-width:520px;
}

.val3-btn{
  display:inline-block;
  background:var(--clr-primary);
  color:#ffffff;
  text-decoration:none;
  padding:14px 22px;
  border-radius:10px;
  font-weight:600;
  font-size:14px;
  box-shadow:0 10px 25px rgba(0,163,224,0.25);
  transition:0.2s;
}

.val3-btn:hover {
    color: var(--sell-white);
    background: var(--clr-black);
}
/* ===== RIGHT ===== */
.val3-right{
  flex:1;
  min-width:260px;
  display:flex;
  justify-content:flex-end;
}

/* MEDIA BOX */
.val3-media{
  position:relative;
  width:100%;
  max-width:560px;
  aspect-ratio:16/10;
  border-radius:18px;
  overflow:hidden;
}

/* MAIN IMAGE */
.val3-main{
  width:100%;
  height:100%;
  object-fit:cover;
  border-radius:18px;
  box-shadow:0 12px 30px rgba(0,0,0,0.1);
}

/* MINI IMAGE */
.val3-mini{
  position:absolute;
  right:12px;
  bottom:12px;
  width:45%;
  max-width:220px;
  aspect-ratio:4/3;
  object-fit:cover;
  border-radius:14px;
  border:5px solid #ffffff;
  box-shadow:0 14px 30px rgba(0,0,0,0.15);
}

/* =========================
   TABLET
========================= */
@media (max-width:1024px){

  .val3-container{
    padding:50px 16px;
  }

  .val3-title{
    font-size:34px;
  }

  .val3-row{
    gap:28px;
  }

}

/* =========================
   MOBILE (FIXED)
========================= */
@media (max-width:768px){

  .val3-row{
    flex-direction:column;
    align-items:flex-start;
  }

  .val3-right{
    width:100%;
    justify-content:flex-start;
  }

  .val3-media{
    width:100%;
    max-width:100%;
    aspect-ratio:4/3;
    margin-top:10px;
  }

  .val3-mini{
    right:10px;
    bottom:10px;
    width:55%;
    max-width:200px;
  }

  .val3-btn{
    width:100%;
    text-align:center;
  }

}

/* =========================
   SMALL PHONE
========================= */
@media (max-width:420px){

  .val3-title{
    font-size:28px;
  }

  .val3-text{
    font-size:14px;
  }

  .val3-mini{
    width:65%;
  }

}

/* watch video popup */
/* Popup container */
.hello-popup{
  position:fixed;
  inset:0;
  display:flex;
  align-items:center;
  justify-content:center;
  background:rgba(0,0,0,0.25);
  backdrop-filter:blur(2px);
  opacity:0;
  pointer-events:none;
  transition:0.25s ease;
  z-index:9999;
}

/* Show state */
.hello-popup.show{
  opacity:1;
  pointer-events:auto;
}




/* Reach More Buyers end==================================== */