:root {
  /* ===== Brand Colors ===== */
  --primary: #194479;
  --primary-soft: rgba(25, 68, 121, 0.12);

  --accent: #e26c0c;
  --accent-2: #ff974a;
  --accent-soft: rgba(226, 108, 12, 0.14);

  /* ===== Backgrounds ===== */
  --bg-dark: #0b1220;
  --bg-darker: #0a0f1a;
  --bg-light: #ffffff;
  --bg-surface: #f8fafc;

  /* ===== Text ===== */
  --text-strong: #0b1220;
  --text-main: #2b3345;
  --text-muted: #6b7280;

  /* ===== Layout ===== */
  --radius-xl: 28px;
  --radius-lg: 20px;
  --radius-md: 14px;

  /* ===== Motion ===== */
  --ease-premium: cubic-bezier(0.22, 1, 0.36, 1);
}


*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Inter", system-ui, sans-serif;
  background: var(--bg-light);
  color: var(--text-main);
  line-height: 1.8;
  -webkit-font-smoothing: antialiased;
}

.container {
  max-width: 1200px;
  margin-inline: auto;
  padding-inline: 24px;
}

.container.narrow {
  max-width: 860px;
}

.section {
  padding: 50px 0;
  position: relative;
}

.section.alt {
  background: var(--bg-surface);
}

.center {
  text-align: center;
}






.pro-ecom-hero{
  background: var(--bg-light);
  padding: clamp(90px,8vw,50px) 0;
  overflow: hidden;
}

.pro-ecom-inner{
  max-width: 1200px;
  margin: auto;
  padding: 0 20px;
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 90px;
  align-items: center;
}

/* LEFT SIDE – MORE LIFE */
.hero-chip{
  display:inline-block;
  padding:10px 22px;
  border-radius:999px;
  background:linear-gradient(135deg,var(--primary-soft),var(--accent-soft));
  color:var(--primary);
  font-weight:600;
  margin-bottom:26px;
  animation: chipFloat 6s infinite ease-in-out;
}

@keyframes chipFloat{
  0%,100%{ transform:translateY(0); }
  50%{ transform:translateY(-6px); }
}

.hero-title{
  font-size: clamp(36px,4.8vw,54px);
  line-height:1.15;
  color:var(--text-strong);
  position: relative;
}

.hero-title span{
  color: var(--primary);
}

.hero-subtitle{
  margin-top:18px;
  font-size: clamp(22px,2.6vw,28px);
  color: var(--accent);
  position: relative;
}

.pro-hero-content p{
  margin-top:22px;
  max-width:520px;
  color:var(--text-main);
}

.pro-hero-content .muted{
  color:var(--text-muted);
}

/* CTA – ECOM ICON SWAP */
.cta-ecom-travel{
  margin-top:40px;
  display:inline-flex;
  align-items:center;
  gap:18px;
  padding:18px 46px;
  border-radius:999px;
  background:linear-gradient(135deg,var(--primary),var(--accent));
  color:#fff;
  font-weight:600;
  text-decoration:none;
  position:relative;
  overflow:hidden;
  box-shadow:0 25px 70px rgba(25,68,121,.35);
  transition:
    transform .6s var(--ease-premium),
    box-shadow .6s var(--ease-premium),
    background .6s var(--ease-premium);
}

/* TEXT */
.cta-text{
  position:relative;
  z-index:2;
  transition:transform .6s var(--ease-premium);
  white-space:nowrap;
}

/* ICON BASE */
.cta-icon{
  display:flex;
  align-items:center;
  justify-content:center;
  width:26px;
  height:26px;
  font-size:18px;
  position:relative;
  z-index:2;
  transition:all .6s var(--ease-premium);
}

/* LEFT ICON (TRAVELER) */
.cta-icon.travel{
  position:absolute;
  left:18px;
}

/* RIGHT ICON (TARGET) */
.cta-icon.target{
  position:absolute;
  right:18px;
}

/* HOVER EFFECT */
.cta-ecom-travel:hover{
  transform:scale(1.08);
  background:linear-gradient(135deg,var(--accent),var(--primary));
  box-shadow:0 35px 95px rgba(226,108,12,.45);
}

/* ICON TRAVELS ACROSS TEXT */
.cta-ecom-travel:hover .cta-icon.travel{
  transform:translateX(calc(100% + 250px));
}

/* RIGHT ICON MOVES OUT */
.cta-ecom-travel:hover .cta-icon.target{
  transform:translateX(40px);
  opacity:0;
}

