/* ==================== Inner Page Styles ====================  */

/* =========================================================
   Sellglo — landing page styles
   Tokens
   ========================================================= */
@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');


:root{
  --sg-ink:        #171A3B;
  --sg-blue:       #171a3b;
  --sg-blue-deep:  #14163A;
  --sg-gold:       #FFC933;
  --sg-green:      #17A673;
  --sg-red:        #E9503F;
  --sg-cream:      #F6F5F0;
  --sg-paper:      #FFFFFF;
  --sg-line:       #E4E2D8;
  --sg-muted:      #63668A;

  --sg-font-head: 'Sora', sans-serif;
  --sg-font-body: 'Inter', sans-serif;
}

*{ box-sizing: border-box; }

html{ scroll-behavior: smooth; }

body{
  font-family: "Poppins", sans-serif;
  color: var(--sg-ink);
  background: var(--sg-cream);
  line-height: 1.6;
}

@media (prefers-reduced-motion: reduce){
  html{ scroll-behavior: auto; }
  *{ animation-duration: 0.001ms !important; animation-iteration-count: 1 !important; transition-duration: 0.001ms !important; }
}

h1, h2, h3, h4{
  font-family: "Poppins", sans-serif;
  color: var(--sg-ink);
  margin: 0;
}

a{ text-decoration: none; }

:focus-visible{
  outline: 3px solid var(--sg-blue);
  outline-offset: 3px;
}

.sg-kicker{
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  font-size: 0.95rem;
  color: #e5ac0e;
  margin-bottom: 0.75rem;
}




/* =========================================================
   Inner page header (About, etc.)
   ========================================================= */
.sg-page-header{
  position: relative;
  overflow: hidden;
  background: #171a3b;
  padding: 9.5rem 0 4.5rem;
}
.sg-page-h1{ max-width: 40rem; }

/* Check list grid (What does Sellglo do) */
.sg-check-grid{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem 1.5rem;
}
.sg-check-item{
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-weight: 600;
  font-size: 0.98rem;
  color: var(--sg-ink);
  padding: 0.9rem 1rem;
  background: var(--sg-cream);
  border-radius: 12px;
}
.sg-check-icon{
  flex: none;
  width: 26px; height: 26px;
  border-radius: 50%;
  background: var(--sg-green);
  color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.8rem;
  font-weight: 700;
}
@media (max-width: 575px){
  .sg-check-grid{ grid-template-columns: 1fr; }
}

/* Benefit cards (Why Sellglo, about page) */
.sg-benefit-card{
  height: 100%;
  border: 1px solid var(--sg-line);
  border-radius: 18px;
  padding: 1.8rem;
  background: var(--sg-paper);
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}
.sg-benefit-card:hover{
  transform: translateY(-4px);
  box-shadow: 0 20px 40px -24px rgba(23,26,59,0.3);
  border-color: var(--sg-blue);
}
.sg-benefit-card h3{ font-size: 1.05rem; margin-bottom: 0.6rem; }
.sg-benefit-card p{ color: var(--sg-muted); font-size: 0.94rem; margin: 0; }

.sg-who-chips-lg span{ font-size: 0.9rem; padding: 0.5rem 1.1rem; }

/* Vision / mission cards */
.sg-vision-card{
  height: 100%;
  border: 1px solid rgba(255,255,255,0.16);
  border-radius: 18px;
  padding: 2rem;
}
.sg-vision-card h3{
  color: #fff;
  font-size: 1.3rem;
  margin: 0.4rem 0 1rem;
  line-height: 1.3;
}
.sg-vision-card p{ color: #B7B9DA; font-size: 0.96rem; margin: 0; }

.sg-india-line{
  margin-top: 3rem;
  padding-top: 2.4rem;
  border-top: 1px solid rgba(255,255,255,0.16);
  text-align: center;
  max-width: 40rem;
  margin-left: auto;
  margin-right: auto;
}
.sg-india-line p{ color: #B7B9DA; font-size: 0.98rem; margin-bottom: 0.6rem; }
.sg-india-tagline{
  font-family: var(--sg-font-head);
  font-weight: 700;
  font-size: 1.3rem;
  color: #fff !important;
  margin-top: 1rem !important;
}


/* ==================== end ================================ */


/* =========================================================
   Buttons
   ========================================================= */
.sg-btn-primary{
  background: var(--sg-blue);
  color: #fff;
  border: 2px solid var(--sg-blue);
  border-radius: 999px;
  padding: 0.65rem 1.5rem;
  font-weight: 600;
  font-family: var(--sg-font-head);
  transition: background .2s ease, color .2s ease, transform .15s ease;
}
.sg-btn-primary:hover{
  background: var(--sg-ink);
  border-color: var(--sg-ink);
  color: #fff;
  transform: translateY(-1px);
}
.sg-btn-outline{
  background: transparent;
  color: var(--sg-ink);
  border: 2px solid var(--sg-ink);
  border-radius: 999px;
  padding: 0.65rem 1.5rem;
  font-weight: 600;
  font-family: var(--sg-font-head);
  transition: background .2s ease, color .2s ease, transform .15s ease;
}
.sg-btn-outline:hover{
  background: var(--sg-ink);
  color: #fff;
  transform: translateY(-1px);
}
.sg-btn-lg{ padding: 0.85rem 2rem; font-size: 1.02rem; }

/* =========================================================
   Navbar
   ========================================================= */
.sg-navbar{
  background: rgba(246,245,240,0.92);
  backdrop-filter: blur(8px);
  padding: 0.9rem 0;
  border-bottom: 1px solid transparent;
  transition: border-color .25s ease, box-shadow .25s ease, padding .25s ease;
}
.sg-navbar.is-scrolled{
  border-bottom-color: var(--sg-line);
  box-shadow: 0 6px 24px rgba(23,26,59,0.06);
  padding: 0.55rem 0;
}
.sg-logo-img{ height: 50px; width: auto; display: block; }

.sg-nav-link{
  font-family: var(--sg-font-head);
  font-weight: 600;
  color: var(--sg-ink) !important;
  padding: 0.5rem 0.85rem !important;
  position: relative;
}
.sg-nav-link.active{ color: var(--sg-blue) !important; }
.sg-nav-link::after{
  content: "";
  position: absolute;
  left: 0.85rem; right: 0.85rem; bottom: 0.15rem;
  height: 2px;
  background: var(--sg-blue);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .2s ease;
}
.sg-nav-link:hover::after,
.sg-nav-link.active::after{ transform: scaleX(1); }

.sg-burger{ display: inline-flex; flex-direction: column; gap: 5px; width: 22px; }
.sg-burger span{ height: 2px; width: 100%; background: var(--sg-ink); display: block; }

/* =========================================================
   Hero
   ========================================================= */
.sg-hero{
  position: relative;
  padding: 8.5rem 0 4rem;
  overflow: hidden;
  background: var(--sg-cream);
}
.sg-hero-map{
  position: absolute;
  inset: -10% -10% auto -10%;
  height: 120%;
  background-image:
    radial-gradient(circle, var(--sg-line) 1.5px, transparent 1.5px);
  background-size: 26px 26px;
  opacity: 0.55;
  mask-image: radial-gradient(ellipse at 70% 30%, black 0%, transparent 65%);
  pointer-events: none;
}

.sg-h1{
  font-size: clamp(2.4rem, 4.4vw, 3.6rem);
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: -0.01em;
  color: #ffff ;
}
.sg-h1-accent{ color: var(--sg-blue); }

.sg-caret{
  display: inline-block;
  width: 3px;
  height: 0.85em;
  margin-left: 4px;
  background: var(--sg-blue);
  vertical-align: -0.1em;
  animation: sg-blink 0.9s steps(1) infinite;
}
@media (prefers-reduced-motion: reduce){
  .sg-caret{ animation: none; opacity: 1; }
}
@keyframes sg-blink{
  0%, 49%{ opacity: 1; }
  50%, 100%{ opacity: 0; }
}

.sg-lead{
  max-width: 34rem;
  font-size: 1.12rem;
  color: #c9cbdf;
  margin-top: 1.4rem;
}

.sg-inline-facts{
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 1.6rem;
  padding: 0;
  margin: 2rem 0 0;
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--sg-ink);
}
.sg-inline-facts li{ display: flex; align-items: center; gap: 0.5rem; }
.sg-inline-facts li::before{
  content: "";
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--sg-green);
  display: inline-block;
}

