/* ==========================================================================
   TPROSYS IT — E-Commerce Development (Custom Page Design)
   All styles scoped under .eco-page to avoid conflicts with site styles.
   ========================================================================== */

.eco-page {
  --eco-ink: #0a1220;
  --eco-navy: #0b1d3a;
  --eco-navy-2: #12294e;
  --eco-teal: #15a5d3;
  --eco-blue: #0d86b8;
  --eco-amber: #fbbf24;
  --eco-grad: linear-gradient(120deg, #15a5d3, #0d86b8);
  --eco-grad-soft: linear-gradient(135deg, rgba(21,165,211,.16), rgba(13,134,184,.12));
  --eco-muted: #64748b;
  --eco-line: #e6edf5;
  --eco-bg: #f6f9fc;
  --eco-radius: 18px;
  font-family: 'Poppins', 'DM Sans', system-ui, sans-serif;
  color: var(--eco-ink);
  overflow-x: hidden;
}

.eco-page .container { max-width: 1200px; }

.eco-page h1,.eco-page h2,.eco-page h3,.eco-page h4 {
  font-family: 'Raleway','Poppins',sans-serif;
  font-weight: 800;
  line-height: 1.2;
}

.eco-page a { text-decoration: none; }

/* --------------------------------------------------------------------------
   Shared section scaffolding
   -------------------------------------------------------------------------- */
.eco-section { position: relative; padding: 45px 0; }
.eco-section-head { max-width: 720px; margin: 0 auto 54px; text-align: center; }
.eco-kicker {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 7px 16px; border-radius: 999px;
  background: var(--eco-grad-soft);
  border: 1px solid rgba(21,165,211,.35);
  color: #15a5d3; font-size: 12px; font-weight: 700;
  letter-spacing: 1.6px; text-transform: uppercase;
  margin-bottom: 18px;
}
.eco-kicker i { color: var(--eco-teal); }
.eco-title { font-size: clamp(28px, 3.6vw, 42px); color: var(--eco-ink); margin-bottom: 14px; }
.eco-title .grad { background: var(--eco-grad); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; }
.eco-sub { font-size: 16px; line-height: 1.8; color: var(--eco-muted); }

/* --------------------------------------------------------------------------
   Buttons
   -------------------------------------------------------------------------- */
.eco-btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  padding: 15px 30px; border-radius: 999px;
  font-size: 15px; font-weight: 700; line-height: 1;
  border: 2px solid transparent; cursor: pointer;
  transition: transform .25s ease, box-shadow .25s ease, background .25s ease, color .25s ease;
  white-space: nowrap;
}
.eco-btn-primary {
  background: var(--eco-grad); color: #ecf8ff;
  box-shadow: 0 12px 30px -10px rgba(21,165,211,.55);
}
.eco-btn-primary:hover { transform: translateY(-3px); box-shadow: 0 18px 38px -10px rgba(21,165,211,.7); color: #06263a; }
.eco-btn-ghost {
  background: #fff; color: #0d86b8;
  border-color: #c9d6e5;
  box-shadow: 0 10px 24px -14px rgba(11,29,58,.25);
}
.eco-btn-ghost:hover { background: rgba(21,165,211,.08); border-color: var(--eco-teal); color: #0d86b8; transform: translateY(-3px); }
.eco-btn-outline {
  background: transparent; color: var(--eco-ink);
  border-color: #c9d6e5;
}
.eco-btn-outline:hover { border-color: var(--eco-teal); color: #0d86b8; transform: translateY(-3px); }
.eco-btn .fa-arrow-right { transition: transform .25s ease; }
.eco-btn:hover .fa-arrow-right { transform: translateX(4px); }

/* ==========================================================================
   HERO
   ========================================================================== */
.eco-hero {
  position: relative; overflow: hidden;
  padding: 70px 0 20px;
  background:
    radial-gradient(900px 500px at 85% -10%, rgba(21,165,211,.14), transparent 60%),
    radial-gradient(700px 480px at -10% 110%, rgba(13,134,184,.1), transparent 60%),
    linear-gradient(160deg, #f4f9fd 0%, #eef6fb 55%, #e7f2f9 100%);
  color: var(--eco-ink);
}
.eco-hero::before {
  content: ''; position: absolute; inset: 0; z-index: 0;
  background-image:
    linear-gradient(rgba(21,165,211,.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(21,165,211,.05) 1px, transparent 1px);
  background-size: 56px 56px;
  -webkit-mask-image: radial-gradient(ellipse at 50% 20%, #000 30%, transparent 78%);
          mask-image: radial-gradient(ellipse at 50% 20%, #000 30%, transparent 78%);
}
.eco-hero .container { position: relative; z-index: 1; }
.eco-hero-inner { display: grid; grid-template-columns: 1.05fr .95fr; gap: 60px; align-items: center; }

.eco-hero-badge {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 8px 18px; border-radius: 999px;
  background: rgba(21,165,211,.08);
  border: 1px solid rgba(21,165,211,.3);
  font-size: 13px; font-weight: 600; color: #0d86b8;
  margin-bottom: 22px;
}
.eco-hero-badge .dot { width: 9px; height: 9px; border-radius: 50%; background: var(--eco-teal); box-shadow: 0 0 12px var(--eco-teal); animation: ecoPulse 1.6s ease-in-out infinite; }
@keyframes ecoPulse { 0%,100% { opacity: 1; transform: scale(1);} 50% { opacity: .5; transform: scale(.8);} }

.eco-hero-title {
  font-size: clamp(34px, 4.6vw, 58px);
  line-height: 1.12; letter-spacing: -1px;
  margin: 0 0 22px;
}
.eco-hero-title .grad { background: linear-gradient(100deg, #0d86b8, #15a5d3 55%, #69b9dd); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; }
.eco-hero-sub { font-size: 17px; line-height: 1.85; color: #5b6b85; max-width: 560px; margin-bottom: 32px; }

.eco-hero-cta { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 38px; }

.eco-hero-meta { display: flex; flex-wrap: wrap; align-items: center; gap: 26px; }
.eco-avatar-stack { display: flex; }
.eco-avatar {
  width: 42px; height: 42px; border-radius: 50%;
  border: 3px solid #fff; margin-left: -12px;
  background: var(--eco-grad); color: #06263a;
  display: flex; align-items: center; justify-content: center;
  font-size: 14px; font-weight: 800;
  box-shadow: 0 6px 14px -6px rgba(11,29,58,.35);
}
.eco-avatar:first-child { margin-left: 0; }
.eco-hero-rating { font-size: 14px; color: #5b6b85; }
.eco-hero-rating strong { color: var(--eco-amber); font-size: 16px; }
.eco-hero-rating small { display: block; color: #8a98ad; font-size: 12.5px; }

/* Hero mock storefront UI */
.eco-mock { position: relative; }
.eco-mock-window {
  position: relative; z-index: 2;
  background: #0c1c36;
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 24px;
  padding: 16px;
  box-shadow: 0 40px 80px -20px rgba(0,0,0,.6), 0 0 0 1px rgba(21,165,211,.06);
}
.eco-mock-bar { display: flex; gap: 6px; padding: 4px 6px 14px; }
.eco-mock-bar i { width: 11px; height: 11px; border-radius: 50%; display: block; }
.eco-mock-bar i:nth-child(1) { background: #ff5f57; }
.eco-mock-bar i:nth-child(2) { background: #febc2e; }
.eco-mock-bar i:nth-child(3) { background: #28c840; }
.eco-mock-nav { display: flex; align-items: center; justify-content: space-between; padding: 6px 8px 16px; }
.eco-mock-logo { display: flex; align-items: center; gap: 8px; font-size: 14px; font-weight: 800; color: #fff; }
.eco-mock-logo i { color: var(--eco-teal); }
.eco-mock-search {
  display: flex; align-items: center; gap: 8px; flex: 1; max-width: 210px;
  background: rgba(255,255,255,.07); border: 1px solid rgba(255,255,255,.1);
  border-radius: 999px; padding: 8px 14px; font-size: 12px; color: rgba(255,255,255,.5);
}
.eco-mock-cartlink { position: relative; font-size: 18px; color: rgba(255,255,255,.85); }
.eco-mock-cartlink .count {
  position: absolute; top: -6px; right: -8px;
  min-width: 17px; height: 17px; padding: 0 4px;
  background: var(--eco-grad); color: #06263a;
  border-radius: 999px; font-size: 10px; font-weight: 800;
  display: flex; align-items: center; justify-content: center;
}
.eco-mock-prods { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-bottom: 14px; }
.eco-product {
  position: relative; overflow: hidden;
  border-radius: 16px; padding: 18px 16px 16px;
  border: 1px solid rgba(255,255,255,.09);
  background: linear-gradient(150deg, rgba(255,255,255,.08), rgba(255,255,255,.02));
}
.eco-product-tile {
  height: 88px; border-radius: 12px; margin-bottom: 14px;
  display: flex; align-items: center; justify-content: center;
  font-size: 40px; color: #fff;
}
.eco-product-tile.t1 { background: linear-gradient(135deg,#7c3aed,#4f46e5); }
.eco-product-tile.t2 { background: linear-gradient(135deg,#0ea5e9,#2563eb); }
.eco-product-tile.t3 { background: linear-gradient(135deg,#f59e0b,#ef4444); }
.eco-product-tile.t4 { background: linear-gradient(135deg,#10b981,#0d9488); }
.eco-product-name { font-size: 13px; font-weight: 600; color: #fff; margin-bottom: 6px; }
.eco-product-meta { display: flex; align-items: center; justify-content: space-between; }
.eco-product-price { font-size: 15px; font-weight: 800; color: var(--eco-teal); }
.eco-product-add {
  width: 26px; height: 26px; border-radius: 8px;
  background: var(--eco-grad); color: #06263a;
  display: flex; align-items: center; justify-content: center;
  font-size: 12px; font-weight: 800;
}
.eco-mock-cart {
  background: rgba(21,165,211,.07);
  border: 1px solid rgba(21,165,211,.22);
  border-radius: 16px; padding: 14px;
}
.eco-mock-cart-row { display: flex; align-items: center; justify-content: space-between; font-size: 13px; color: rgba(255,255,255,.85); margin-bottom: 10px; }
.eco-mock-cart-row b { color: #fff; }
.eco-mock-checkout {
  width: 100%; margin-top: 6px; padding: 13px;
  border: 0; border-radius: 12px;
  background: var(--eco-grad); color: #06263a;
  font-size: 14px; font-weight: 800; cursor: pointer;
  display: flex; align-items: center; justify-content: center; gap: 8px;
  transition: transform .2s ease, box-shadow .2s ease;
}
.eco-mock-checkout:hover { transform: translateY(-2px); box-shadow: 0 14px 30px -10px rgba(21,165,211,.6); }

/* Floating chips around mock */
.eco-chip {
  position: absolute; z-index: 3;
  display: flex; align-items: center; gap: 10px;
  background: rgba(13,27,51,.92);
  border: 1px solid rgba(21,165,211,.35);
  border-radius: 14px; padding: 11px 16px;
  font-size: 12.5px; font-weight: 700; color: #fff;
  box-shadow: 0 16px 34px -12px rgba(0,0,0,.55);
  backdrop-filter: blur(8px);
  animation: ecoFloat 5s ease-in-out infinite;
}
.eco-chip i { color: var(--eco-teal); font-size: 16px; }
.eco-chip small { display: block; font-size: 10px; font-weight: 500; color: rgba(255,255,255,.55); }
.eco-chip.c1 { top: -24px; left: -18px; animation-delay: 0s; }
.eco-chip.c2 { top: 40%; right: -26px; animation-delay: -1.6s; }
.eco-chip.c3 { bottom: -22px; left: 12%; animation-delay: -3.2s; }
@keyframes ecoFloat { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-10px); } }

/* ==========================================================================
   MARQUEE
   ========================================================================== */
.eco-marquee { background: #fff; padding: 26px 15px; border-bottom: 1px solid var(--eco-line); overflow: hidden; }
.eco-marquee-label {
  text-align: center; font-size: 12px; font-weight: 700; letter-spacing: 2px;
  text-transform: uppercase; color: #9aa8bb; margin-bottom: 16px;
}
.eco-marquee-track { display: flex; gap: 0; width: max-content; animation: ecoMarquee 26s linear infinite; }
.eco-marquee:hover .eco-marquee-track { animation-play-state: paused; }
.eco-marquee-item {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 12px 34px; margin-right: 8px;
  font-size: 16px; font-weight: 700; color: #52617a;
  white-space: nowrap;
}
.eco-marquee-item i { font-size: 22px; color: #7c8aa0; }
@keyframes ecoMarquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ==========================================================================
   STATS BAND
   ========================================================================== */
.eco-stats {
  position: relative; overflow: hidden;
  background:
    radial-gradient(600px 300px at 15% 50%, rgba(21,165,211,.14), transparent 60%),
    radial-gradient(600px 300px at 85% 50%, rgba(13,134,184,.14), transparent 60%),
    #0a1a33;
  padding: 46px 0;
}
.eco-stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.eco-stat { text-align: center; padding: 12px 10px; }
.eco-stat-num {
  font-family: 'Raleway', sans-serif; font-weight: 900;
  font-size: clamp(32px, 4vw, 46px); line-height: 1;
  background: var(--eco-grad);
  -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent;
  margin-bottom: 10px;
}
.eco-stat-lbl { font-size: 14px; font-weight: 600; color: rgba(255,255,255,.7); }

/* ==========================================================================
   SERVICES (bento)
   ========================================================================== */
.eco-services { background: var(--eco-bg); }
.eco-bento { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.eco-svc {
  position: relative; overflow: hidden;
  background: #fff; border: 1px solid var(--eco-line);
  border-radius: var(--eco-radius); padding: 30px 26px;
  transition: transform .3s ease, box-shadow .3s ease, border-color .3s ease;
}
.eco-svc::after {
  content: ''; position: absolute; inset: 0;
  background: var(--eco-grad);
  opacity: 0; transition: opacity .3s ease;
  z-index: 0; pointer-events: none;
}
.eco-svc > * { position: relative; z-index: 1; }
.eco-svc:hover { transform: translateY(-8px); box-shadow: 0 28px 50px -22px rgba(11,29,58,.28); border-color: transparent; }
.eco-svc:hover::after { opacity: .04; }
.eco-svc-icon {
  width: 60px; height: 60px; border-radius: 16px;
  background: var(--eco-grad-soft);
  border: 1px solid rgba(21,165,211,.3);
  color: #15a5d3; font-size: 24px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 22px;
  transition: transform .3s ease;
}
.eco-svc:hover .eco-svc-icon { transform: rotate(-6deg) scale(1.08); }
.eco-svc h3 { font-size: 20px; margin-bottom: 12px; }
.eco-svc p { font-size: 14.5px; line-height: 1.75; color: var(--eco-muted); margin-bottom: 18px; }
.eco-svc-link { display: inline-flex; align-items: center; gap: 8px; font-size: 14px; font-weight: 700; color: #0d86b8; }
.eco-svc-link i { transition: transform .25s ease; }
.eco-svc:hover .eco-svc-link i { transform: translateX(4px); }

/* ==========================================================================
   PLATFORMS
   ========================================================================== */
.eco-platforms { background: #fff; }
.eco-plat-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 18px; }
.eco-plat {
  background: var(--eco-bg); border: 1px solid var(--eco-line);
  border-radius: var(--eco-radius); padding: 26px 22px;
  text-align: center;
  transition: transform .3s ease, box-shadow .3s ease, border-color .3s ease;
}
.eco-plat:hover { transform: translateY(-8px); box-shadow: 0 24px 44px -20px rgba(11,29,58,.25); border-color: rgba(21,165,211,.5); }
.eco-plat-icon {
  width: 66px; height: 66px; border-radius: 18px; margin: 0 auto 18px;
  display: flex; align-items: center; justify-content: center;
  font-size: 30px; color: #fff;
  box-shadow: 0 12px 26px -10px rgba(0,0,0,.35);
}
.eco-plat-icon.i-shopify { background: linear-gradient(135deg,#96bf48,#5e8e3e); }
.eco-plat-icon.i-woo { background: linear-gradient(135deg,#7f54b3,#96588a); }
.eco-plat-icon.i-magento { background: linear-gradient(135deg,#f26322,#e85c1a); }
.eco-plat-icon.i-custom { background: var(--eco-grad); }
.eco-plat-icon.i-headless { background: linear-gradient(135deg,#14b8a6,#0e7490); }
.eco-plat h3 { font-size: 17px; margin-bottom: 10px; }
.eco-plat p { font-size: 13px; line-height: 1.7; color: var(--eco-muted); margin-bottom: 16px; }
.eco-plat-best {
  display: inline-block; padding: 5px 12px; border-radius: 999px;
  background: rgba(21,165,211,.12); color: #15a5d3;
  font-size: 11px; font-weight: 700; letter-spacing: .4px;
}

/* ==========================================================================
   PROCESS
   ========================================================================== */
.eco-process {
  background:
    radial-gradient(700px 400px at 90% 0%, rgba(13,134,184,.12), transparent 60%),
    radial-gradient(700px 400px at 5% 100%, rgba(21,165,211,.1), transparent 60%),
    #081126;
  color: #fff;
}
.eco-process .eco-kicker { background: rgba(255,255,255,.06); border-color: rgba(255,255,255,.16); color: #15a5d3; }
.eco-process .eco-title { color: #fff; }
.eco-process .eco-sub { color: rgba(255,255,255,.65); }
.eco-steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; counter-reset: ecoStep; }
.eco-step { position: relative; padding: 30px 24px; border-radius: var(--eco-radius); background: rgba(255,255,255,.045); border: 1px solid rgba(255,255,255,.1); transition: transform .3s ease, border-color .3s ease, background .3s ease; }
.eco-step:hover { transform: translateY(-6px); border-color: rgba(21,165,211,.5); background: rgba(255,255,255,.07); }
.eco-step-num {
  width: 46px; height: 46px; border-radius: 14px;
  background: var(--eco-grad); color: #06263a;
  font-weight: 900; font-size: 18px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 20px;
  box-shadow: 0 12px 26px -10px rgba(21,165,211,.6);
}
.eco-step h3 { font-size: 18px; margin-bottom: 10px; }
.eco-step p { font-size: 13.5px; line-height: 1.75; color: rgba(255,255,255,.65); margin: 0; }
.eco-step-tag { display: inline-block; margin-top: 14px; font-size: 11px; font-weight: 700; letter-spacing: 1px; text-transform: uppercase; color: #8fe2fa; }

/* ==========================================================================
   WHY US
   ========================================================================== */
.eco-why { background: var(--eco-bg); }
.eco-why-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.eco-why-list { list-style: none; margin: 28px 0 0; padding: 0; display: grid; grid-template-columns: 1fr 1fr; gap: 16px 26px; }
.eco-why-list li { display: flex; align-items: center; gap: 12px; font-size: 15px; font-weight: 600; color: #1f3047; }
.eco-why-list li i { width: 34px; height: 34px; min-width: 34px; border-radius: 10px; background: var(--eco-grad-soft); border: 1px solid rgba(21,165,211,.3); color: #0d86b8; display: flex; align-items: center; justify-content: center; font-size: 14px; }
.eco-why-visual { position: relative; }
.eco-why-card { position: relative; z-index: 2; background: #fff; border: 1px solid var(--eco-line); border-radius: 22px; padding: 26px; box-shadow: 0 30px 60px -24px rgba(11,29,58,.25); }
.eco-why-card h4 { font-size: 16px; margin-bottom: 6px; }
.eco-why-card p { font-size: 13px; color: var(--eco-muted); line-height: 1.7; margin: 0; }
.eco-why-card + .eco-why-card { margin-top: 16px; }
.eco-why-card::before { content: ''; position: absolute; left: 26px; top: 68px; width: 54px; height: 4px; border-radius: 4px; background: var(--eco-grad); }
.eco-why-badge {
  position: absolute; z-index: 3; top: -22px; right: -16px;
  background: var(--eco-grad); color: #06263a;
  border-radius: 16px; padding: 14px 20px;
  font-weight: 900; font-size: 14px; text-align: center;
  box-shadow: 0 18px 36px -12px rgba(21,165,211,.6);
  transform: rotate(3deg);
}
.eco-why-badge small { display: block; font-size: 10px; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; }

/* ==========================================================================
   TECH STACK
   ========================================================================== */
.eco-stack { background: #fff; }
.eco-stack-group { margin-bottom: 26px; }
.eco-stack-group:last-child { margin-bottom: 0; }
.eco-stack-label { font-size: 12px; font-weight: 800; letter-spacing: 1.6px; text-transform: uppercase; color: #15a5d3; margin-bottom: 14px; }
.eco-stack-chips { display: flex; flex-wrap: wrap; gap: 10px; }
.eco-chip-tag {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 9px 16px; border-radius: 999px;
  background: var(--eco-bg); border: 1px solid var(--eco-line);
  font-size: 13px; font-weight: 600; color: #33455f;
  transition: all .25s ease;
}
.eco-chip-tag i { color: #15a5d3; font-size: 14px; }
.eco-chip-tag:hover { border-color: var(--eco-teal); color: #15a5d3; transform: translateY(-2px); box-shadow: 0 8px 18px -8px rgba(11,29,58,.2); }

/* ==========================================================================
   FAQ
   ========================================================================== */
.eco-faq { background: var(--eco-bg); }
.eco-faq-wrap { max-width: 860px; margin: 0 auto; }
.eco-faq-item { background: #fff; border: 1px solid var(--eco-line); border-radius: 16px; margin-bottom: 14px; overflow: hidden; transition: box-shadow .3s ease, border-color .3s ease; }
.eco-faq-item.open { border-color: rgba(21,165,211,.5); box-shadow: 0 16px 34px -18px rgba(11,29,58,.22); }
.eco-faq-q {
  width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 16px;
  padding: 20px 24px; background: none; border: 0; cursor: pointer;
  font-size: 16px; font-weight: 700; color: var(--eco-ink); text-align: left;
  font-family: 'Poppins', sans-serif;
}
.eco-faq-q i { width: 34px; height: 34px; min-width: 34px; border-radius: 10px; background: var(--eco-grad-soft); color: #0d86b8; display: flex; align-items: center; justify-content: center; transition: transform .3s ease, background .3s ease, color .3s ease; }
.eco-faq-item.open .eco-faq-q i { transform: rotate(180deg); background: var(--eco-grad); color: #06263a; }
.eco-faq-a { max-height: 0; overflow: hidden; transition: max-height .35s ease; }
.eco-faq-a-inner { padding: 0 24px 22px; font-size: 14.5px; line-height: 1.8; color: var(--eco-muted); }

/* ==========================================================================
   INQUIRY / CTA
   ========================================================================== */
.eco-inquiry {
  position: relative; overflow: hidden;
  background:
    radial-gradient(700px 420px at 85% 10%, rgba(13,134,184,.18), transparent 60%),
    radial-gradient(700px 420px at 0% 100%, rgba(21,165,211,.14), transparent 60%),
    linear-gradient(160deg, #060c18, #0a1a33 60%, #0b1d3a);
  color: #fff;
}
.eco-inquiry::before {
  content: ''; position: absolute; inset: 0;
  background-image: linear-gradient(rgba(21,165,211,.05) 1px, transparent 1px), linear-gradient(90deg, rgba(21,165,211,.05) 1px, transparent 1px);
  background-size: 52px 52px;
  -webkit-mask-image: radial-gradient(ellipse at 50% 0%, #000 20%, transparent 80%);
          mask-image: radial-gradient(ellipse at 50% 0%, #000 20%, transparent 80%);
}
.eco-inquiry .container { position: relative; z-index: 1; }
.eco-inquiry-inner { display: grid; grid-template-columns: 1fr 1.15fr; gap: 60px; align-items: center; }
.eco-inquiry-title { font-size: clamp(26px, 3.2vw, 38px); color: #fff; margin-bottom: 14px; }
.eco-inquiry-title .grad { background: var(--eco-grad); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; }
.eco-inquiry-sub { font-size: 15.5px; line-height: 1.8; color: rgba(255,255,255,.68); margin-bottom: 30px; max-width: 460px; }
.eco-contact-list { list-style: none; margin: 0; padding: 0; display: grid; gap: 18px; }
.eco-contact-list li { display: flex; align-items: center; gap: 16px; }
.eco-contact-ic {
  width: 50px; height: 50px; min-width: 50px; border-radius: 14px;
  background: rgba(21,165,211,.1); border: 1px solid rgba(21,165,211,.28);
  color: var(--eco-teal); font-size: 19px;
  display: flex; align-items: center; justify-content: center;
}
.eco-contact-list strong { display: block; font-size: 14px; }
.eco-contact-list span { font-size: 13.5px; color: rgba(255,255,255,.65); }
.eco-contact-list a { color: rgba(255,255,255,.65); }
.eco-contact-list a:hover { color: var(--eco-teal); }

.eco-form-card { background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.12); border-radius: 24px; padding: 34px; backdrop-filter: blur(10px); box-shadow: 0 40px 80px -30px rgba(0,0,0,.6); }
.eco-form-card h3 { font-size: 22px; margin-bottom: 6px; }
.eco-form-card > p { font-size: 13.5px; color: rgba(255,255,255,.6); margin-bottom: 24px; }
.eco-form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.eco-field { display: flex; flex-direction: column; gap: 7px; }
.eco-field.full { grid-column: 1 / -1; }
.eco-field label { font-size: 12.5px; font-weight: 700; color: rgba(255,255,255,.85); }
.eco-field label .req { color: var(--eco-teal); }
.eco-field input, .eco-field select, .eco-field textarea {
  padding: 13px 16px; border-radius: 12px;
  background: rgba(255,255,255,.07); border: 1px solid rgba(255,255,255,.14);
  color: #fff; font-size: 14px; font-family: 'Poppins', sans-serif;
  outline: none; transition: border-color .25s ease, background .25s ease, box-shadow .25s ease;
  width: 100%;
}
.eco-field textarea { min-height: 110px; resize: vertical; }
.eco-field select { appearance: none; background-image: linear-gradient(45deg, transparent 50%, rgba(255,255,255,.6) 50%), linear-gradient(135deg, rgba(255,255,255,.6) 50%, transparent 50%); background-position: calc(100% - 20px) 55%, calc(100% - 15px) 55%; background-size: 5px 5px; background-repeat: no-repeat; }
.eco-field select option { color: #0a1220; }
.eco-field input::placeholder, .eco-field textarea::placeholder { color: rgba(255,255,255,.4); }
.eco-field input:focus, .eco-field select:focus, .eco-field textarea:focus { border-color: var(--eco-teal); background: rgba(255,255,255,.1); box-shadow: 0 0 0 4px rgba(21,165,211,.15); }
.eco-form-btn {
  width: 100%; margin-top: 20px; padding: 16px; border: 0; border-radius: 14px;
  background: var(--eco-grad); color: #06263a;
  font-size: 15px; font-weight: 800; cursor: pointer;
  display: flex; align-items: center; justify-content: center; gap: 10px;
  transition: transform .25s ease, box-shadow .25s ease;
}
.eco-form-btn:hover { transform: translateY(-2px); box-shadow: 0 18px 40px -12px rgba(21,165,211,.6); }

/* ==========================================================================
   RESPONSIVE
   ========================================================================== */
@media (max-width: 1024px) {
  .eco-hero-inner, .eco-why-inner, .eco-inquiry-inner { grid-template-columns: 1fr; gap: 56px; }
  .eco-hero { padding: 56px 0 70px; }
  .eco-bento { grid-template-columns: repeat(2, 1fr); }
  .eco-steps { grid-template-columns: repeat(2, 1fr); }
  .eco-plat-grid { grid-template-columns: repeat(3, 1fr); }
  .eco-stats-grid { grid-template-columns: repeat(2, 1fr); row-gap: 34px; }
  .eco-mock { max-width: 520px; margin: 0 auto; }
}

@media (max-width: 640px) {
  .eco-section { padding: 64px 0; }
  .eco-bento, .eco-steps, .eco-plat-grid, .eco-why-list, .eco-form-grid { grid-template-columns: 1fr; }
  .eco-hero-cta .eco-btn { width: 100%; }
  .eco-chip.c2 { right: -6px; }
  .eco-chip.c1 { left: -6px; }
  .eco-why-badge { right: 6px; }
  .eco-form-card { padding: 26px 20px; }
  .eco-hero-meta { gap: 16px; }
  .eco-dash-body { grid-template-columns: 1fr; }
  .eco-kanban-cols { grid-template-columns: 1fr; }
}

/* ==========================================================================
   HERO MOCK — MOBILE APP (phone)
   ========================================================================== */
.eco-phone {
  position: relative; z-index: 2;
  width: 292px; margin: 0 auto;
  background: linear-gradient(180deg, #14294d, #0a1630);
  border: 7px solid #1b3057; border-radius: 42px;
  padding: 12px;
  box-shadow: 0 40px 80px -20px rgba(0,0,0,.65), 0 0 0 1px rgba(21,165,211,.15);
}
.eco-phone-notch {
  width: 96px; height: 22px; margin: 0 auto 12px;
  background: #0a1220; border-radius: 999px;
}
.eco-phone-screen {
  background: #0c1c38; border-radius: 26px;
  padding: 14px 14px 10px; overflow: hidden;
}
.eco-phone-status { display: flex; align-items: center; justify-content: space-between; font-size: 10px; color: rgba(255,255,255,.75); font-weight: 600; padding-bottom: 12px; }
.eco-phone-status i { font-size: 11px; }
.eco-phone-apphead { display: flex; align-items: center; justify-content: space-between; margin-bottom: 14px; }
.eco-phone-apphead h4 { font-size: 15px; color: #fff; margin: 0; }
.eco-phone-apphead .ava { width: 30px; height: 30px; border-radius: 10px; background: var(--eco-grad); color: #06263a; display: flex; align-items: center; justify-content: center; font-size: 12px; font-weight: 800; }
.eco-phone-balance {
  background: linear-gradient(120deg, rgba(21,165,211,.22), rgba(13,134,184,.1));
  border: 1px solid rgba(21,165,211,.3);
  border-radius: 16px; padding: 14px; margin-bottom: 14px;
}
.eco-phone-balance small { font-size: 10px; color: rgba(255,255,255,.6); text-transform: uppercase; letter-spacing: 1px; }
.eco-phone-balance b { display: block; font-size: 22px; color: #fff; margin: 2px 0 8px; }
.eco-phone-bars { display: flex; align-items: flex-end; gap: 6px; height: 40px; }
.eco-phone-bars i { flex: 1; border-radius: 4px; background: var(--eco-grad); opacity: .9; }
.eco-phone-bars i:nth-child(1) { height: 40%; } .eco-phone-bars i:nth-child(2) { height: 70%; }
.eco-phone-bars i:nth-child(3) { height: 55%; } .eco-phone-bars i:nth-child(4) { height: 90%; }
.eco-phone-bars i:nth-child(5) { height: 65%; } .eco-phone-bars i:nth-child(6) { height: 100%; }
.eco-phone-bars i:nth-child(7) { height: 75%; }
.eco-phone-list { display: grid; gap: 8px; margin-bottom: 14px; }
.eco-phone-item { display: flex; align-items: center; gap: 10px; background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.07); border-radius: 12px; padding: 10px 12px; }
.eco-phone-item .ic { width: 34px; height: 34px; min-width: 34px; border-radius: 10px; display: flex; align-items: center; justify-content: center; font-size: 14px; color: #fff; }
.eco-phone-item .ic.a { background: linear-gradient(135deg,#7c3aed,#4f46e5); }
.eco-phone-item .ic.b { background: linear-gradient(135deg,#0ea5e9,#2563eb); }
.eco-phone-item .ic.c { background: linear-gradient(135deg,#f59e0b,#ef4444); }
.eco-phone-item div { flex: 1; }
.eco-phone-item strong { display: block; font-size: 12px; color: #fff; }
.eco-phone-item small { font-size: 10px; color: rgba(255,255,255,.55); }
.eco-phone-item .amt { font-size: 11px; font-weight: 800; color: var(--eco-teal); }
.eco-phone-nav { display: flex; justify-content: space-around; padding: 10px 4px 2px; border-top: 1px solid rgba(255,255,255,.08); }
.eco-phone-nav i { font-size: 15px; color: rgba(255,255,255,.4); }
.eco-phone-nav i.active { color: var(--eco-teal); }

/* ==========================================================================
   HERO MOCK — ERP (dashboard)
   ========================================================================== */
.eco-dash {
  position: relative; z-index: 2;
  background: #0c1c36; border: 1px solid rgba(255,255,255,.1);
  border-radius: 24px; padding: 14px;
  box-shadow: 0 40px 80px -20px rgba(0,0,0,.6), 0 0 0 1px rgba(21,165,211,.06);
}
.eco-dash-bar { display: flex; gap: 6px; padding: 4px 6px 14px; }
.eco-dash-bar i { width: 11px; height: 11px; border-radius: 50%; display: block; }
.eco-dash-bar i:nth-child(1) { background: #ff5f57; }
.eco-dash-bar i:nth-child(2) { background: #febc2e; }
.eco-dash-bar i:nth-child(3) { background: #28c840; }
.eco-dash-body { display: grid; grid-template-columns: 88px 1fr; gap: 12px; }
.eco-dash-side { background: rgba(255,255,255,.04); border: 1px solid rgba(255,255,255,.08); border-radius: 16px; padding: 12px 8px; display: flex; flex-direction: column; align-items: center; gap: 14px; }
.eco-dash-side i { font-size: 15px; color: rgba(255,255,255,.45); }
.eco-dash-side i.active { color: var(--eco-teal); }
.eco-dash-main { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.eco-kpi { background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.08); border-radius: 14px; padding: 12px; }
.eco-kpi small { font-size: 10px; color: rgba(255,255,255,.55); text-transform: uppercase; letter-spacing: .8px; }
.eco-kpi b { display: block; font-size: 20px; color: #fff; margin: 2px 0 6px; }
.eco-kpi .trend { font-size: 10px; font-weight: 700; color: var(--eco-teal); }
.eco-kpi .trend.down { color: #f87171; }
.eco-kpi .bar { display: flex; align-items: flex-end; gap: 3px; height: 30px; }
.eco-kpi .bar i { flex: 1; border-radius: 3px; background: var(--eco-grad); opacity: .85; }
.eco-kpi .bar i:nth-child(1) { height: 45%; } .eco-kpi .bar i:nth-child(2) { height: 75%; }
.eco-kpi .bar i:nth-child(3) { height: 55%; } .eco-kpi .bar i:nth-child(4) { height: 100%; }
.eco-dash-wide { grid-column: 1 / -1; }
.eco-dash-table { width: 100%; border-collapse: collapse; font-size: 11px; }
.eco-dash-table th { color: rgba(255,255,255,.5); text-align: left; padding: 6px 8px; font-weight: 600; }
.eco-dash-table td { color: rgba(255,255,255,.85); padding: 7px 8px; border-top: 1px solid rgba(255,255,255,.07); }
.eco-dash-table td b { color: #fff; }
.eco-dash-table .st { display: inline-block; padding: 3px 9px; border-radius: 999px; font-size: 9px; font-weight: 700; }
.eco-dash-table .st.ok { background: rgba(21,165,211,.18); color: #7fd4f5; }
.eco-dash-table .st.warn { background: rgba(251,191,36,.16); color: #fcd34d; }

/* ==========================================================================
   HERO MOCK — CRM (kanban)
   ========================================================================== */
.eco-kanban {
  position: relative; z-index: 2;
  background: #0c1c36; border: 1px solid rgba(255,255,255,.1);
  border-radius: 24px; padding: 14px;
  box-shadow: 0 40px 80px -20px rgba(0,0,0,.6), 0 0 0 1px rgba(21,165,211,.06);
}
.eco-kanban-bar { display: flex; gap: 6px; padding: 4px 6px 14px; }
.eco-kanban-bar i { width: 11px; height: 11px; border-radius: 50%; display: block; }
.eco-kanban-bar i:nth-child(1) { background: #ff5f57; }
.eco-kanban-bar i:nth-child(2) { background: #febc2e; }
.eco-kanban-bar i:nth-child(3) { background: #28c840; }
.eco-kanban-head { display: flex; align-items: center; justify-content: space-between; padding: 2px 4px 14px; }
.eco-kanban-head h4 { font-size: 15px; color: #fff; margin: 0; }
.eco-kanban-head .add { width: 28px; height: 28px; border-radius: 9px; background: var(--eco-grad); color: #06263a; display: flex; align-items: center; justify-content: center; font-size: 12px; font-weight: 800; }
.eco-kanban-cols { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; }
.eco-kanban-col { background: rgba(255,255,255,.045); border: 1px solid rgba(255,255,255,.08); border-radius: 14px; padding: 10px; }
.eco-kanban-col-head { display: flex; align-items: center; justify-content: space-between; font-size: 11px; font-weight: 700; color: rgba(255,255,255,.8); margin-bottom: 10px; }
.eco-kanban-col-head .cnt { background: rgba(255,255,255,.1); border-radius: 999px; padding: 1px 8px; font-size: 9px; }
.eco-lead { background: #12264a; border: 1px solid rgba(255,255,255,.09); border-radius: 12px; padding: 10px; margin-bottom: 8px; }
.eco-lead:last-child { margin-bottom: 0; }
.eco-lead strong { display: block; font-size: 11.5px; color: #fff; margin-bottom: 6px; }
.eco-lead .tags { display: flex; gap: 5px; margin-bottom: 8px; }
.eco-lead .tags span { font-size: 8.5px; font-weight: 700; padding: 2px 7px; border-radius: 999px; }
.eco-lead .tags .t1 { background: rgba(21,165,211,.18); color: #7fd4f5; }
.eco-lead .tags .t2 { background: rgba(251,191,36,.16); color: #fcd34d; }
.eco-lead .tags .t3 { background: rgba(52,211,153,.16); color: #6ee7b7; }
.eco-lead-foot { display: flex; align-items: center; justify-content: space-between; }
.eco-lead-foot .amt { font-size: 11px; font-weight: 800; color: var(--eco-teal); }
.eco-lead-foot .mini { width: 22px; height: 22px; border-radius: 50%; background: var(--eco-grad); color: #06263a; display: flex; align-items: center; justify-content: center; font-size: 8px; font-weight: 800; }

/* ==========================================================================
   HERO MOCK — WEB DEVELOPMENT (browser)
   ========================================================================== */
.eco-web-url {
  display: flex; align-items: center; gap: 8px;
  background: rgba(255,255,255,.07); border: 1px solid rgba(255,255,255,.1);
  border-radius: 999px; padding: 8px 16px; margin-bottom: 14px;
  font-size: 12px; color: rgba(255,255,255,.6);
}
.eco-web-url i { color: #4ade80; font-size: 11px; }
.eco-web-hero {
  border-radius: 18px; overflow: hidden; padding: 20px;
  background:
    radial-gradient(400px 220px at 85% -20%, rgba(21,165,211,.35), transparent 60%),
    radial-gradient(300px 200px at -10% 120%, rgba(13,134,184,.3), transparent 60%),
    linear-gradient(135deg, #0a1a33, #0d4f7c 60%, #15a5d3);
}
.eco-web-logo { display: flex; align-items: center; gap: 8px; font-size: 13px; font-weight: 800; color: #fff; margin-bottom: 12px; }
.eco-web-logo i { color: var(--eco-teal); }
.eco-web-nav { display: flex; gap: 14px; font-size: 9px; color: rgba(255,255,255,.6); margin-bottom: 26px; }
.eco-web-nav span:first-child { color: #8fe2fa; }
.eco-web-hero h5 { font-size: 17px; color: #fff; margin: 0 0 8px; line-height: 1.35; }
.eco-web-hero h5 span { background: linear-gradient(100deg, #8fe2fa, #15a5d3); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; }
.eco-web-sub { font-size: 10.5px; color: rgba(255,255,255,.65); margin: 0 0 16px; }
.eco-web-btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 10px 18px; border: 0; border-radius: 999px;
  background: #15a5d3; color: #06263a; font-weight: 800; font-size: 11px; cursor: pointer;
}
.eco-web-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; margin-top: 14px; }
.eco-web-card { background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.08); border-radius: 14px; padding: 14px; }
.eco-web-card i { font-size: 18px; color: var(--eco-teal); margin-bottom: 10px; }
.eco-web-card p { height: 5px; background: rgba(255,255,255,.14); border-radius: 3px; margin: 0 0 6px; }
.eco-web-card p:last-child { width: 70%; margin-bottom: 0; }

/* ==========================================================================
   HERO MOCK — MICROSERVICES (architecture diagram)
   ========================================================================== */
.eco-arch-gateway {
  display: flex; align-items: center; justify-content: space-between; gap: 10px;
  background: linear-gradient(120deg, rgba(21,165,211,.25), rgba(13,134,184,.12));
  border: 1px solid rgba(21,165,211,.35);
  border-radius: 14px; padding: 12px 16px; margin-bottom: 12px;
  font-size: 13px; font-weight: 800; color: #fff;
}
.eco-arch-gateway i { color: var(--eco-teal); margin-right: 8px; }
.eco-arch-gateway span { font-size: 10px; font-weight: 600; color: rgba(255,255,255,.6); }
.eco-arch-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin-bottom: 12px; }
.eco-arch-node {
  background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.08);
  border-radius: 14px; padding: 12px 14px;
}
.eco-arch-node i { font-size: 15px; color: var(--eco-teal); margin-right: 8px; }
.eco-arch-node b { display: block; font-size: 12px; color: #fff; margin-bottom: 6px; }
.eco-arch-node .ok { font-size: 9.5px; color: #4ade80; }
.eco-arch-bus {
  display: flex; align-items: center; justify-content: space-between; gap: 10px;
  background: rgba(255,255,255,.04); border: 1px solid rgba(255,255,255,.08);
  border-radius: 12px; padding: 10px 14px; font-size: 11px; color: rgba(255,255,255,.75);
}
.eco-arch-bus i { color: var(--eco-teal); margin-right: 8px; }
.eco-arch-bus span { color: var(--eco-teal); font-weight: 700; }

/* ==========================================================================
   HERO MOCK — API DEVELOPMENT (request / response)
   ========================================================================== */
.eco-api-req {
  display: flex; align-items: center; gap: 10px;
  background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.1);
  border-radius: 12px; padding: 12px 14px; margin-bottom: 12px;
}
.eco-api-method {
  padding: 4px 10px; border-radius: 7px;
  font-size: 10px; font-weight: 800; color: #06263a; flex-shrink: 0;
}
.eco-api-method.get { background: #22c55e; }
.eco-api-method.post { background: #f59e0b; }
.eco-api-path { flex: 1; font-size: 12px; color: rgba(255,255,255,.85); font-family: 'Courier New', monospace; }
.eco-api-status { font-size: 11px; font-weight: 800; color: #4ade80; flex-shrink: 0; }
.eco-api-body {
  background: rgba(0,0,0,.3); border: 1px solid rgba(255,255,255,.08);
  border-radius: 12px; padding: 14px 16px; margin-bottom: 12px;
  font-family: 'Courier New', monospace; font-size: 11.5px; line-height: 1.7;
  color: #9be1fa; white-space: pre;
}
.eco-api-body .k { color: #7fd4f5; }
.eco-api-body .s { color: #4ade80; }
.eco-api-body .n { color: #fbbf24; }
.eco-api-foot { display: flex; flex-wrap: wrap; gap: 8px; }
.eco-api-foot span {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 10px; color: rgba(255,255,255,.7); font-weight: 600;
  background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.09);
  border-radius: 999px; padding: 6px 12px;
}
.eco-api-foot i { color: var(--eco-teal); }

/* ==========================================================================
   HERO MOCK — ENTERPRISE SOFTWARE (mission control)
   ========================================================================== */
.eco-ent-head {
  display: flex; align-items: center; justify-content: space-between;
  margin-bottom: 12px;
}
.eco-ent-title { font-size: 13px; font-weight: 800; color: #fff; }
.eco-ent-title i { color: var(--eco-teal); margin-right: 8px; }
.eco-ent-live {
  font-size: 9px; font-weight: 800; letter-spacing: 1px;
  color: #4ade80; background: rgba(74,222,128,.12);
  border: 1px solid rgba(74,222,128,.3); border-radius: 999px; padding: 4px 10px;
}
.eco-ent-kpis { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin-bottom: 12px; }
.eco-ent-kpi {
  background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.08);
  border-radius: 14px; padding: 12px 14px;
}
.eco-ent-kpi small { display: block; font-size: 9px; color: rgba(255,255,255,.55); text-transform: uppercase; letter-spacing: .8px; margin-bottom: 4px; }
.eco-ent-kpi b { font-size: 18px; color: #fff; }
.eco-ent-nodes { display: grid; grid-template-columns: repeat(4, 1fr); gap: 8px; }
.eco-ent-node {
  text-align: center; font-size: 10px; font-weight: 700;
  border-radius: 10px; padding: 10px 6px;
  background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.09);
  color: rgba(255,255,255,.8);
}
.eco-ent-node::before { content: '● '; font-size: 8px; }
.eco-ent-node.ok { color: #4ade80; border-color: rgba(74,222,128,.3); }
.eco-ent-node.warn { color: #fcd34d; border-color: rgba(251,191,36,.35); }

/* ==========================================================================
   HERO MOCK — LEGACY MODERNISATION (before → after)
   ========================================================================== */
.eco-legacy-flex { display: flex; align-items: center; gap: 10px; }
.eco-legacy-old {
  flex: 1; background: #04140d; border: 1px solid #1f5c3a;
  border-radius: 12px; padding: 14px;
  font-family: 'Courier New', monospace; font-size: 10.5px; line-height: 1.8;
  color: #4ade80;
}
.eco-legacy-head { display: flex; align-items: center; gap: 6px; font-size: 10px; color: #86efac; margin-bottom: 8px; border-bottom: 1px dashed #1f5c3a; padding-bottom: 8px; }
.eco-legacy-old p { margin: 0; }
.eco-legacy-cursor { animation: ecoBlink 1s steps(1) infinite; }
@keyframes ecoBlink { 50% { opacity: 0; } }
.eco-legacy-arrow { display: flex; flex-direction: column; align-items: center; gap: 4px; color: var(--eco-teal); font-size: 18px; flex-shrink: 0; }
.eco-legacy-arrow small { font-size: 7.5px; letter-spacing: 1px; color: rgba(255,255,255,.6); font-weight: 700; }
.eco-legacy-new {
  flex: 1.2; background: #0c1c36; border: 1px solid rgba(21,165,211,.35);
  border-radius: 12px; padding: 14px;
}
.eco-legacy-url { display: flex; align-items: center; gap: 6px; font-size: 9.5px; color: rgba(255,255,255,.65); margin-bottom: 12px; }
.eco-legacy-url i { color: #4ade80; font-size: 9px; }
.eco-legacy-line { height: 6px; border-radius: 3px; background: rgba(255,255,255,.14); margin-bottom: 7px; }
.eco-legacy-line.w70 { width: 70%; } .eco-legacy-line.w50 { width: 50%; }
.eco-legacy-btn {
  display: inline-flex; align-items: center; gap: 6px;
  margin-top: 4px; padding: 8px 14px; border-radius: 999px;
  background: var(--eco-grad); color: #06263a; font-size: 10px; font-weight: 800;
}

/* ==========================================================================
   REUSABLE MOCK PRIMITIVES (dashboards, clouds, campaigns, funnels)
   ========================================================================== */
.eco-cloud-svcs { display: grid; grid-template-columns: repeat(3,1fr); gap: 8px; }
.eco-cloud-svc {
  background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.08);
  border-radius: 12px; padding: 10px; text-align: center;
}
.eco-cloud-svc i { font-size: 16px; color: var(--eco-teal); margin-bottom: 6px; display: block; }
.eco-cloud-svc b { display: block; font-size: 9px; color: rgba(255,255,255,.8); }
.eco-cloud-svc small { display: block; font-size: 8px; color: rgba(255,255,255,.5); }
.eco-dash-head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 12px; }
.eco-dash-head b { font-size: 13px; color: #fff; }
.eco-dash-head small { font-size: 9px; color: rgba(255,255,255,.5); background: rgba(255,255,255,.08); padding: 3px 8px; border-radius: 999px; }
.eco-dash-row { display: grid; grid-template-columns: repeat(3,1fr); gap: 8px; margin-bottom: 12px; }
.eco-dash-mini {
  background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.08);
  border-radius: 10px; padding: 10px;
}
.eco-dash-mini small { display: block; font-size: 8px; color: rgba(255,255,255,.5); text-transform: uppercase; letter-spacing: .5px; margin-bottom: 3px; }
.eco-dash-mini b { font-size: 16px; color: #fff; }
.eco-dash-mini .trend { font-size: 8px; font-weight: 700; color: #4ade80; }
.eco-rank-item { display: flex; align-items: center; gap: 10px; background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.08); border-radius: 10px; padding: 10px 12px; margin-bottom: 8px; }
.eco-rank-item:last-child { margin-bottom: 0; }
.eco-rank-num { width: 28px; height: 28px; border-radius: 8px; background: var(--eco-grad); color: #06263a; font-size: 11px; font-weight: 800; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.eco-rank-info b { display: block; font-size: 11px; color: #fff; margin-bottom: 2px; }
.eco-rank-info small { font-size: 9px; color: rgba(255,255,255,.5); }
.eco-rank-pos { margin-left: auto; font-size: 10px; font-weight: 700; color: #4ade80; }
.eco-ad-card { background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.08); border-radius: 12px; padding: 12px; margin-bottom: 8px; }
.eco-ad-card:last-child { margin-bottom: 0; }
.eco-ad-card-head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 8px; }
.eco-ad-card-head b { font-size: 11px; color: #fff; }
.eco-ad-card-head .st { font-size: 8px; font-weight: 700; padding: 2px 8px; border-radius: 999px; }
.eco-ad-card-head .st.on { background: rgba(74,222,128,.15); color: #4ade80; }
.eco-ad-card-metrics { display: flex; gap: 12px; }
.eco-ad-card-metrics span { font-size: 9px; color: rgba(255,255,255,.6); }
.eco-ad-card-metrics span b { color: #fff; font-size: 10px; }
.eco-funnel { display: grid; gap: 8px; }
.eco-funnel-step { display: flex; align-items: center; gap: 10px; padding: 10px 12px; border-radius: 10px; background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.08); }
.eco-funnel-bar { height: 6px; border-radius: 3px; background: var(--eco-grad); flex-shrink: 0; }
.eco-funnel-step b { font-size: 11px; color: #fff; }
.eco-funnel-step small { font-size: 9px; color: rgba(255,255,255,.5); margin-left: auto; }
.eco-toggle-row { display: flex; align-items: center; justify-content: space-between; padding: 8px 0; border-bottom: 1px solid rgba(255,255,255,.06); }
.eco-toggle-row:last-child { border-bottom: 0; }
.eco-toggle-row span { font-size: 11px; color: rgba(255,255,255,.8); }
.eco-toggle { width: 32px; height: 18px; border-radius: 999px; background: var(--eco-grad); position: relative; flex-shrink: 0; }
.eco-toggle::after { content: ''; position: absolute; top: 2px; right: 2px; width: 14px; height: 14px; border-radius: 50%; background: #fff; }
.eco-toggle.off { background: rgba(255,255,255,.15); }
.eco-toggle.off::after { right: auto; left: 2px; }
.eco-progress-bar { height: 6px; border-radius: 3px; background: rgba(255,255,255,.1); margin-top: 6px; }
.eco-progress-fill { height: 100%; border-radius: 3px; background: var(--eco-grad); }

/* ==========================================================================
   SOCIAL MEDIA CAMPAIGN — MEDIA-LIKE FEEL
   ========================================================================== */

/* Multi-Platform Post Grid */
.eco-post-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 20px; margin-top: 32px; }
@media(max-width:768px){ .eco-post-grid { grid-template-columns: 1fr; } }
.eco-post-card {
  background: #fff; border-radius: 16px; overflow: hidden;
  box-shadow: 0 4px 24px rgba(0,0,0,.08); transition: transform .3s, box-shadow .3s;
  position: relative;
}
.eco-post-card:hover { transform: translateY(-4px); box-shadow: 0 12px 40px rgba(0,0,0,.12); }
.eco-sample-badge {
  position: absolute; top: 10px; right: 10px; z-index: 10;
  background: rgba(245, 158, 11, 0.9); color: #fff;
  font-size: 9px; font-weight: 700; padding: 4px 10px;
  border-radius: 999px; letter-spacing: 1px;
  backdrop-filter: blur(4px);
}
.eco-post-card-head {
  display: flex; align-items: center; gap: 10px; padding: 14px 16px;
}
.eco-post-card-avatar {
  width: 42px; height: 42px; border-radius: 50%; display: flex;
  align-items: center; justify-content: center; font-weight: 800;
  font-size: 13px; color: #fff; flex-shrink: 0;
}
.eco-post-card-user b { display: block; font-size: 13px; color: #1a1a2e; }
.eco-post-card-user small { font-size: 11px; color: #94a3b8; }
.eco-post-card-body { padding: 0 16px 12px; font-size: 13px; color: #334155; line-height: 1.6; }
.eco-post-card-media {
  width: 100%; aspect-ratio: 16/9; display: flex; align-items: center;
  justify-content: center; color: #fff; font-size: 42px; position: relative;
}
.eco-post-card-media .play-btn {
  position: absolute; width: 56px; height: 56px; border-radius: 50%;
  background: rgba(255,255,255,.9); display: flex; align-items: center;
  justify-content: center; font-size: 20px; color: #ff0000;
}
.eco-post-card-actions {
  display: flex; align-items: center; gap: 14px; padding: 10px 16px;
  border-top: 1px solid #f1f5f9;
}
.eco-post-card-actions i { font-size: 16px; color: #64748b; }
.eco-post-card-actions .count { font-size: 12px; color: #94a3b8; margin-left: -8px; }
.eco-post-card-tags {
  display: flex; flex-wrap: wrap; gap: 6px; padding: 0 16px 14px;
}
.eco-post-card-tags span {
  font-size: 10px; padding: 3px 8px; border-radius: 999px;
  background: #f1f5f9; color: #64748b;
}

/* WhatsApp Message Mock */
.eco-wa-chat { background: #e5ddd5; border-radius: 16px; padding: 16px; max-width: 340px; margin: 0 auto; }
.eco-wa-bubble {
  background: #dcf8c6; border-radius: 12px; padding: 10px 14px;
  margin-bottom: 8px; max-width: 85%; font-size: 13px; color: #1a1a2e;
  position: relative; box-shadow: 0 1px 2px rgba(0,0,0,.1);
}
.eco-wa-bubble.incoming { background: #fff; margin-left: auto; }
.eco-wa-bubble small { display: block; text-align: right; font-size: 10px; color: #94a3b8; margin-top: 4px; }
.eco-wa-media {
  background: linear-gradient(135deg,#25d366,#128c7e); border-radius: 12px;
  padding: 20px; text-align: center; color: #fff; margin-bottom: 8px;
}
.eco-wa-media i { font-size: 28px; margin-bottom: 8px; display: block; }
.eco-wa-media b { display: block; font-size: 13px; }
.eco-wa-media small { font-size: 11px; opacity: .8; }
.eco-wa-btn {
  display: block; width: 100%; padding: 10px; border-radius: 8px;
  background: #25d366; color: #fff; text-align: center; font-size: 13px;
  font-weight: 600; border: none; cursor: pointer;
}

/* Content Format Cards */
.eco-format-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 16px; margin-top: 32px; }
@media(max-width:768px){ .eco-format-grid { grid-template-columns: repeat(2,1fr); } }
.eco-format-card {
  border-radius: 16px; overflow: hidden; position: relative;
  aspect-ratio: 4/5; display: flex; align-items: flex-end;
  color: #fff; cursor: pointer; transition: transform .3s;
}
.eco-format-card:hover { transform: scale(1.03); }
.eco-format-card-bg {
  position: absolute; inset: 0; z-index: 0;
}
.eco-format-card-content {
  position: relative; z-index: 2; padding: 16px; width: 100%;
  background: linear-gradient(transparent,rgba(0,0,0,.7));
}
.eco-format-card-content i { font-size: 28px; margin-bottom: 8px; display: block; }
.eco-format-card-content b { display: block; font-size: 15px; margin-bottom: 2px; }
.eco-format-card-content small { font-size: 11px; color: rgba(255,255,255,.7); }

/* Analytics Dashboard Mock */
.eco-dash-mock {
  background: #fff; border-radius: 20px; overflow: hidden;
  box-shadow: 0 8px 40px rgba(0,0,0,.1); max-width: 900px; margin: 32px auto 0;
}
.eco-dash-top {
  display: flex; align-items: center; justify-content: space-between;
  padding: 16px 24px; border-bottom: 1px solid #f1f5f9;
}
.eco-dash-top b { font-size: 15px; color: #1a1a2e; }
.eco-dash-tabs { display: flex; gap: 8px; }
.eco-dash-tab {
  padding: 6px 14px; border-radius: 8px; font-size: 12px; font-weight: 600;
  color: #64748b; background: #f8fafc; cursor: pointer;
}
.eco-dash-tab.active { background: linear-gradient(135deg,#f58529,#dd2a7b); color: #fff; }
.eco-dash-body { padding: 24px; }
.eco-dash-metrics { display: grid; grid-template-columns: repeat(4,1fr); gap: 16px; margin-bottom: 24px; }
@media(max-width:768px){ .eco-dash-metrics { grid-template-columns: repeat(2,1fr); } }
.eco-dash-metric {
  background: #f8fafc; border-radius: 12px; padding: 16px; text-align: center;
}
.eco-dash-metric i { font-size: 20px; margin-bottom: 8px; display: block; }
.eco-dash-metric b { display: block; font-size: 22px; color: #1a1a2e; margin-bottom: 2px; }
.eco-dash-metric small { font-size: 11px; color: #94a3b8; }
.eco-dash-metric .trend { font-size: 11px; font-weight: 700; color: #10b981; }
.eco-dash-chart {
  background: #f8fafc; border-radius: 12px; padding: 20px;
  display: flex; align-items: flex-end; gap: 8px; height: 160px;
}
.eco-dash-bar {
  flex: 1; border-radius: 6px 6px 0 0; transition: height .5s ease;
  position: relative;
}
.eco-dash-bar small {
  position: absolute; bottom: -20px; left: 50%; transform: translateX(-50%);
  font-size: 10px; color: #94a3b8; white-space: nowrap;
}
.eco-dash-legend {
  display: flex; gap: 16px; margin-top: 28px; justify-content: center;
}
.eco-dash-legend span {
  display: flex; align-items: center; gap: 6px; font-size: 12px; color: #64748b;
}
.eco-dash-legend span i { width: 10px; height: 10px; border-radius: 3px; }

/* Campaign Results Before/After */
.eco-results-grid { display: grid; grid-template-columns: 1fr auto 1fr; gap: 24px; align-items: center; margin-top: 32px; }
@media(max-width:768px){ .eco-results-grid { grid-template-columns: 1fr; } }
.eco-result-card {
  background: #fff; border-radius: 16px; padding: 24px;
  box-shadow: 0 4px 24px rgba(0,0,0,.06); text-align: center;
}
.eco-result-card.before { border: 2px solid #fee2e2; }
.eco-result-card.after { border: 2px solid #d1fae5; }
.eco-result-card h4 { font-size: 14px; color: #94a3b8; margin-bottom: 16px; text-transform: uppercase; letter-spacing: 1px; }
.eco-result-card.before h4 { color: #ef4444; }
.eco-result-card.after h4 { color: #10b981; }
.eco-result-metric { margin-bottom: 16px; }
.eco-result-metric:last-child { margin-bottom: 0; }
.eco-result-metric b { display: block; font-size: 28px; color: #1a1a2e; }
.eco-result-metric small { font-size: 12px; color: #94a3b8; }
.eco-results-arrow {
  font-size: 32px; color: var(--eco-teal);
}
@media(max-width:768px){ .eco-results-arrow { transform: rotate(90deg); } }

/* Audience Demographics Mock */
.eco-demo-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; margin-top: 32px; }
@media(max-width:768px){ .eco-demo-grid { grid-template-columns: 1fr; } }
.eco-demo-card {
  background: #fff; border-radius: 16px; padding: 20px;
  box-shadow: 0 4px 24px rgba(0,0,0,.06);
}
.eco-demo-card h4 { font-size: 14px; color: #1a1a2e; margin-bottom: 14px; }
.eco-demo-bar-row { display: flex; align-items: center; gap: 10px; margin-bottom: 10px; }
.eco-demo-bar-row:last-child { margin-bottom: 0; }
.eco-demo-bar-label { font-size: 12px; color: #64748b; width: 60px; flex-shrink: 0; }
.eco-demo-bar-track { flex: 1; height: 8px; background: #f1f5f9; border-radius: 4px; overflow: hidden; }
.eco-demo-bar-fill { height: 100%; border-radius: 4px; }
.eco-demo-bar-val { font-size: 11px; color: #94a3b8; width: 36px; text-align: right; }

/* Social Post Mock */
.eco-social-post {
  background: #fff; border-radius: 16px; overflow: hidden;
  box-shadow: 0 8px 32px rgba(0,0,0,.12); max-width: 340px; margin: 0 auto;
}
.eco-social-post-head {
  display: flex; align-items: center; gap: 10px; padding: 14px 16px;
}
.eco-social-avatar {
  width: 40px; height: 40px; border-radius: 50%; display: flex;
  align-items: center; justify-content: center; font-weight: 800;
  font-size: 14px; color: #fff; flex-shrink: 0;
}
.eco-social-avatar.ig { background: linear-gradient(135deg,#f58529,#dd2a7b,#8134af); }
.eco-social-avatar.fb { background: linear-gradient(135deg,#1877f2,#0d86b8); }
.eco-social-avatar.yt { background: linear-gradient(135deg,#ff0000,#cc0000); }
.eco-social-avatar.li { background: linear-gradient(135deg,#0a66c2,#004182); }
.eco-social-avatar.wa { background: linear-gradient(135deg,#25d366,#128c7e); }
.eco-social-avatar.gov { background: linear-gradient(135deg,#f59e0b,#d97706); }
.eco-social-user-info b { display: block; font-size: 13px; color: #1a1a2e; }
.eco-social-user-info small { font-size: 11px; color: #94a3b8; }
.eco-social-post-img {
  width: 100%; aspect-ratio: 1; object-fit: cover; display: flex;
  align-items: center; justify-content: center; font-size: 48px; color: #fff;
}
.eco-social-post-img.ig-bg { background: linear-gradient(135deg,#f58529,#dd2a7b,#8134af); }
.eco-social-post-img.fb-bg { background: linear-gradient(135deg,#1877f2,#42a5f5); }
.eco-social-post-img.yt-bg { background: linear-gradient(135deg,#ff0000,#ff4444); }
.eco-social-post-img.li-bg { background: linear-gradient(135deg,#0a66c2,#004182); }
.eco-social-post-img.wa-bg { background: linear-gradient(135deg,#25d366,#128c7e); }
.eco-social-post-img.gov-bg { background: linear-gradient(135deg,#f59e0b,#dc2626); }
.eco-social-post-actions {
  display: flex; align-items: center; gap: 16px; padding: 12px 16px;
}
.eco-social-post-actions i { font-size: 20px; color: #1a1a2e; cursor: pointer; }
.eco-social-post-actions i.fa-heart { color: #ef4444; }
.eco-social-post-actions .bookmark { margin-left: auto; }
.eco-social-post-caption {
  padding: 0 16px 14px; font-size: 12px; color: #475569; line-height: 1.5;
}
.eco-social-post-caption b { color: #1a1a2e; }

/* Stories Row */
.eco-stories-row {
  display: flex; gap: 16px; padding: 16px 0; overflow-x: auto;
  scrollbar-width: none;
}
.eco-stories-row::-webkit-scrollbar { display: none; }
.eco-story {
  display: flex; flex-direction: column; align-items: center; gap: 6px;
  flex-shrink: 0; cursor: pointer;
}
.eco-story-ring {
  width: 64px; height: 64px; border-radius: 50%; padding: 3px;
  background: linear-gradient(135deg,#f58529,#dd2a7b,#8134af,#1877f2);
}
.eco-story-ring-inner {
  width: 100%; height: 100%; border-radius: 50%; background: #fff;
  padding: 2px; display: flex; align-items: center; justify-content: center;
}
.eco-story-avatar {
  width: 100%; height: 100%; border-radius: 50%; display: flex;
  align-items: center; justify-content: center; font-size: 20px; color: #fff;
  font-weight: 700;
}
.eco-story-name { font-size: 10px; color: #64748b; max-width: 64px; text-align: center; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }

/* Engagement Bubble */
.eco-engagement {
  display: flex; align-items: center; gap: 12px; padding: 12px 16px;
  background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.08);
  border-radius: 14px; margin-bottom: 10px;
}
.eco-engagement:last-child { margin-bottom: 0; }
.eco-engagement-icon {
  width: 44px; height: 44px; border-radius: 12px; display: flex;
  align-items: center; justify-content: center; font-size: 18px; color: #fff;
  flex-shrink: 0;
}
.eco-engagement-info b { display: block; font-size: 18px; color: #fff; }
.eco-engagement-info small { font-size: 11px; color: rgba(255,255,255,.6); }
.eco-engagement-trend { margin-left: auto; font-size: 11px; font-weight: 700; color: #4ade80; }

/* Reel Mock */
.eco-reel-card {
  border-radius: 16px; overflow: hidden; position: relative;
  aspect-ratio: 9/16; max-height: 280px; display: flex;
  align-items: flex-end; color: #fff;
}
.eco-reel-card i.reel-play {
  position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%);
  font-size: 36px; color: rgba(255,255,255,.9); z-index: 2;
  background: rgba(0,0,0,.3); width: 56px; height: 56px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
}
.eco-reel-overlay {
  position: absolute; bottom: 0; left: 0; right: 0; padding: 14px;
  background: linear-gradient(transparent,rgba(0,0,0,.7)); z-index: 2;
}
.eco-reel-overlay b { display: block; font-size: 13px; margin-bottom: 2px; }
.eco-reel-overlay small { font-size: 11px; color: rgba(255,255,255,.7); }
.eco-reel-stats {
  display: flex; gap: 12px; margin-top: 8px;
}
.eco-reel-stats span { font-size: 11px; color: rgba(255,255,255,.8); }
.eco-reel-stats span i { margin-right: 3px; }

/* Government Campaign Banner */
.eco-govt-banner {
  background: linear-gradient(135deg,#fef3c7,#fde68a);
  border: 2px solid #f59e0b; border-radius: 16px; padding: 20px 24px;
  display: flex; align-items: center; gap: 16px; margin-bottom: 24px;
}
.eco-govt-banner-icon {
  width: 52px; height: 52px; border-radius: 14px;
  background: linear-gradient(135deg,#f59e0b,#d97706);
  display: flex; align-items: center; justify-content: center;
  font-size: 24px; color: #fff; flex-shrink: 0;
}
.eco-govt-banner-text b { display: block; font-size: 15px; color: #92400e; margin-bottom: 2px; }
.eco-govt-banner-text small { font-size: 12px; color: #a16207; }

/* Social Metric Card (used in services section) */
.eco-social-metric {
  display: flex; align-items: center; gap: 12px; padding: 10px 14px;
  background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.08);
  border-radius: 12px; margin-top: 12px;
}
.eco-social-metric i { font-size: 14px; color: var(--eco-teal); }
.eco-social-metric b { font-size: 13px; color: #fff; }
.eco-social-metric small { font-size: 10px; color: rgba(255,255,255,.5); margin-left: auto; }

/* Gradient Overlays for social media feel */
.eco-ig-gradient { background: linear-gradient(135deg,#833ab4,#fd1d1d,#fcb045); }
.eco-fb-gradient { background: linear-gradient(135deg,#1877f2,#42a5f5); }
.eco-yt-gradient { background: linear-gradient(135deg,#ff0000,#ff4444); }
.eco-li-gradient { background: linear-gradient(135deg,#0a66c2,#004182); }
.eco-wa-gradient { background: linear-gradient(135deg,#25d366,#128c7e); }
.eco-multi-gradient { background: linear-gradient(135deg,#f58529,#dd2a7b,#8134af,#1877f2); }

/* ==========================================================================
   GENERIC PLATFORM / MODULE ICON GRADIENTS
   ========================================================================== */
.eco-plat-icon.i-android { background: linear-gradient(135deg,#3ddc84,#16a34a); }
.eco-plat-icon.i-apple { background: linear-gradient(135deg,#94a3b8,#334155); }
.eco-plat-icon.i-flutter { background: linear-gradient(135deg,#54c5f8,#02569b); }
.eco-plat-icon.i-react { background: linear-gradient(135deg,#61dafb,#0e7490); }
.eco-plat-icon.i-pwa { background: linear-gradient(135deg,#a78bfa,#7c3aed); }
.eco-plat-icon.i-gold { background: linear-gradient(135deg,#fbbf24,#d97706); }
.eco-plat-icon.i-green { background: linear-gradient(135deg,#34d399,#059669); }
.eco-plat-icon.i-purple { background: linear-gradient(135deg,#a78bfa,#7c3aed); }
.eco-plat-icon.i-pink { background: linear-gradient(135deg,#f472b6,#db2777); }
.eco-plat-icon.i-red { background: linear-gradient(135deg,#f87171,#dc2626); }
.eco-plat-icon.i-indigo { background: linear-gradient(135deg,#818cf8,#4f46e5); }
.eco-plat-icon.i-slate { background: linear-gradient(135deg,#94a3b8,#475569); }
.eco-plat-icon.i-cyan { background: linear-gradient(135deg,#22d3ee,#0e7490); }
.eco-plat-icon.i-wordpress { background: linear-gradient(135deg,#5aa7d6,#21759b); }
.eco-plat-icon.i-laravel { background: linear-gradient(135deg,#ff6b5b,#ff2d20); }
.eco-plat-icon.i-node { background: linear-gradient(135deg,#5fb95c,#339933); }
.eco-plat-icon.i-python { background: linear-gradient(135deg,#5c9bd4,#3776ab); }