/* TEXT SLIDES LEFT SLIGHTLY */
.cta-ecom-travel:hover .cta-text{
  transform:translateX(-20px);
}


/* RIGHT SYSTEM – UNIQUE */
/* RIGHT SIDE FLOW SYSTEM */
.ecom-flow-system{
  position:relative;
  display:grid;
  grid-template-rows:repeat(5,1fr);
  align-items:center;
  justify-items:center;
  min-height:520px;
  max-width:360px;
  margin-left:auto;
}

/* CENTER LINE */
.flow-line{
  position:absolute;
  left:50%;
  top:0;
  transform:translateX(-50%);
  width:2px;
  height:100%;
  background:linear-gradient(
    to bottom,
    rgba(25,68,121,.15),
    var(--primary),
    var(--accent),
    rgba(226,108,12,.15)
  );
  overflow:hidden;
}

/* MOVING LIGHT */
.flow-line::after{
  content:"";
  position:absolute;
  left:0;
  top:-40%;
  width:100%;
  height:40%;
  background:linear-gradient(
    to bottom,
    transparent,
    var(--accent),
    transparent
  );
  animation: flowMove 3.8s linear infinite;
}

/* FLOW ITEMS */
.flow-item{
  position:relative;
  z-index:2;
  background:var(--bg-surface);
  padding:18px 22px;
  border-radius:22px;
  display:flex;
  flex-direction:column;
  align-items:center;
  gap:8px;
  box-shadow:0 28px 70px rgba(0,0,0,.14);
  transition:
    transform .6s var(--ease-premium),
    box-shadow .6s var(--ease-premium);
}

/* ICON */
.flow-item i{
  font-size:26px;
  color:var(--primary);
  transition:
    transform .6s var(--ease-premium),
    color .6s var(--ease-premium);
}

.flow-item span{
  font-size:13px;
  font-weight:600;
  color:var(--text-main);
}

/* CONNECT DOT */
.flow-item::before{
  content:"";
  position:absolute;
  top:-26px;
  left:50%;
  transform:translateX(-50%);
  width:10px;
  height:10px;
  border-radius:50%;
  background:var(--accent);
  animation:pulse 2.4s infinite;
}

/* REMOVE DOT ON FIRST */
.flow-item:first-child::before{
  display:none;
}

/* HOVER */
.flow-item:hover{
  transform:scale(1.08);
  box-shadow:0 38px 110px rgba(25,68,121,.32);
}

.flow-item:hover i{
  transform:scale(1.15);
  color:var(--accent);
}

/* ANIMATIONS */
@keyframes flowMove{
  0%{ transform:translateY(0); }
  100%{ transform:translateY(220%); }
}

@keyframes pulse{
  0%{
    box-shadow:0 0 0 0 rgba(226,108,12,.45);
    opacity:1;
  }
  70%{
    box-shadow:0 0 0 14px rgba(226,108,12,0);
    opacity:0;
  }
  100%{
    opacity:0;
  }
}

/* RESPONSIVE */
@media(max-width:1024px){
  .ecom-flow-system{
    min-height:480px;
  }
}

@media(max-width:900px){
  .ecom-flow-system{
    margin:60px auto 0;
    min-height:440px;
  }
}

@media(max-width:600px){
  .ecom-flow-system{
    min-height:400px;
  }

  .flow-item{
    padding:16px 18px;
  }
}


/* RESPONSIVE */
@media(max-width:900px){
  .pro-ecom-inner{
    grid-template-columns:1fr;
    text-align:center;
  }
  .pro-hero-system{
    height:420px;
  }
}
/* =====================================
   HERO SECTION – MOBILE & TAB FIX ONLY
===================================== */

@media (max-width: 1024px) {

  /* Stack hero layout */
  .pro-ecom-inner {
    grid-template-columns: 1fr;
    gap: 40px;                 /* reduce huge gap */
    padding-left: 16px;
    padding-right: 16px;
  }

  /* Center right system safely */
  .ecom-flow-system {
    margin-left: auto;
    margin-right: auto;
    max-width: 320px;
    overflow: hidden;          /* stops animation overflow */
  }
}

@media (max-width: 900px) {

  /* Further tighten spacing */
  .pro-ecom-inner {
    gap: 32px;
    text-align: center;
  }

  /* Reduce visual height */
  .ecom-flow-system {
    min-height: 420px;
  }
}

@media (max-width: 600px) {

  /* Mobile fine-tune */
  .pro-ecom-inner {
    gap: 26px;
  }

  .ecom-flow-system {
    max-width: 280px;
    min-height: 380px;
  }

  /* Prevent absolute elements causing scroll */
  .flow-line,
  .flow-line::after {
    left: 50%;
    transform: translateX(-50%);
  }
}