/* Hero visual — photo + floating capability cards */
.sg-hero-visual{
  position: relative;
  width: 100%;
  max-width: 520px;
  margin: 0 auto;
}
.sg-hero-visual::before{
  content: "";
  display: block;
  padding-top: 100%;
}

.sg-hero-circle{
  position: absolute;
  top: 56%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 68%;
  height: 68%;
  border-radius: 50%;
  background: var(--sg-gold);
  z-index: 1;
}

.sg-hero-photo{
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  height: 122%;
  width: auto;
  max-width: none;
  display: block;
  z-index: 2;
  filter: drop-shadow(0 18px 26px rgba(23,26,59,0.22));
}

.sg-hero-orbit{
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}
.orbit-path{
  fill: none;
  stroke: var(--sg-ink);
  stroke-width: 1.6;
  stroke-linecap: round;
  stroke-dasharray: 5 8;
  opacity: 0.32;
  animation: sg-orbit-flow 2.2s linear infinite;
}
@keyframes sg-orbit-flow{
  to{ stroke-dashoffset: -26; }
}

.sg-float-card{
  position: absolute;
  z-index: 3;
  display: flex;
  align-items: center;
  gap: 0.65rem;
  background: var(--sg-paper);
  border: 1px solid var(--sg-line);
  border-radius: 16px;
  padding: 0.65rem 0.9rem;
  box-shadow: 0 14px 30px -14px rgba(23,26,59,0.28);
  font-size: 0.82rem;
  font-weight: 600;
  line-height: 1.3;
  color: var(--sg-ink);
  white-space: nowrap;
}
.fc-icon{
  flex: none;
  width: 34px; height: 34px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
}
.fc-icon svg{ width: 17px; height: 17px; fill: none; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.fc-blue{ background: rgba(43,47,228,0.12); }
.fc-blue svg{ stroke: var(--sg-blue); }
.fc-indigo{ background: rgba(23,26,59,0.10); }
.fc-indigo svg{ stroke: var(--sg-ink); }
.fc-gold{ background: rgba(255,201,51,0.25); }
.fc-gold svg{ stroke: #A9740A; }
.fc-green{ background: rgba(23,166,115,0.14); }
.fc-green svg{ stroke: var(--sg-green); }

.card-tl{ top: 4%; left: -6%; }
.card-tr{ top: 0%; right: -8%; }
.card-bl{ bottom: 16%; left: -10%; }
.card-br{ bottom: 12%; right: -10%; }

@media (max-width: 991px){
  .sg-hero-visual{ max-width: 420px; margin-top: 2rem; }
  .sg-float-card{ font-size: 0.72rem; padding: 0.5rem 0.7rem; gap: 0.5rem; }
  .fc-icon{ width: 28px; height: 28px; }
  .fc-icon svg{ width: 14px; height: 14px; }
  .card-tl{ left: -2%; }
  .card-tr{ right: -2%; }
  .card-bl{ left: -4%; }
  .card-br{ right: -4%; }
}
@media (max-width: 575px){
  .sg-float-card{ white-space: normal; max-width: 118px; }
}

/* Trust strip */
.sg-trust-strip{
  margin-top: 4rem;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1.4rem 0;
  padding-top: 2rem;
  border-top: 1px solid var(--sg-line);
}
.sg-trust-item{ display: flex; flex-direction: column; padding-right: 1.6rem; }
.sg-trust-item strong{ font-family: var(--sg-font-head); font-size: 1.4rem; color: var(--sg-ink); }
.sg-trust-item span{ font-size: 0.85rem; color: var(--sg-muted); }
.sg-trust-divider{ width: 1px; height: 34px; background: var(--sg-line); margin-right: 1.6rem; }

/* =========================================================
   Sections (generic)
   ========================================================= */
.sg-section {
    padding: 6rem 0;
}
.sg-section-alt {
    background: var(--sg-paper);
}
.sg-section-head {
    max-width: 40rem;
    margin-bottom: 3.2rem;
}
.sg-section-head-center {
    max-width: 60rem;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
}
.sg-h2 {
    font-size: clamp(1.7rem, 3vw, 2.35rem);
    font-weight: 700;
    letter-spacing: -0.01em;
}
.sg-section-sub {
    color: var(--sg-muted);
    margin-top: 0.9rem;
    font-size: 1.05rem;
}
.sg-body-text {
    color: var(--sg-muted);
    font-size: 1.03rem;
    margin-bottom: 1.1rem;
}


.sg-kicker-gold{
  color: #B8790C;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.82rem;
}

/* Steps */
.sg-steps{
  display: flex;
  align-items: flex-start;
  gap: 0;
}
.sg-step{
  flex: 1 1 0;
  text-align: center;
  padding: 0 0.5rem;
}
.sg-step-icon-wrap{
  position: relative;
  width: 84px;
  height: 84px;
  margin: 0 auto 1.4rem;
}
.sg-step-icon{
  width: 84px;
  height: 84px;
  border-radius: 50%;
  border: 1px solid var(--sg-line);
  background: var(--sg-paper);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}
.sg-step-icon svg{
  width: 30px; height: 30px;
  fill: none;
  stroke: var(--sg-ink);
  stroke-width: 1.6;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.sg-step-icon-solid{
  background: var(--sg-green);
  border-color: var(--sg-green);
}
.sg-step-icon-solid svg{ stroke: #fff; }
.sg-rupee-glyph{
  font-family: var(--sg-font-head);
  font-weight: 700;
  font-size: 1.5rem;
  color: #fff;
  line-height: 1;
}

.sg-step:hover .sg-step-icon{
  transform: translateY(-4px);
  box-shadow: 0 14px 26px -14px rgba(23,26,59,0.35);
  border-color: var(--sg-blue);
}

.sg-step-num{
  position: absolute;
  bottom: -8px;
  left: 50%;
  transform: translateX(-50%);
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: var(--sg-gold);
  color: var(--sg-ink);
  font-family: var(--sg-font-head);
  font-weight: 700;
  font-size: 0.82rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid var(--sg-cream);
  animation: sg-badge-pop .5s ease backwards;
}
.sg-step:nth-child(3) .sg-step-num{ animation-delay: .1s; }
.sg-step:nth-child(5) .sg-step-num{ animation-delay: .2s; }
.sg-step:nth-child(7) .sg-step-num{ animation-delay: .3s; }
@keyframes sg-badge-pop{
  0%{ transform: translateX(-50%) scale(0); }
  70%{ transform: translateX(-50%) scale(1.15); }
  100%{ transform: translateX(-50%) scale(1); }
}

.sg-step h3{ font-size: 1.05rem; margin-bottom: 0.5rem; }
.sg-step p{ color: var(--sg-muted); font-size: 0.9rem; }

.sg-step-connector{
  flex: 0 0 auto;
  align-self: flex-start;
  width: 60px;
  height: 1px;
  margin-top: 42px;
  background-image: linear-gradient(to right, var(--sg-muted) 50%, transparent 50%);
  background-size: 10px 1px;
  background-repeat: repeat-x;
  position: relative;
  overflow: hidden;
}
.sg-step-connector::after{
  content: "";
  position: absolute;
  inset: 0;
  background-image: linear-gradient(to right, var(--sg-muted) 50%, transparent 50%);
  background-size: 10px 1px;
  animation: sg-connector-flow 1.4s linear infinite;
}
@keyframes sg-connector-flow{
  from{ transform: translateX(-10px); }
  to{ transform: translateX(0); }
}

@media (max-width: 991px){
  .sg-steps{ flex-wrap: wrap; justify-content: center; row-gap: 2.6rem; }
  .sg-step{ flex: 0 0 42%; }
  .sg-step-connector{ display: none; }
}
@media (max-width: 575px){
  .sg-step{ flex: 0 0 100%; }
}

/* Feature list (Why Sellglo) */
.sg-feature-list{ display: flex; flex-direction: column; }
.sg-feature-row{
  display: flex;
  gap: 1.25rem;
  padding: 1.5rem 0;
  border-top: 1px solid var(--sg-line);
}
.sg-feature-row:last-child{ border-bottom: 1px solid var(--sg-line); }
.sg-feature-icon{
  flex: none;
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--sg-cream);
  display: flex; align-items: center; justify-content: center;
}
.sg-feature-icon svg{
  width: 22px; height: 22px;
  fill: none; stroke: var(--sg-blue); stroke-width: 1.7;
  stroke-linecap: round; stroke-linejoin: round;
}
.sg-feature-row h3{ font-size: 1.08rem; margin-bottom: 0.3rem; }
.sg-feature-row p{ color: var(--sg-muted); font-size: 0.96rem; margin: 0; }

/* About */
.sg-who-chips{
  display: flex; flex-wrap: wrap; gap: 0.6rem;
  margin-top: 1.6rem;
}
.sg-who-chips span{
  border: 1px solid var(--sg-line);
  border-radius: 999px;
  padding: 0.4rem 1rem;
  font-size: 0.86rem;
  font-weight: 600;
  color: var(--sg-ink);
  background: var(--sg-paper);
}
.sg-text-link{
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  margin-top: 1.6rem;
  font-family: var(--sg-font-head);
  font-weight: 600;
  color: var(--sg-blue);
  font-size: 0.95rem;
  border-bottom: 1px solid transparent;
  transition: border-color .2s ease;
}
.sg-text-link:hover{ border-bottom-color: var(--sg-blue); }
.sg-about-panel{
  background: var(--sg-paper);
  border: 1px solid var(--sg-line);
  border-radius: 20px;
  padding: 2rem;
}
.sg-about-row{
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  padding: 1rem 0;
  border-bottom: 1px solid var(--sg-line);
}
.sg-about-row:last-child{ border-bottom: none; padding-bottom: 0.2rem; }
.sg-about-dot{
  flex: none;
  width: 10px; height: 10px;
  border-radius: 50%;
  margin-top: 0.5rem;
}
.sg-about-row p{ margin: 0; color: var(--sg-muted); font-size: 0.97rem; }

/* Pricing / dark section */
.sg-section-dark{
  background: var(--sg-blue-deep);
  color: #fff;
}
.sg-h2-light{ color: #fff; }
.sg-section-sub-light{ color: #B7B9DA; }

.sg-price-grid{ margin-top: 1rem; }
.sg-price-card{
  border: 1px solid rgba(255,255,255,0.16);
  border-radius: 18px;
  padding: 2rem 1.6rem;
  height: 100%;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}
.sg-price-card-highlight{
  background: var(--sg-blue);
  border-color: var(--sg-blue);
}
.sg-price-value{
  font-family: var(--sg-font-head);
  font-weight: 700;
  font-size: 2.2rem;
}
.sg-price-label{ color: #C7C9E8; font-size: 0.94rem; }
.sg-price-card-highlight .sg-price-label{ color: #E4E4FB; }

.sg-shipping-note{
  margin-top: 2.4rem;
  padding-top: 1.8rem;
  border-top: 1px solid rgba(255,255,255,0.16);
  max-width: 46rem;
}
.sg-shipping-note p{ color: #B7B9DA; font-size: 0.92rem; margin: 0; }

/* CTA banner */
.sg-cta{ padding: 4rem 0; }
.sg-cta-inner{
  background: var(--sg-gold);
  border-radius: 26px;
  padding: 3rem 3rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
}
.sg-cta-inner h2{ font-size: 1.7rem; margin-bottom: 0.4rem; }
.sg-cta-inner p{ color: var(--sg-ink); opacity: 0.75; margin: 0; max-width: 30rem; }
.sg-cta-inner .sg-btn-primary{
  background: var(--sg-ink);
  border-color: var(--sg-ink);
}
.sg-cta-inner .sg-btn-primary:hover{ background: var(--sg-blue); border-color: var(--sg-blue); }


/* Reveal-on-load (single orchestrated entrance, not per-card) */
.sg-reveal{ opacity: 0; transform: translateY(14px); transition: opacity .7s ease, transform .7s ease; }
.sg-reveal.is-visible{ opacity: 1; transform: translateY(0); }



/* =================== footer =============== */


/* Footer */
.sg-footer{
  background: var(--sg-ink);
  color: #C7C9E8;
  padding: 3.5rem 0 0;
}
 
/* Footer top CTA banner */
.sg-footer-cta{
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1.5rem;
  padding-bottom: 3rem;
}
.sg-footer-cta h2{
  color: #fff;
  font-size: clamp(1.6rem, 3.2vw, 2.2rem);
  font-weight: 700;
  line-height: 1.2;
  margin: 0;
}
.sg-footer-cta-accent{ color: var(--sg-gold); }
.sg-btn-outline-light{
  border: 1.5px solid rgba(255,255,255,0.5);
  color: #fff;
  border-radius: 999px;
  padding: 0.75rem 1.8rem;
  font-family: var(--sg-font-head);
  font-weight: 600;
  background: transparent;
  transition: background .2s ease, color .2s ease, border-color .2s ease;
}
.sg-btn-outline-light:hover{
  background: #fff;
  color: var(--sg-ink);
  border-color: #fff;
}
 
.sg-footer-main{
  padding-top: 3rem;
  border-top: 1px solid rgba(255,255,255,0.14);
}
 
/* .sg-logo-badge{
  background: #fff;
  display: inline-block;
  padding: 0.6rem 1rem;
  border-radius: 12px;
  margin-bottom: 1.2rem;
} */
.sg-footer-logo{ height: 90px; width: auto; display: block; }
.sg-footer-text{ font-size: 0.94rem; line-height: 1.7; max-width: 24rem; }
.sg-footer-contact a{ color: #C7C9E8; }
.sg-footer-contact a:hover{ color: #fff; }
 
.sg-social{ display: flex; gap: 0.6rem; }
.sg-social-link{
  width: 36px; height: 36px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.25);
  display: flex; align-items: center; justify-content: center;
  transition: background .2s ease, border-color .2s ease;
}
.sg-social-link svg{ width: 16px; height: 16px; fill: #C7C9E8; }
.sg-social-link:hover{ background: var(--sg-blue); border-color: var(--sg-blue); }
.sg-social-link:hover svg{ fill: #fff; }
 
.sg-footer-heading{
  font-family: var(--sg-font-head);
  font-size: 0.95rem;
  color: #9799C4;
  margin-bottom: 1.2rem;
}
.sg-footer-links{ list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 0.7rem; }
.sg-footer-links a{ color: #E7E8F5; font-size: 0.94rem; font-weight: 500; }
.sg-footer-links a:hover{ color: #fff; }
 
/* Legal / registered-company contact block */
.sg-footer-contact-head{
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1rem;
}
.sg-footer-heading-accent{
  color: #9799C4;
  /* font-family: Georgia, 'Times New Roman', serif; */
  font-weight: 700;
  font-size: 1.05rem;
  margin-bottom: 0;
}
.sg-legal-text{
  /* font-family: Georgia, 'Times New Roman', serif; */
  color: #e7e8e9;
  /* font-weight: 700; */
  font-size: 0.92rem;
  line-height: 1.9;
  margin: 0;
}
 
.sg-footer-bottom{
  margin-top: 3rem;
  border-top: 1px solid rgba(255,255,255,0.14);
  padding: 1.4rem 0;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0.6rem;
  font-size: 0.85rem;
  color: #8F92BE;
}
 
/* Reveal-on-load (single orchestrated entrance, not per-card) */
.sg-reveal{ opacity: 0; transform: translateY(14px); transition: opacity .7s ease, transform .7s ease; }
.sg-reveal.is-visible{ opacity: 1; transform: translateY(0); }
 
.sg-social-link i{
  color: #fff;
  font-size: 21px;
}

.copy-right-text a{
  color: #ffffffd3;
  text-decoration: none;
}

/* ======= end =================== */


/* ============= why sellglo ================================================== */


/* ============================================================
   WHY SELL WITH SELLGLO — page content styles
   Reuses existing tokens: --sg-ink --sg-blue --sg-orange --sg-cream
   --sg-line --sg-muted --sg-navy --sg-font-head
   ============================================================ */

/* shared reveal-on-scroll — one quiet fade+rise, used once per section */
[data-sg-reveal],
.sg-reason,
.sg-audience-item {
    opacity: 0;
    transform: translateY(16px);
}
.sg-in-view[data-sg-reveal],
.sg-in-view .sg-reason,
.sg-in-view .sg-audience-item {
    animation: sgRevealIn 0.6s cubic-bezier(.2,.7,.3,1) forwards;
}
@keyframes sgRevealIn {
    to { opacity: 1; transform: translateY(0); }
}
.sg-no-motion [data-sg-reveal],
.sg-no-motion .sg-reason,
.sg-no-motion .sg-audience-item {
    animation: none !important;
    opacity: 1 !important;
    transform: none !important;
}

/* ---------- Page intro (follow-up copy under the dark header) ---------- */
.sg-why2-intro {
    padding-top: 3.5rem;
}
.sg-why2-lead {
    color: var(--sg-muted);
    font-size: 1.02rem;
    max-width: 62ch;
    line-height: 1.7;
}
.sg-why2-lead strong {
    color: var(--sg-ink);
}
.sg-why2-statement {
    margin-top: 1.8rem;
    padding-top: 1.6rem;
    border-top: 1px solid var(--sg-line);
    font-weight: 650;
    color: var(--sg-ink);
    font-size: 1.08rem;
    line-height: 1.6;
}

.sg-why2-head {
    max-width: 46rem;
    margin-bottom: 2.8rem;
}

/* ---------- 8 reasons ---------- */
.sg-reasons {
    display: flex;
    flex-direction: column;
}
.sg-reason {
    display: grid;
    grid-template-columns: 2.5rem 3rem 1fr;
    gap: 1.2rem;
    align-items: start;
    padding: 1.8rem 0;
    border-top: 1px solid var(--sg-line);
}
.sg-reason:last-child {
    border-bottom: 1px solid var(--sg-line);
}
.sg-reason-num {
    font-family: var(--sg-font-head);
    font-size: 1.3rem;
    color: var(--sg-line);
    line-height: 1;
    padding-top: 0.15rem;
}
.sg-reason-icon {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--sg-cream);
    display: flex;
    align-items: center;
    justify-content: center;
    flex: none;
}
.sg-reason-icon svg {
    width: 20px;
    height: 20px;
    fill: none;
    stroke: var(--sg-blue, #3B7DD8);
    stroke-width: 1.7;
    stroke-linecap: round;
    stroke-linejoin: round;
}
.sg-reason-icon svg * {
    fill: none;
    stroke: var(--sg-blue, #3B7DD8);
}
/* .sg-reason-icon-solid {
    background: var(--sg-orange, #E8A125);
} */
.sg-reason-icon-solid svg,
.sg-reason-icon-solid svg * {
    /* stroke: #fff; */
}
.sg-reason h3 {
    font-size: 1.08rem;
    color: var(--sg-ink);
    margin: 0 0 0.5rem;
}
.sg-reason p {
    color: var(--sg-muted);
    font-size: 0.96rem;
    line-height: 1.65;
    margin: 0 0 0.6rem;
}
.sg-reason-note {
    color: var(--sg-ink) !important;
    font-weight: 600;
}

/* ---------- Comparison ---------- */
.sg-compare {
    border: 1px solid var(--sg-line);
    border-radius: 16px;
    overflow: hidden;
}
.sg-compare-row {
    display: grid;
    grid-template-columns: 8rem 1fr 1fr;
    border-top: 1px solid var(--sg-line);
}
.sg-compare-row:first-child {
    border-top: none;
}
.sg-compare-row > span {
    padding: 1rem 1.2rem;
    font-size: 0.94rem;
}
.sg-compare-label {
    color: var(--sg-ink);
    font-weight: 600;
    background: var(--sg-cream);
}
.sg-compare-head {
    background: var(--sg-ink);
}
.sg-compare-head > span {
    color: #fff;
    font-weight: 650;
}
.sg-compare-head .sg-compare-highlight {
    background: var(--sg-orange, #E8A125);
}
.sg-compare-row:not(.sg-compare-head) > span:nth-child(2) {
    color: var(--sg-muted);
}
.sg-compare-highlight {
    color: var(--sg-ink);
    font-weight: 600;
    background: rgba(232, 161, 37, 0.08);
}

/* ---------- Audience ---------- */
.sg-audience {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2px;
    background: var(--sg-line);
    border: 1px solid var(--sg-line);
    border-radius: 16px;
    overflow: hidden;
}
.sg-audience-item {
    background: #fff;
    padding: 2rem 1.8rem;
    transition: background 0.25s ease;
}
.sg-in-view .sg-audience-item {
    animation-delay: calc(var(--sg-i, 0) * 0.07s);
}
.sg-audience-item:hover {
    background: var(--sg-cream);
}
.sg-audience-icon {
    display: inline-flex;
    width: 42px;
    height: 42px;
    border-radius: 12px;
    background: var(--sg-cream);
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
}
.sg-audience-icon svg {
    width: 20px;
    height: 20px;
    fill: none;
    stroke: var(--sg-blue, #3B7DD8);
    stroke-width: 1.7;
    stroke-linecap: round;
    stroke-linejoin: round;
}
.sg-audience-icon svg * {
    fill: none;
    stroke: var(--sg-blue, #3B7DD8);
}
.sg-audience-item h3 {
    font-size: 1rem;
    color: var(--sg-ink);
    margin: 0 0 0.4rem;
}
.sg-audience-item p {
    font-size: 0.9rem;
    color: var(--sg-muted);
    margin: 0;
    line-height: 1.55;
}

/* ---------- Flow ---------- */
.sg-flow-grid {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 3rem;
    align-items: start;
}
.sg-flow-copy .sg-h2 {
    margin-bottom: 1rem;
}
.sg-flow-copy p {
    line-height: 1.7;
}

.sg-flow {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 0;
    padding-left: 1.4rem;
}
.sg-flow::before {
    content: '';
    position: absolute;
    left: 5px;
    top: 10px;
    bottom: 10px;
    width: 2px;
    background: var(--sg-line);
    transform: scaleY(0);
    transform-origin: top;
}
.sg-in-view .sg-flow::before {
    animation: sgFlowLine 1.1s cubic-bezier(.2,.7,.3,1) forwards;
}
@keyframes sgFlowLine {
    to { transform: scaleY(1); }
}

.sg-flow-step {
    position: relative;
    padding: 0.7rem 0 0.7rem 1.6rem;
    opacity: 0;
    transform: translateX(-8px);
}
.sg-flow-step::before {
    content: '';
    position: absolute;
    left: -1.4rem;
    top: 1.05rem;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--sg-blue, #3B7DD8);
    border: 2px solid #fff;
    box-shadow: 0 0 0 1px var(--sg-line);
}
.sg-flow-step-final::before {
    background: var(--sg-orange, #E8A125);
}
.sg-flow-step span {
    display: inline-block;
    font-weight: 600;
    color: var(--sg-ink);
    font-size: 0.98rem;
}
.sg-flow-step-final span {
    color: var(--sg-orange, #E8A125);
}

.sg-in-view .sg-flow-step {
    animation: sgFlowStepIn 0.5s ease forwards;
    animation-delay: calc(var(--sg-i) * 0.12s + 0.2s);
}
@keyframes sgFlowStepIn {
    to { opacity: 1; transform: translateX(0); }
}

.sg-no-motion .sg-flow::before,
.sg-no-motion .sg-flow-step {
    animation: none !important;
    opacity: 1 !important;
    transform: none !important;
}

/* ---------- Why choose (bordered icon grid) ---------- */
.sg-choose {
    display: grid;
    grid-template-columns: 1fr 1fr;
    border-top: 1px solid var(--sg-line);
}
.sg-choose-item {
    display: flex;
    gap: 1rem;
    padding: 1.6rem 1.4rem;
    border-bottom: 1px solid var(--sg-line);
}
.sg-choose-item:nth-child(odd) {
    border-right: 1px solid var(--sg-line);
}
.sg-choose-icon {
    flex: none;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: #fff;
    border: 1px solid var(--sg-line);
    display: flex;
    align-items: center;
    justify-content: center;
}
.sg-choose-icon svg {
    width: 20px;
    height: 20px;
    fill: none;
    stroke: var(--sg-orange, #E8A125);
    stroke-width: 1.7;
    stroke-linecap: round;
    stroke-linejoin: round;
}
.sg-choose-icon svg * {
    fill: none;
    stroke: var(--sg-orange, #E8A125);
}
.sg-choose-item h3 {
    font-size: 1rem;
    color: var(--sg-ink);
    margin: 0 0 0.35rem;
}
.sg-choose-item p {
    font-size: 0.9rem;
    color: var(--sg-muted);
    margin: 0;
    line-height: 1.5;
}

/* ---------- Final CTA ---------- */
.sg-final-cta-section {
    padding-bottom: 6rem;
}
.sg-final-cta {
    background: var(--sg-ink);
    border-radius: 24px;
    padding: 3.5rem 2rem;
    text-align: center;
    /* max-width: 42rem; */
    margin: 0 auto;
}
.sg-final-cta h2 {
    color: #fff;
    font-size: 1.8rem;
    margin: 0 0 0.8rem;
}
.sg-final-cta p {
    color: #c7c9e8;
    margin: 0 0 0.6rem;
}
.sg-final-cta-tag {
    font-weight: 650;
    color: #fff !important;
}
.sg-final-cta-btn {
    display: inline-block;
    margin-top: 1.6rem;
    background: var(--sg-orange, #E8A125);
    color: #fff;
    font-weight: 650;
    font-size: 0.96rem;
    padding: 0.85rem 1.8rem;
    border-radius: 999px;
    text-decoration: none;
    transition: transform 0.3s cubic-bezier(.2,.7,.3,1), box-shadow 0.3s ease;
}
.sg-final-cta-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 14px 26px -12px rgba(232, 161, 37, 0.55);
}

/* ---------- Responsive ---------- */
@media (max-width: 900px) {
    .sg-reason {
        grid-template-columns: 2rem 2.6rem 1fr;
    }
    .sg-audience {
        grid-template-columns: 1fr 1fr;
    }
    .sg-flow-grid {
        grid-template-columns: 1fr;
    }
    .sg-compare-row {
        grid-template-columns: 6rem 1fr 1fr;
    }
}

@media (max-width: 620px) {
    .sg-reason {
        grid-template-columns: 1fr;
    }
    .sg-reason-num {
        display: none;
    }
    .sg-audience {
        grid-template-columns: 1fr;
    }
    .sg-choose {
        grid-template-columns: 1fr;
    }
    .sg-choose-item:nth-child(odd) {
        border-right: none;
    }
    .sg-compare-row {
        grid-template-columns: 1fr;
        text-align: left;
    }
    .sg-compare-label {
        font-size: 0.82rem;
    }
}








/* ================ end ========================= */


/* ================= shipping and pricing page ================= */


/* ============================================================
   SHIPPING & PRICING — page content styles
   Reuses tokens: --sg-ink --sg-blue --sg-orange --sg-cream
   --sg-line --sg-muted --sg-font-head
   Shares component classes with the Why Sellglo page:
   .sg-reason / .sg-choose / .sg-final-cta (safe to keep both
   copies if not yet merged into one shared stylesheet — the
   rules are identical).
   ============================================================ */

[data-sg-reveal] {
    opacity: 0;
    transform: translateY(16px);
}
.sg-in-view[data-sg-reveal] {
    animation: sgRevealIn 0.6s cubic-bezier(.2,.7,.3,1) forwards;
}
@keyframes sgRevealIn {
    to { opacity: 1; transform: translateY(0); }
}
.sg-no-motion[data-sg-reveal] {
    animation: none !important;
    opacity: 1 !important;
    transform: none !important;
}

.sg-sp-head {
    max-width: 46rem;
    margin-bottom: 2.4rem;
}
.sg-sp-head .sg-h2 {
    margin: 0.5rem 0 0.8rem;
}

/* ---------- Pricing table ---------- */
.sg-price-table {
    border: 1px solid var(--sg-line);
    border-radius: 16px;
    overflow: hidden;
}
.sg-price-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    padding: 1.1rem 1.4rem;
    border-top: 1px solid var(--sg-line);
}
.sg-price-row:first-child {
    border-top: none;
}
.sg-price-row span {
    color: var(--sg-muted);
    font-size: 0.95rem;
}
.sg-price-row strong {
    color: var(--sg-ink);
    font-size: 0.98rem;
    text-align: right;
}
.sg-price-good {
    color: var(--sg-blue, #3B7DD8) !important;
}
.sg-sp-footnote {
    margin-top: 1.2rem;
    font-size: 0.84rem;
    color: var(--sg-muted);
    max-width: 60ch;
}

/* ---------- Reasons (shared with why-sellglo page) ---------- */
.sg-reasons {
    display: flex;
    flex-direction: column;
}
.sg-reason {
    display: grid;
    grid-template-columns: 2.5rem 3rem 1fr;
    gap: 1.2rem;
    align-items: start;
    padding: 1.8rem 0;
    border-top: 1px solid var(--sg-line);
}
.sg-reason:last-child {
    border-bottom: 1px solid var(--sg-line);
}
.sg-reason-num {
    font-family: var(--sg-font-head);
    font-size: 1.3rem;
    color: var(--sg-line);
    line-height: 1;
    padding-top: 0.15rem;
}
.sg-reason-icon {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--sg-cream);
    display: flex;
    align-items: center;
    justify-content: center;
    flex: none;
}
.sg-reason-icon svg {
    width: 20px;
    height: 20px;
    fill: none;
    stroke: var(--sg-blue, #3B7DD8);
    stroke-width: 1.7;
    stroke-linecap: round;
    stroke-linejoin: round;
}
.sg-reason-icon svg * {
    fill: none;
    stroke: var(--sg-blue, #3B7DD8);
}
.sg-reason-icon-solid {
    background: var(--sg-orange, #E8A125);
}
.sg-reason-icon-solid svg,
.sg-reason-icon-solid svg * {
    stroke: #fff;
}
.sg-reason h3 {
    font-size: 1.08rem;
    color: var(--sg-ink);
    margin: 0 0 0.5rem;
}
.sg-reason p {
    color: var(--sg-muted);
    font-size: 0.96rem;
    line-height: 1.65;
    margin: 0;
}
.sg-reason p strong {
    color: var(--sg-ink);
}

/* ---------- Checklist ---------- */
.sg-checklist {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem 2rem;
}
.sg-check-item {
    display: flex;
    align-items: flex-start;
    gap: 0.7rem;
    font-size: 0.95rem;
    color: var(--sg-ink);
    line-height: 1.5;
}
.sg-check-mark {
    flex: none;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: var(--sg-orange, #E8A125);
    color: #fff;
    font-size: 0.72rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 0.1rem;
}

/* ---------- Tag pills ---------- */
.sg-tag-list {
    display: flex;
    flex-wrap: wrap;
    gap: 0.7rem;
}
.sg-tag {
    display: inline-block;
    padding: 0.55rem 1.1rem;
    border-radius: 999px;
    background: var(--sg-cream);
    border: 1px solid var(--sg-line);
    font-size: 0.88rem;
    color: var(--sg-ink);
}

/* ---------- Choose grid (shared with why-sellglo page) ---------- */
.sg-choose {
    display: grid;
    grid-template-columns: 1fr 1fr;
    border-top: 1px solid var(--sg-line);
}
.sg-choose-item {
    display: flex;
    gap: 1rem;
    padding: 1.6rem 1.4rem;
    border-bottom: 1px solid var(--sg-line);
}
.sg-choose-item:nth-child(odd) {
    border-right: 1px solid var(--sg-line);
}
.sg-choose-icon {
    flex: none;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: #fff;
    border: 1px solid var(--sg-line);
    display: flex;
    align-items: center;
    justify-content: center;
}
.sg-choose-icon svg {
    width: 20px;
    height: 20px;
    fill: none;
    stroke: var(--sg-orange, #E8A125);
    stroke-width: 1.7;
    stroke-linecap: round;
    stroke-linejoin: round;
}
.sg-choose-icon svg * {
    fill: none;
    stroke: var(--sg-orange, #E8A125);
}
.sg-choose-item h3 {
    font-size: 1rem;
    color: var(--sg-ink);
    margin: 0 0 0.35rem;
}
.sg-choose-item p {
    font-size: 0.9rem;
    color: var(--sg-muted);
    margin: 0;
    line-height: 1.5;
}

/* ---------- Accordion (full policy) ---------- */
.sg-accordion {
    border-top: 1px solid var(--sg-line);
}
.sg-acc-item {
    border-bottom: 1px solid var(--sg-line);
}
.sg-acc-item summary {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.2rem 0;
    cursor: pointer;
    font-weight: 600;
    color: var(--sg-ink);
    font-size: 0.98rem;
    list-style: none;
}
.sg-acc-item summary::-webkit-details-marker {
    display: none;
}
.sg-acc-num {
    font-family: var(--sg-font-head);
    font-size: 1rem;
    color: var(--sg-line);
    flex: none;
    width: 2rem;
}
.sg-acc-toggle {
    margin-left: auto;
    flex: none;
    width: 26px;
    height: 26px;
    border-radius: 50%;
    border: 1px solid var(--sg-line);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    font-weight: 400;
    color: var(--sg-muted);
    transition: transform 0.25s cubic-bezier(.2,.7,.3,1), background 0.25s ease, color 0.25s ease;
}
.sg-acc-item[open] .sg-acc-toggle {
    transform: rotate(45deg);
    background: var(--sg-orange, #E8A125);
    border-color: var(--sg-orange, #E8A125);
    color: #fff;
}
.sg-acc-item p {
    margin: 0 0 1.3rem 3rem;
    max-width: 68ch;
    color: var(--sg-muted);
    font-size: 0.92rem;
    line-height: 1.65;
}

/* ---------- Final CTA (shared with why-sellglo page) ---------- */
.sg-final-cta-section {
    padding-bottom: 6rem;
}
.sg-final-cta {
    background: var(--sg-ink);
    border-radius: 24px;
    padding: 3.5rem 2rem;
    text-align: center;
    /* max-width: 42rem; */
    margin: 0 auto;
}
.sg-final-cta h2 {
    color: #fff;
    font-size: 1.8rem;
    margin: 0 0 0.8rem;
}
.sg-final-cta p {
    color: #c7c9e8;
    margin: 0 0 0.6rem;
}
.sg-final-cta-tag {
    font-weight: 650;
    color: #fff !important;
}
.sg-final-cta-btn {
    display: inline-block;
    margin-top: 1.6rem;
    background: var(--sg-orange, #E8A125);
    color: #fff;
    font-weight: 650;
    font-size: 0.96rem;
    padding: 0.85rem 1.8rem;
    border-radius: 999px;
    text-decoration: none;
    transition: transform 0.3s cubic-bezier(.2,.7,.3,1), box-shadow 0.3s ease;
}
.sg-final-cta-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 14px 26px -12px rgba(232, 161, 37, 0.55);
}

/* ---------- Responsive ---------- */
@media (max-width: 900px) {
    .sg-reason {
        grid-template-columns: 2rem 2.6rem 1fr;
    }
    .sg-checklist {
        grid-template-columns: 1fr 1fr;
    }
    .sg-price-row strong {
        text-align: left;
    }
}

@media (max-width: 620px) {
    .sg-reason {
        grid-template-columns: 1fr;
    }
    .sg-reason-num {
        display: none;
    }
    .sg-checklist {
        grid-template-columns: 1fr;
    }
    .sg-choose {
        grid-template-columns: 1fr;
    }
    .sg-choose-item:nth-child(odd) {
        border-right: none;
    }
    .sg-price-row {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.3rem;
    }
    .sg-price-row strong {
        text-align: left;
    }
    .sg-acc-item p {
        margin-left: 0;
    }
}


/* ===================== end ================================= */




/* Enquiry modal */
.sg-modal .modal-content{
  border-radius: 22px;
  border: none;
  padding: 0.4rem;
}
.sg-modal .modal-header{
  border-bottom: none;
  padding: 1.6rem 1.6rem 0;
}
.sg-modal .modal-title{
  font-family: var(--sg-font-head);
  font-weight: 700;
  color: var(--sg-ink);
  font-size: 1.3rem;
}
.sg-modal .modal-body{ padding: 0.8rem 1.6rem 1.6rem; }
.sg-modal-sub{ color: var(--sg-muted); font-size: 0.92rem; margin-bottom: 1.4rem; }

.sg-form-row{ margin-bottom: 1rem; }
.sg-form-label{
  font-weight: 600;
  font-size: 0.85rem;
  color: var(--sg-ink);
  margin-bottom: 0.35rem;
  display: inline-block;
}
.sg-form-control{
  border-radius: 12px;
  border: 1px solid var(--sg-line);
  padding: 0.65rem 0.9rem;
  font-size: 0.95rem;
  width: 100%;
}
.sg-form-control:focus{
  border-color: var(--sg-blue);
  box-shadow: 0 0 0 3px rgba(43,47,228,0.12);
  outline: none;
}
.sg-form-success{
  display: none;
  background: rgba(23,166,115,0.1);
  color: var(--sg-green);
  border-radius: 12px;
  padding: 0.85rem 1rem;
  font-size: 0.88rem;
  font-weight: 600;
  margin-top: 1rem;
  text-align: center;
}
.sg-form-success.is-visible{ display: block; }