/* ==============================
   SECTION BASE
================================ */
.ecom-solutions{
  background: var(--bg-light);
  padding: clamp(50px,8vw,50px) 0;
}

.ecom-solutions-inner{
  max-width: 1200px;
  margin: auto;
  padding: 0 20px;
}

.section-title{
  font-size: clamp(28px,4vw,40px);
  text-align: center;
  color: var(--text-strong);
  margin-bottom: 70px;
}

/* ==============================
   LAYOUT
================================ */
.solutions-layout{
  display: grid;
  grid-template-columns: 80px 1.2fr .8fr;
  gap: 60px;
  align-items: start;
}

/* ==============================
   LEFT RAIL
================================ */
.solutions-rail{
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.rail-line{
  position: absolute;
  top: 0;
  width: 2px;
  height: 100%;
  background: linear-gradient(
    to bottom,
    transparent,
    var(--primary),
    var(--accent),
    transparent
  );
  opacity: .35;
}

.rail-dot{
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--primary);
  margin: 40px 0;
  opacity: .25;
  transition: all .5s var(--ease-premium);
}

/* ==============================
   CENTER CONTENT
================================ */
.solutions-content{
  display: flex;
  flex-direction: column;
  gap: 42px;
}

.solution-item{
  padding: 24px 28px;
  border-radius: 26px;
  transition:
    background .5s var(--ease-premium),
    transform .5s var(--ease-premium),
    box-shadow .5s var(--ease-premium);
}

.solution-item h3{
  font-size: 22px;
  color: var(--primary);
  margin-bottom: 12px;
}

.solution-item p{
  color: var(--text-main);
  max-width: 520px;
  line-height: 1.6;
}

/* HOVER CARD EFFECT */
.solution-item:hover{
  background: linear-gradient(
    135deg,
    var(--primary-soft),
    var(--accent-soft)
  );
  transform: translateY(-6px);
  box-shadow: 0 30px 90px rgba(25,68,121,.18);
}

/* ==============================
   RIGHT VISUAL
================================ */
.solutions-visual{
  display: flex;
  flex-direction: column;
  gap: 46px;
  align-items: center;
}

.visual-icon{
  width: 74px;
  height: 74px;
  border-radius: 22px;
  background: var(--bg-surface);
  display: grid;
  place-items: center;
  box-shadow: 0 25px 70px rgba(0,0,0,.14);
  opacity: .35;
  transform: scale(.95);
  transition: all .6s var(--ease-premium);
}

.visual-icon i{
  font-size: 28px;
  color: var(--primary);
  transition: color .6s var(--ease-premium);
}

/* ==============================
   HOVER SYNC (MAGIC PART)
   Uses :has() – modern browsers
================================ */

/* FIRST ITEM */
.solutions-layout:has(.solution-item:nth-child(1):hover) .rail-dot:nth-child(2),
.solutions-layout:has(.solution-item:nth-child(1):hover) .visual-icon:nth-child(1){
  opacity: 1;
  transform: scale(1.15);
  background: var(--accent);
  box-shadow: 0 0 0 12px var(--accent-soft);
}

.solutions-layout:has(.solution-item:nth-child(1):hover) .visual-icon:nth-child(1) i{
  color: var(--accent);
}

/* SECOND ITEM */
.solutions-layout:has(.solution-item:nth-child(2):hover) .rail-dot:nth-child(3),
.solutions-layout:has(.solution-item:nth-child(2):hover) .visual-icon:nth-child(2){
  opacity: 1;
  transform: scale(1.15);
  background: var(--accent);
  box-shadow: 0 0 0 12px var(--accent-soft);
}

.solutions-layout:has(.solution-item:nth-child(2):hover) .visual-icon:nth-child(2) i{
  color: var(--accent);
}

/* THIRD ITEM */
.solutions-layout:has(.solution-item:nth-child(3):hover) .rail-dot:nth-child(4),
.solutions-layout:has(.solution-item:nth-child(3):hover) .visual-icon:nth-child(3){
  opacity: 1;
  transform: scale(1.15);
  background: var(--accent);
  box-shadow: 0 0 0 12px var(--accent-soft);
}

.solutions-layout:has(.solution-item:nth-child(3):hover) .visual-icon:nth-child(3) i{
  color: var(--accent);
}

/* ==============================
   CTA (REUSED CLASS)
================================ */
.solutions-cta{
  margin-top: 20px;
  align-self: flex-start;
}

/* ==============================
   RESPONSIVE
================================ */
@media(max-width:900px){
  .solutions-layout{
    grid-template-columns: 1fr;
    text-align: center;
  }

  .solutions-rail{
    display: none;
  }

  .solutions-visual{
    flex-direction: row;
    justify-content: center;
    margin-top: 40px;
  }

  .solutions-cta{
    align-self: center;
  }
}


/* ==============================
   WHY CUSTOM ECOMMERCE
================================ */
.why-custom-ecom{
  background: var(--bg-light);
  padding: clamp(50px,8vw,50px) 0;
}

.why-custom-inner{
  max-width: 1200px;
  margin: auto;
  padding: 0 20px;
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 70px;
  align-items: center;
}

/* LEFT IMAGE */
.why-custom-media{
  position: relative;
}

.why-custom-media img{
  width: 100%;
  border-radius: var(--radius-xl);
  box-shadow: 0 40px 120px rgba(0,0,0,.18);
  object-fit: cover;
}

/* RIGHT CONTENT */
.why-custom-content h2{
  font-size: clamp(28px,4vw,40px);
  color: var(--text-strong);
  margin-bottom: 18px;
}

.why-custom-content .intro{
  font-size: 16px;
  color: var(--text-main);
  max-width: 520px;
  margin-bottom: 28px;
}

.why-custom-content h3{
  font-size: 20px;
  color: var(--primary);
  margin-bottom: 22px;
}

/* BENEFITS LIST */
.benefits-list{
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.benefits-list li{
  position: relative;
  padding-left: 34px;
  font-size: 15px;
  color: var(--text-main);
  line-height: 1.6;
  transition: transform .4s var(--ease-premium),
              color .4s var(--ease-premium);
}

/* CHECK ICON */
.benefits-list li::before{
  content: "✓";
  position: absolute;
  left: 0;
  top: 2px;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: linear-gradient(
    135deg,
    var(--primary),
    var(--accent)
  );
  color: #fff;
  font-size: 12px;
  display: grid;
  place-items: center;
  box-shadow: 0 6px 20px rgba(25,68,121,.35);
}

/* HOVER – SUBTLE */
.benefits-list li:hover{
  transform: translateX(6px);
  color: var(--text-strong);
}

/* RESPONSIVE */
@media(max-width:900px){
  .why-custom-inner{
    grid-template-columns: 1fr;
    text-align: center;
  }

  .why-custom-content .intro{
    margin-left: auto;
    margin-right: auto;
  }

  .benefits-list{
    align-items: flex-start;
    max-width: 520px;
    margin: auto;
  }
}

/* =====================================
   ECOM SOLUTIONS – MOBILE FIX
===================================== */

@media (max-width: 900px) {

  .solutions-layout {
    grid-template-columns: 1fr;
    gap: 32px;                 /* reduce gap */
    padding-left: 8px;
    padding-right: 8px;
  }

  /* Hide rail completely (already done, reinforced) */
  .solutions-rail {
    display: none;
  }

  /* Center content safely */
  .solutions-content {
    align-items: center;
  }

  .solution-item {
    width:100%;
    max-width: 520px;
    padding: 20px 20px;        /* reduce padding */
  }

  /* Prevent hover scale from causing overflow on mobile */
  .solution-item:hover {
    transform: none;
  }

  /* Visual icons row fix */
  .solutions-visual {
    flex-direction: row;
    justify-content: center;
    gap: 24px;
    max-width: 100%;
    overflow: hidden;
  }

  .visual-icon {
    width: 64px;
    height: 64px;
    transform: scale(1);       /* stop scale overflow */
  }
}

@media (max-width: 600px) {

  .solution-item {
    padding: 18px 16px;
  }

  .visual-icon {
    width: 58px;
    height: 58px;
  }
}
/* =====================================
   WHY CUSTOM ECOMMERCE – MOBILE FIX
===================================== */

@media (max-width: 900px) {

  .why-custom-inner {
    grid-template-columns: 1fr;
    gap: 36px;                 /* reduce gap */
    padding-left: 8px;
    padding-right: 8px;
  }

  /* Image overflow fix */
  .why-custom-media {
    overflow: hidden;
  }

  .why-custom-media img {
    box-shadow: 0 20px 60px rgba(0,0,0,.18); /* lighter shadow */
  }

  /* Content alignment */
  .why-custom-content {
    text-align: center;
  }

  .why-custom-content .intro {
    max-width: 100%;
  }

  /* Benefits list safety */
  .benefits-list {
    max-width: 100%;
    padding-left: 0;
  }

  .benefits-list li {
    padding-left: 30px;
  }

  /* Disable hover shift on mobile (prevents overflow) */
  .benefits-list li:hover {
    transform: none;
  }
}

@media (max-width: 600px) {

  .benefits-list li {
    font-size: 14px;
  }
}



/* ==============================
   AFFORDABLE SECTION
================================ */
.ecom-affordable{
  background: var(--bg-light);
  padding: clamp(50px,8vw,50px) 0;
}

.ecom-affordable-inner{
  max-width: 1200px;
  margin: auto;
  padding: 0 20px;
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 80px;
  align-items: center;
}

/* LEFT CONTENT */
.affordable-content h2{
  font-size: clamp(28px,4vw,40px);
  color: var(--text-strong);
  margin-bottom: 18px;
}

.affordable-content .intro{
  color: var(--text-main);
  max-width: 520px;
  margin-bottom: 26px;
}

.affordable-content h3{
  color: var(--primary);
  margin-bottom: 18px;
}

.affordable-points{
  list-style: none;
  padding: 0;
  margin: 0 0 34px 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.affordable-points li{
  padding-left: 30px;
  position: relative;
  color: var(--text-main);
}

.affordable-points li::before{
  content: "✔";
  position: absolute;
  left: 0;
  color: var(--accent);
}

/* CTA GROUP */
.affordable-actions{
  display: flex;
  flex-direction: row;   /* 👈 vertical */
  gap: 18px;
  align-items: flex-start;
}

.cta-ecom-travel.secondary{
  background: linear-gradient(135deg,var(--bg-surface),var(--bg-surface));
  color: var(--primary);
  box-shadow: 0 20px 50px rgba(0,0,0,.08);
}

/* ==============================
   TREE VISUAL
================================ */
.cost-tree{
  position: relative;
  height: 460px;
  max-width: 360px;
  margin-left: auto;
}

/* TRUNK */
.tree-trunk{
  position: absolute;
  left: 50%;
  top: 40px;
  transform: translateX(-50%);
  width: 4px;
  height: 340px;
  background: linear-gradient(
    to bottom,
    var(--primary),
    var(--accent)
  );
  border-radius: 10px;
  animation: trunkFlow 4s linear infinite;
}

/* NODES */
.tree-node{
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  background: var(--bg-surface);
  padding: 16px 18px;
  border-radius: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  box-shadow: 0 25px 70px rgba(0,0,0,.14);
  transition: transform .6s var(--ease-premium);
}

.tree-node i{
  font-size: 22px;
  color: var(--primary);
}

.tree-node small{
  font-size: 12px;
  font-weight: 600;
}

/* POSITIONS */
.root{ bottom: 0; }
.branch.left{ top: 45%; left: 20%; }
.branch.right{ top: 45%; left: 80%; }
.top{ top: 0; }

/* HOVER */
.tree-node:hover{
  transform: translateX(-50%) scale(1.1);
}

.tree-node:hover i{
  color: var(--accent);
}

/* ANIMATION */
@keyframes trunkFlow{
  0%{ opacity:.6; }
  50%{ opacity:1; }
  100%{ opacity:.6; }
}

/* RESPONSIVE */
@media(max-width:900px){
  .ecom-affordable-inner{
    grid-template-columns: 1fr;
    text-align: center;
  }

  .cost-tree{
    margin: 60px auto 0;
  }

  .affordable-actions{
    justify-content: center;
  }
}

/* =========================
   AFFORDABLE – MOBILE FIX
========================= */

@media (max-width: 600px){

  .ecom-affordable{
    padding: 35px 0;
  }

  .affordable-content h2{
    font-size: 24px;
    line-height: 1.3;
  }

  .affordable-content .intro{
    font-size: 14.5px;
    line-height: 1.6;
    max-width: 100%;
  }

  .affordable-points li{
    font-size: 14px;
    padding-left: 22px;
  }

  .affordable-actions{
    flex-direction: column;
    align-items: center;
    gap: 14px;
  }

  .cost-tree{
    height: 360px;
    max-width: 280px;
  }

  .tree-trunk{
    height: 260px;
  }

  .tree-node{
    padding: 12px 14px;
  }

  .tree-node i{
    font-size: 18px;
  }

  .tree-node small{
    font-size: 11px;
  }

  .branch.left{ left: 18%; }
  .branch.right{ left: 82%; }
}

/* =========================
   AFFORDABLE – MOBILE FIX
========================= */

@media (max-width: 600px){

  /* reduce section padding */
  .ecom-affordable{
    padding: 28px 0 !important;
  }

  /* collapse grid gap */
  .ecom-affordable-inner{
    gap: 24px !important;
    text-align: left; /* restore left content visibility */
  }

  /* LEFT CONTENT FIX */
  .affordable-content{
    text-align: left;
  }

  .affordable-content h2{
    font-size: 22px;
    line-height: 1.35;
    margin-bottom: 14px;
  }

  .affordable-content .intro{
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 20px;
  }

  /* bullet list alignment */
  .affordable-points{
    gap: 10px;
  }

  .affordable-points li{
    font-size: 14px;
    padding-left: 20px;
  }

  /* CTA buttons */
  .affordable-actions{
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }

  /* TREE VISUAL FIX */
  .cost-tree{
    margin: 0 auto !important;
    height: 1px;         /* key fix */
    max-width: 240px;
  }

  .tree-trunk{
    height: 200px;
    top: 30px;
  }

  .tree-node{
    padding: 10px 12px;
    border-radius: 16px;
  }

  .tree-node i{
    font-size: 16px;
  }

  .tree-node small{
    font-size: 10px;
  }

  /* node positions tightened */
  .branch.left{
    left: 22%;
    top: 44%;
  }

  .branch.right{
    left: 78%;
    top: 44%;
  }

  .top{
    top: 0;
  }

  .root{
    bottom: 0;
  }
}




/* ==============================
   ECOM PROCESS SECTION
================================ */
.ecom-process{
  background: var(--bg-light);
  padding: clamp(50px,8vw,50px) 0;
}

.ecom-process-inner{
  max-width: 1200px;
  margin: auto;
  padding: 0 20px;
}

.section-intro{
  max-width: 680px;
  margin: -30px auto 80px;
  text-align: center;
  color: var(--text-main);
}

/* PROCESS TRACK */
.process-track{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  position: relative;
}

/* STEP */
.process-step{
  position: relative;
  padding: 36px 32px 38px;
  border-radius: 30px;
  background: var(--bg-surface);
  box-shadow: 0 30px 90px rgba(0,0,0,.12);
  transition:
    transform .6s var(--ease-premium),
    box-shadow .6s var(--ease-premium);
}

/* STEP NUMBER */
.step-index{
  position: absolute;
  top: -18px;
  left: 32px;
  padding: 10px 16px;
  border-radius: 999px;
  background: linear-gradient(
    135deg,
    var(--primary),
    var(--accent)
  );
  color: #fff;
  font-weight: 600;
  font-size: 14px;
  box-shadow: 0 10px 30px rgba(25,68,121,.35);
}

/* CONTENT */
.step-content h3{
  font-size: 20px;
  color: var(--primary);
  margin-bottom: 14px;
}

.step-content p{
  color: var(--text-main);
  line-height: 1.65;
}

/* HOVER */
.process-step:hover{
  transform: translateY(-10px);
  box-shadow: 0 45px 130px rgba(25,68,121,.25);
}

/* FLOW CONNECTOR (SUBTLE) */
.process-step::after{
  content: "";
  position: absolute;
  right: -40px;
  top: 50%;
  width: 40px;
  height: 2px;
  background: linear-gradient(
    to right,
    transparent,
    var(--primary),
    transparent
  );
  opacity: .4;
}

/* REMOVE LAST IN ROW */
.process-step:nth-child(3n)::after{
  display: none;
}

/* RESPONSIVE */
@media(max-width:1100px){
  .process-track{
    grid-template-columns: repeat(2, 1fr);
  }

  .process-step:nth-child(3n)::after{
    display: block;
  }

  .process-step:nth-child(2n)::after{
    display: none;
  }
}

@media(max-width:700px){
  .process-track{
    grid-template-columns: 1fr;
  }

  .process-step::after{
    display: none;
  }

  .process-step{
    padding: 32px 26px;
  }
}




/* ==============================
   WHY SAASTARGO – TRUE ORBIT
================================ */
.why-saastargo{
  background: var(--bg-light);
  padding: clamp(50px,9vw,50px) 0;
}

.why-saastargo-inner{
  max-width: 1200px;
  margin: auto;
  padding: 0 20px;
  text-align: center;
}

/* ORBIT WRAPPER */
.orbit-wrapper{
  position: relative;
  width: 560px;
  height: 560px;
  margin: 90px auto 0;
}

/* CENTER CORE */
.orbit-core{
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 200px;
  height: 200px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  color: #fff;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  box-shadow: 0 50px 160px rgba(25,68,121,.45);
  z-index: 2;
}

.orbit-core span{
  font-size: 22px;
  font-weight: 700;
}

.orbit-core small{
  font-size: 13px;
  opacity: .9;
}

/* ORBIT RING */
.orbit-ring{
  position: absolute;
  inset: 0;
}

/* ORBIT ITEMS – BASE */
.orbit-item{
  position: absolute;
  top: 50%;
  left: 50%;
  width: 240px;
  padding: 18px 20px;
  border-radius: 22px;
  background: var(--bg-surface);
  box-shadow: 0 25px 70px rgba(0,0,0,.14);
  display: flex;
  align-items: flex-start;
  gap: 12px;
  text-align: left;
  transform-origin: center left;
  transition:
    transform .6s var(--ease-premium),
    box-shadow .6s var(--ease-premium);
}

/* ICON */
.orbit-item i{
  font-size: 22px;
  color: var(--primary);
  margin-top: 2px;
  transition: color .6s var(--ease-premium);
}

.orbit-item p{
  font-size: 14px;
  line-height: 1.55;
  color: var(--text-main);
}

/* ===== TRUE CIRCULAR POSITIONS ===== */
/* radius = 180px */

.o1{ transform: rotate(0deg) translateX(180px) rotate(-270deg); }
.o2{ transform: rotate(72deg) translateX(180px) rotate(-270deg); }
.o3{ transform: rotate(144deg)  translateX(180px) rotate(-270deg); }
.o4{ transform: rotate(216deg)  translateX(180px) rotate(-270deg); }
.o5{ transform: rotate(288deg) translateX(180px) rotate(-270deg); }

/* FLOAT MOTION (VERY SUBTLE) */
.orbit-ring{
  animation: slowSpin 40s linear infinite;
}

@keyframes slowSpin{
  from{ transform: rotate(0deg); }
  to{ transform: rotate(360deg); }
}

/* HOVER – PREMIUM */
.orbit-item:hover{
  transform: scale(1.08) translateZ(0);
  box-shadow: 0 45px 140px rgba(25,68,121,.35);
}

.orbit-item:hover i{
  color: var(--accent);
}

/* STOP ROTATION ON HOVER (UX) */
.orbit-wrapper:hover .orbit-ring{
  animation-play-state: paused;
}

/* ==============================
   RESPONSIVE – MOBILE STACK
================================ */
@media(max-width:900px){
  .orbit-wrapper{
    width: 100%;
    height: auto;
    display:none;
  }

  .orbit-ring{
    position: relative;
    animation: none;
    display: flex;
    flex-direction: column;
    gap: 26px;
    margin-top: 30px;
  }

  .orbit-core{
    position: relative;
    transform: none;
    
  }

  .orbit-item{
    position: relative;
    transform: none !important;
    width: 100%;
    max-width: 320px;
    
  }
}

@media (max-width: 600px){

  .why-saastargo{
    padding: 35px 0;
  }

  .orbit-core{
    width: 150px;
    height: 150px;
  }

  .orbit-core span{
    font-size: 18px;
  }

  .orbit-core small{
    font-size: 11px;
  }

  .orbit-item{
    padding: 14px 16px;
    gap: 10px;
  }

  .orbit-item i{
    font-size: 18px;
  }

  .orbit-item p{
    font-size: 13px;
    line-height: 1.5;
  }
}





/* ===============================
   FINAL UI/UX CTA – IMAGE LAYOUT
================================ */

.uiux-final{
  padding: clamp(50px,9vw,50px) 0;
  background:rgb(255, 255, 255);
}

/* Grid */
.uiux-final-grid{
  display:grid;
  grid-template-columns:.85fr 1.15fr;
  gap:110px;
  align-items:flex-start;
}

/* LEFT IMAGE */
.uiux-final-visual{
  position:sticky;
  top:120px;
}

.uiux-final-visual img{
  width:100%;
  max-width:420px;
  border-radius:var(--radius-xxl);
  
  display:block;
}

/* RIGHT CONTENT */
.uiux-final-content{
  display:flex;
  flex-direction:column;
  gap:120px;
}

/* PART 1 */
.uiux-final-pricing h2{
  font-size:2.6rem;
  line-height:1.15;
  color:var(--text-strong);
  margin-bottom:18px;
}

.final-blue{
  color:var(--primary);
}

.final-orange{
  color:var(--accent);
}

.final-lead{
  font-size:1.05rem;
  line-height:1.75;
  color:var(--text-main);
  max-width:620px;
  margin-bottom:28px;
}

/* PART 2 */
.uiux-final-convert h2{
  font-size:2.4rem;
  line-height:1.15;
  color:var(--text-strong);
  margin-bottom:14px;
}

.final-meta{
  font-size:.9rem;
  color:var(--text-muted);
  margin-bottom:12px;
}

.final-desc{
  font-size:1rem;
  line-height:1.75;
  color:var(--text-main);
  max-width:680px;
  margin-bottom:32px;
}

/* ACTIONS */
.uiux-final-actions{
  display:flex;
  gap:24px;
  align-items:center;
  flex-wrap:wrap;
}

/* Secondary CTA */
.btn-secondary{
  font-size:.95rem;
  color:var(--primary);
  text-decoration:none;
  position:relative;
  padding-bottom:4px;
}

.btn-secondary::after{
  content:"";
  position:absolute;
  left:0;
  bottom:0;
  width:0;
  height:2px;
  background:linear-gradient(
    to right,
    var(--primary),
    var(--accent)
  );
  transition:width .4s cubic-bezier(.22,1,.36,1);
}

.btn-secondary:hover::after{
  width:100%;
}

/* ===============================
   RESPONSIVE
================================ */

@media(max-width:900px){
  .uiux-final-grid{
    grid-template-columns:1fr;
    gap:80px;
  }

  .uiux-final-visual{
    position:relative;
    top:auto;
  }

  .uiux-final-visual img{
    max-width:100%;
  }

  .uiux-final-content{
    gap:80px;
  }
}



/* ===============================
   PREMIUM FAQ SECTION
================================ */

.uiux-faq{
  padding:50px 0;
  background:var(--bg-dark);
  
}

.uiux-faq-header{
  max-width:760px;
  margin-bottom:80px;
}

.uiux-faq-header h2{
  font-size:2.5rem;
  color:var(--text-strong);
  margin-bottom:12px;
}

.uiux-faq-header p{
  color:var(--text-muted);
  line-height:1.7;
}

/* FAQ LIST */
.uiux-faq-list{
  max-width:900px;
}

/* ITEM */
.faq-item{
  border-radius:var(--radius-xl);
  background:var(--bg-light);
  box-shadow:var(--shadow-soft);
  margin-bottom:18px;
  overflow:hidden;
}

/* QUESTION */
.faq-question{
  width:100%;
  display:flex;
  justify-content:space-between;
  align-items:center;
  padding:26px 30px;
  background:none;
  border:none;
  cursor:pointer;
  font-size:1.05rem;
  font-weight:500;
  color:var(--text-strong);
  text-align:left;
  transition:var(--transition-med);
}

/* ICON */
.faq-icon{
  width:22px;
  height:22px;
  position:relative;
}
.faq-icon::before,
.faq-icon::after{
  content:"";
  position:absolute;
  background:var(--accent);
  transition:var(--transition-med);
}
.faq-icon::before{
  width:2px;
  height:100%;
  left:50%;
  top:0;
  transform:translateX(-50%);
}
.faq-icon::after{
  width:100%;
  height:2px;
  top:50%;
  left:0;
  transform:translateY(-50%);
}

/* ANSWER */
.faq-answer{
  max-height:0;
  overflow:hidden;
  padding:0 30px;
  color:var(--text-muted);
  line-height:1.7;
  transition:max-height .5s ease, padding .4s ease;
}

/* ACTIVE */
.faq-item.active .faq-answer{
  max-height:260px;
  padding:0 30px 24px;
}

.faq-item.active .faq-icon::before{
  transform:translateX(-50%) rotate(90deg);
  opacity:0;
}

.faq-item.active .faq-question{
  color:var(--primary);
}






/* =====================================



/* =====================================
   GLOBAL MOBILE WIDTH SAFETY (TEXT SAFE)
===================================== */
@media (max-width: 900px) {

  /* Only control width — NOT overflow */
  section,
  .section,
  .container {
    max-width: 100%;
  }

  /* Prevent accidental horizontal scroll */
  body {
    overflow-x: hidden;
  }
}
@media (max-width: 900px) {
  .ecom-flow-system {
    overflow: hidden;
  }
}
@media (max-width: 900px) {
  .solutions-visual {
    overflow: hidden;
  }
}
@media (max-width: 900px) {
  .cost-tree {
    overflow: hidden;
  }
}
@media (max-width: 900px) {
  .orbit-wrapper {
    display: none;
    overflow: hidden;
  }
}
@media (max-width: 900px) {
  p, h1, h2, h3, h4, li, span {
    word-wrap: break-word;
    overflow-wrap: break-word;
  }
}
