/* Local Pulse — match 04-local-pulse mock screens */
:root {
  --green: #1d8a3e;
  --orange: #ee6a1a;
}
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: "Plus Jakarta Sans", "Hind Siliguri", system-ui, sans-serif;
  background: #fbf6ef;
  color: #1c1c1c;
  line-height: 1.55;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; height: auto; }
a { color: inherit; text-decoration: none; }
button, select, input, textarea { font: inherit; }
.bn { font-family: "Hind Siliguri", sans-serif; }
html[data-lang="bn"] { font-family: "Hind Siliguri", "Plus Jakarta Sans", system-ui, sans-serif; }
html[data-lang="en"] .i18n-bn { display: none !important; }
html[data-lang="bn"] .i18n-en { display: none !important; }
.hand { font-family: Caveat, "Hind Siliguri", cursive; }
.o { color: #e8621a; }
.g { color: #1b7a3d; }
.wrap { width: min(1180px, calc(100% - 48px)); margin: 0 auto; }

/* Buttons */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  border: 0; border-radius: 12px; font-weight: 700; cursor: pointer;
  padding: 10px 18px;
  font-size: 14.5px;
  line-height: 1.2;
  white-space: nowrap;
  width: max-content;
  max-width: 100%;
  box-sizing: border-box;
  transition: transform .15s ease, box-shadow .15s ease;
}
.btn:hover { transform: translateY(-1px); }
.btn-orange { background: #ee6a1a; color: #fff; }
.btn-orange:hover { background: #d45a10; color: #fff; }
.btn-green { background: #1d8a3e; color: #fff; }
.btn-duo { padding: 12px 18px; min-width: 210px; text-align: left; }
.btn-duo .ico { width: 22px; height: 22px; flex-shrink: 0; }
.btn-duo b { display: block; font-size: 14.5px; line-height: 1.15; }
.btn-duo small { display: block; font-size: 11.5px; font-weight: 500; opacity: .9; }
.hero-btns .btn-green {
  background: #1d8a3e;
  color: #fff;
  border: 0;
}
.hero-btns .btn-green:hover { background: #187536; }
.btn-pill { border-radius: 999px; padding: 12px 22px; font-size: 14px; }
.btn-outline {
  background: #fff; color: #1d8a3e; border: 1.5px solid #1d8a3e;
  border-radius: 999px; padding: 10px 20px;
}
.btn-sm { padding: 9px 16px; font-size: 13px; border-radius: 10px; }
.ico { width: 18px; height: 18px; fill: currentColor; }

/* Header — mock 01 */
.site-header {
  position: sticky; top: 0; z-index: 40;
  background: rgba(251,246,239,.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(28,28,28,.05);
}
.header-inner { display: flex; align-items: center; gap: 24px; min-height: 72px; }
.logo-img { height: 42px; width: auto; }
.main-nav { display: flex; align-items: center; gap: 22px; margin-left: auto; font-size: 14.5px; font-weight: 600; color: #3a3a3a; }
.main-nav a { position: relative; padding: 6px 0; }
.main-nav a.active { color: #ee6a1a; }
.main-nav a.active::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: -2px;
  height: 2px; background: #ee6a1a; border-radius: 2px;
}
.lang-switch {
  display: inline-flex;
  align-items: center;
  flex-shrink: 0;
  padding: 3px;
  border: 1px solid #e6dfd5;
  border-radius: 999px;
  background: #fff;
  cursor: pointer;
  gap: 0;
}
.lang-opt {
  min-width: 38px;
  padding: 5px 9px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 700;
  color: #7a7268;
  line-height: 1;
}
html[data-lang="en"] .lang-opt[data-on="en"],
html[data-lang="bn"] .lang-opt[data-on="bn"] {
  background: #ee6a1a;
  color: #fff;
}
.header-cta { display: flex; gap: 10px; }
.header-cta .btn { gap: 8px; }
.header-cta .btn .ico { width: 15px; height: 15px; }
.nav-toggle { display: none; background: none; border: 0; width: 40px; height: 40px; flex-direction: column; justify-content: center; gap: 5px; }
.nav-toggle span { display: block; height: 2px; background: #1c1c1c; }

/* Hero */
.hero {
  position: relative;
  z-index: 1;
  overflow: visible;
  padding: 48px 0 28px;
  margin-bottom: 0;
  background:
    radial-gradient(900px 420px at 18% 100%, rgba(120,180,120,.16), transparent 62%),
    radial-gradient(700px 380px at 88% 18%, rgba(238,140,60,.16), transparent 55%);
}
.hero-grid { display: grid; grid-template-columns: 1.05fr .95fr; align-items: center; gap: 8px; }
.hero-wash {
  position: absolute;
  left: -14%;
  top: auto;
  bottom: -80px;
  width: min(640px, 54vw);
  max-width: 720px;
  height: 58%;
  object-fit: cover;
  object-position: left 78%;
  opacity: .26;
  mix-blend-mode: multiply;
  pointer-events: none;
  z-index: 0;
  -webkit-mask-image:
    linear-gradient(to bottom, transparent 0%, transparent 18%, #000 55%, #000 100%),
    linear-gradient(to right, transparent 0%, #000 18%, #000 42%, transparent 100%);
  -webkit-mask-composite: source-in;
  mask-image:
    linear-gradient(to bottom, transparent 0%, transparent 18%, #000 55%, #000 100%),
    linear-gradient(to right, transparent 0%, #000 18%, #000 42%, transparent 100%);
  mask-composite: intersect;
}
.hero-grid > div:first-child { position: relative; z-index: 3; }
.hero-eyebrow { color: #4a4a4a; font-size: 15px; margin-bottom: 14px; }
.hero h1 { font-size: clamp(40px, 4.6vw, 58px); line-height: 1.08; letter-spacing: -.03em; font-weight: 800; }
html[data-lang="bn"] .hero h1 { font-size: clamp(32px, 4vw, 46px); letter-spacing: -.02em; }
.hero-sub { max-width: 430px; margin: 18px 0 28px; color: #4d4d4d; font-size: 16.5px; }
.hero-btns { display: flex; flex-wrap: wrap; gap: 12px; margin-bottom: 34px; }
.hero-trust { display: flex; gap: 0; max-width: none; width: max-content; }
.trust-item { display: flex; gap: 10px; align-items: flex-start; flex: 0 0 auto; padding: 0 18px; }
.trust-item:first-child { padding-left: 0; }
.trust-item + .trust-item { border-left: 1px solid #d9d2c8; }
.trust-ico { width: 22px; height: 22px; color: #ee6a1a; flex-shrink: 0; margin-top: 2px; fill: none; stroke: currentColor; }
.trust-item b { display: block; font-size: 13px; white-space: nowrap; }
.trust-item small { display: block; color: #6b6b6b; font-size: 11.5px; white-space: nowrap; }
.hero-art { position: relative; overflow: visible; z-index: 1; }
.hero-art img {
  width: 112%;
  max-width: none;
  margin-left: -4%;
  mix-blend-mode: multiply;
  -webkit-mask-image: radial-gradient(ellipse 72% 78% at 55% 55%, #000 42%, transparent 78%);
  mask-image: radial-gradient(ellipse 72% 78% at 55% 55%, #000 42%, transparent 78%);
}
.hero-hand {
  position: absolute;
  left: -8%;
  top: auto;
  bottom: 30%;
  z-index: 2;
  margin: 0;
  transform: rotate(-12deg);
  transform-origin: left center;
  pointer-events: none;
  line-height: 1.12;
  text-align: left;
  white-space: nowrap;
}
.hero-hand-a,
.hero-hand-b { display: block; font-weight: 700; }
.hero-hand-a {
  color: #e45c18;
  position: relative;
  display: inline-block;
  padding-bottom: 8px;
}
.hero-hand-a::after {
  content: "";
  position: absolute;
  left: 0;
  width: 100%;
  height: 10px;
  bottom: 0;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 200 12' fill='none'%3E%3Cpath d='M3 8.2 C 38 2.5, 72 10.5, 108 6.2 S 168 10, 197 4.8' stroke='%231d8a3e' stroke-width='2.8' stroke-linecap='round'/%3E%3C/svg%3E") no-repeat center / 100% 100%;
}
.hero-hand-b { color: #2a2a2a; }
.hero-hand.i18n-en {
  font-family: Caveat, cursive;
  font-size: 34px;
  letter-spacing: -.01em;
  left: -8%;
  top: auto;
  bottom: 30%;
}
.hero-hand.i18n-bn {
  font-family: Galada, "Hind Siliguri", cursive;
  font-size: 26px;
  left: -6%;
  top: auto;
  bottom: 31%;
}

/* Services */
.section { padding: 25px 0; }
.services {
  position: relative;
  overflow: hidden;
  padding-top: 18px;
}
.svc-gfx {
  position: absolute;
  right: -4%;
  top: 0;
  width: min(620px, 58vw);
  height: 100%;
  color: #c4a078;
  opacity: .11;
  pointer-events: none;
  z-index: 0;
}
.svc-gfx svg { width: 100%; height: 100%; }
.services::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  opacity: .07;
  background-image:
    radial-gradient(circle at 82% 18%, rgba(238, 106, 26, .35), transparent 22%),
    radial-gradient(circle at 94% 72%, rgba(29, 138, 62, .28), transparent 24%),
    linear-gradient(90deg, transparent 70%, rgba(180, 140, 90, .18) 1px, transparent 1px),
    linear-gradient(transparent 70%, rgba(180, 140, 90, .18) 1px, transparent 1px);
  background-size: auto, auto, 32px 32px, 32px 32px;
  background-position: 0 0, 0 0, 72% 0, 72% 0;
}
.services .wrap { position: relative; z-index: 1; }
.svc-header { margin-bottom: 16px; }
.kicker { font-size: 12px; font-weight: 800; letter-spacing: .14em; text-transform: uppercase; }
.kicker-g { color: #1d8a3e; }
.kicker-o { color: #ee6a1a; }
.svc-header h2 { font-size: clamp(32px, 3.4vw, 42px); line-height: 1.12; margin: 8px 0 10px; }
.svc-header h2 .bn { display: block; color: #ee6a1a; font-size: .92em; margin-top: 6px; }
.svc-header p { max-width: 520px; color: #5a5a5a; }
.svc-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; align-items: start; }
.svc-card {
  display: grid; grid-template-columns: 92px 1fr; gap: 14px; align-items: start;
  background: #fff; border: 1px solid #e8e0d6; border-radius: 18px; padding: 16px 16px 14px;
  height: auto;
}
.svc-card--on { border: 1.5px solid #ee6a1a; box-shadow: 0 8px 24px rgba(238,106,26,.08); }
.svc-card-img { width: 92px; height: 92px; border-radius: 16px; overflow: hidden; background: #f3efe8; flex-shrink: 0; }
.svc-card-img picture,
.process-card picture,
.sol-visual picture { display: contents; }
.svc-card-img img { width: 92px; height: 92px; max-width: 92px; max-height: 92px; object-fit: contain; object-position: center; display: block; }
.svc-card-body { display: flex; flex-direction: column; min-width: 0; }
.svc-card h3 { font-size: 18px; line-height: 1.15; }
.svc-card h3 .bn,
.svc-card h3 small { display: block; font-size: 15px; font-weight: 700; color: #222; margin-top: 2px; }
.svc-card p { font-size: 12px; color: #5c5c5c; margin: 6px 0 0; line-height: 1.4; }
.pay { display: flex; flex-wrap: wrap; gap: 6px; margin: 10px 0 0; }
.pay span {
  display: inline-flex; align-items: center; gap: 5px;
  font-size: 11px; font-weight: 700; color: #2a2a2a;
  background: #fff; border: 1px solid #e6dfd5; border-radius: 999px;
  padding: 4px 9px 4px 4px; line-height: 1;
}
.pay .pay-ico { width: 18px; height: 18px; flex-shrink: 0; display: block; overflow: hidden; border-radius: 4px; }
.learn {
  display: flex; align-items: center; justify-content: space-between;
  color: #1d8a3e; font-weight: 700; font-size: 13.5px;
  margin-top: 12px;
}
.learn i {
  width: 28px; height: 28px; border-radius: 50%; border: 0;
  background: #1d8a3e; color: #fff;
  display: grid; place-items: center; font-style: normal;
  flex-shrink: 0;
}
.learn i svg { width: 14px; height: 14px; display: block; }
.svc-bar {
  margin-top: 12px; display: grid; grid-template-columns: repeat(4, 1fr);
  background: #fff; border: 1px solid #efe8de; border-radius: 18px; padding: 7px 6px;
}
.svc-bar > div { display: flex; gap: 10px; align-items: center; padding: 0 12px; min-width: 0; }
.svc-bar > div + div { border-left: 1px solid #e6dfd5; }
.svc-bar > div > div { display: block; padding: 0; }
.svc-bar b { display: block; font-size: 13.5px; white-space: nowrap; }
.svc-bar small { color: #6a6a6a; font-size: 12px; }
.ico-circ { width: 34px; height: 34px; flex-shrink: 0; color: #1d8a3e; }
.ico-circ.is-o { color: #ee6a1a; }

/* Solutions */
.solutions-grid { display: grid; grid-template-columns: .92fr 1.08fr; gap: 28px; align-items: center; }
.solutions-copy h2 { font-size: clamp(36px, 4vw, 52px); line-height: 1.05; letter-spacing: -.03em; margin: 8px 0 16px; }
.solutions-copy > p { max-width: 420px; color: #4f4f4f; }
.sol-bn { color: #1d8a3e !important; font-size: 20px; font-weight: 700; margin: 14px 0 22px; }
.sol-btns { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 22px; }
.sol-btns .btn {
  padding: 13px 22px;
  border-radius: 12px;
  font-size: 14.5px;
  gap: 9px;
}
.sol-btns .btn .ico {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  flex-shrink: 0;
}
.sol-meta { display: flex; gap: 18px; margin-top: 18px; color: #6a6a6a; font-size: 13px; font-weight: 600; }
.sol-visual { position: relative; min-height: 365px; }
.sol-blob {
  position: absolute; right: 0; top: 18px; width: 86%; height: 88%;
  background: #f3d7bc; border-radius: 42% 48% 40% 46%;
}
.sol-visual img {
  position: relative; z-index: 1; width: 100%;
  max-width: none;
  margin-left: 0;
  mix-blend-mode: multiply;
}
.sol-outcomes { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; margin-top: 36px; }
.outcome {
  display: grid; grid-template-columns: 56px 1fr; gap: 12px; align-items: start;
  background: #fff; border: 1px solid #efe6db; border-radius: 18px; padding: 20px 18px;
}
.outcome .dot {
  width: 52px; height: 52px; border-radius: 50%; background: #fde8d6;
  display: grid; place-items: center; color: #ee6a1a;
  margin-right: 0; flex-shrink: 0;
}
.outcome .dot svg { width: 24px; height: 24px; }
.outcome h4 { font-size: 16px; margin-bottom: 6px; }
.outcome p { font-size: 13.5px; color: #555; }

/* AI studio */
.ai {
  position: relative;
  z-index: 2;
  isolation: isolate;
  overflow: hidden;
  padding: 48px 0 72px;
  margin-bottom: 0;
  scroll-margin-top: 78px;
  background:
    radial-gradient(640px 380px at 92% 30%, rgba(238, 106, 26, .18), transparent 58%),
    radial-gradient(480px 300px at 6% 18%, rgba(70, 150, 190, .12), transparent 55%),
    radial-gradient(560px 240px at 48% 100%, rgba(29, 138, 62, .1), transparent 62%),
    #f4eee4;
}
.ai-gfx {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  opacity: .28;
  background-image:
    radial-gradient(circle at 14% 24%, #ee6a1a 0 2px, transparent 3px),
    radial-gradient(circle at 28% 62%, #1d8a3e 0 2px, transparent 3px),
    radial-gradient(circle at 72% 18%, #ee6a1a 0 1.6px, transparent 2.6px),
    radial-gradient(circle at 88% 58%, #1d8a3e 0 2px, transparent 3px),
    radial-gradient(circle at 46% 36%, #d98a12 0 1.5px, transparent 2.5px),
    linear-gradient(115deg, transparent 48%, rgba(238, 106, 26, .18) 48.5%, transparent 49.2%),
    linear-gradient(28deg, transparent 62%, rgba(29, 138, 62, .16) 62.6%, transparent 63.4%),
    linear-gradient(90deg, transparent 24px, rgba(160, 120, 80, .16) 25px, transparent 26px),
    linear-gradient(transparent 24px, rgba(160, 120, 80, .16) 25px, transparent 26px);
  background-size: 180px 180px, 220px 220px, 160px 160px, 200px 200px, 140px 140px, 100% 100%, 100% 100%, 42px 42px, 42px 42px;
  background-position: 0 0, 40px 30px, 10px 8px, 80px 40px, 20px 60px, 0 0, 0 0, 62% 0, 62% 0;
  -webkit-mask-image: radial-gradient(ellipse 80% 70% at 78% 38%, #000 20%, rgba(0,0,0,.45) 55%, transparent 82%),
    linear-gradient(#000 0%, #000 70%, transparent 100%);
  mask-image: radial-gradient(ellipse 80% 70% at 78% 38%, #000 20%, rgba(0,0,0,.45) 55%, transparent 82%),
    linear-gradient(#000 0%, #000 70%, transparent 100%);
}
.ai-robot-stage {
  position: absolute;
  right: 0;
  top: -8%;
  width: min(560px, 50%);
  z-index: 0;
  pointer-events: none;
  /* Left edge only — mix-blend stays on the img, not this wrap */
  -webkit-mask-image: linear-gradient(to right, transparent 0px, #000 88px);
  -webkit-mask-size: 100% 100%;
  -webkit-mask-repeat: no-repeat;
  mask-image: linear-gradient(to right, transparent 0px, #000 88px);
  mask-size: 100% 100%;
  mask-repeat: no-repeat;
}
.ai-robot {
  display: block;
  width: 100%;
  height: auto;
  border: 0;
  outline: 0;
  background: none;
  box-shadow: none;
  mix-blend-mode: multiply;
}
.ai-robot picture { display: contents; }
.ai-blend {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 88px;
  pointer-events: none;
  z-index: 2;
  background: linear-gradient(to bottom, transparent, #fbf6ef);
}
.ai .wrap { position: relative; overflow: visible; }
.ai-head {
  margin-bottom: 22px;
  position: relative;
  z-index: 1;
}
.ai-head h2 { font-size: clamp(30px, 3.4vw, 44px); line-height: 1.12; letter-spacing: -.03em; margin: 8px 0 10px; }
.ai-head p { max-width: 520px; color: #555; }
.ai-lanes {
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  gap: 18px;
  align-items: start;
  position: relative;
  z-index: 1;
}
.ai-lane-title {
  font-size: 20px;
  letter-spacing: -.02em;
  margin: 4px 0 12px;
}
.ai-market-stack { position: relative; }
.ai-cta {
  position: absolute;
  z-index: 4;
  left: auto;
  right: 8px;
  top: 6px;
  padding: 12px 20px;
  transform: rotate(-8deg);
  box-shadow: 0 14px 28px rgba(238, 106, 26, .28);
  animation: aiCtaFloat 3.2s ease-in-out infinite;
}
.ai-cta .ico { fill: none; stroke: currentColor; width: 18px; height: 18px; }
.ai-cta:hover { transform: rotate(-5deg) translateY(-2px); animation-play-state: paused; }
@keyframes aiCtaFloat {
  0%, 100% { transform: rotate(-8deg) translateY(0); }
  50% { transform: rotate(-5deg) translateY(-9px); }
}
.ai-highlights { display: grid; gap: 10px; }
.ai-highlight,
.ai-card,
.ai-steps > div {
  background: rgba(251, 246, 239, .48);
  border: 1px solid rgba(255, 252, 247, .62);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,.55),
    0 8px 22px rgba(80, 50, 20, .05);
  -webkit-backdrop-filter: blur(16px) saturate(1.15);
  backdrop-filter: blur(16px) saturate(1.15);
}
.ai-highlight {
  display: grid;
  grid-template-columns: 92px minmax(0, 1fr);
  gap: 12px;
  align-items: start;
  border-radius: 16px;
  padding: 12px 14px;
  transition: transform .18s ease, border-color .18s ease, background .18s ease;
}
.ai-highlight:hover,
.ai-card:hover,
.ai-steps > div:hover {
  transform: translateY(-2px);
  border-color: rgba(238, 106, 26, .22);
  background: rgba(255, 250, 242, .58);
}
.ai-metric b {
  display: block;
  font-size: 26px;
  line-height: 1;
  letter-spacing: -.03em;
  color: #ee6a1a;
}
.ai-highlight:nth-child(even) .ai-metric b { color: #1d8a3e; }
.ai-metric small {
  display: block;
  margin-top: 5px;
  font-size: 10.5px;
  font-weight: 800;
  letter-spacing: .04em;
  text-transform: uppercase;
  color: #8a7a68;
  line-height: 1.25;
}
.ai-highlight h4 { font-size: 15px; margin: 0 0 4px; }
.ai-highlight p { margin: 0; font-size: 13px; color: #555; line-height: 1.45; }
.ai-grid { display: grid; grid-template-columns: 1fr; gap: 12px; }
.ai-card {
  border-radius: 18px;
  padding: 18px 16px 16px;
  transition: transform .18s ease, border-color .18s ease, background .18s ease;
}
.ai-ico {
  width: 42px; height: 42px; border-radius: 12px;
  display: grid; place-items: center;
  background: rgba(255, 244, 232, .72);
  color: #ee6a1a;
  margin-bottom: 12px;
}
.ai-ico svg { width: 22px; height: 22px; }
.ai-card:nth-child(even) .ai-ico { background: rgba(234, 246, 238, .72); color: #1d8a3e; }
.ai-card h4 { font-size: 16px; margin-bottom: 6px; }
.ai-card p { font-size: 13.5px; color: #555; line-height: 1.45; margin: 0; }
.ai-empty { font-size: 13px; color: #888; }
.ai-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: 20px;
  position: relative;
  z-index: 2;
}
.ai-steps > div {
  display: flex; align-items: flex-start; gap: 12px;
  border-radius: 18px;
  padding: 12px 14px;
  transition: transform .18s ease, border-color .18s ease, background .18s ease;
}
.ai-steps b {
  width: 36px; height: 36px; border-radius: 50%;
  display: grid; place-items: center;
  background: #ee6a1a; color: #fff;
  flex-shrink: 0;
}
.ai-steps b svg { width: 16px; height: 16px; fill: none; stroke: currentColor; }
.ai-steps div:nth-child(2) b { background: #1d8a3e; }
.ai-steps div:nth-child(3) b { background: #d98a12; }
.ai-steps strong { display: block; font-size: 14px; font-weight: 750; line-height: 1.25; }
.ai-steps small { display: block; margin-top: 3px; font-size: 12.5px; font-weight: 500; color: #666; line-height: 1.4; }

/* Work + About — shared bleed; AI grid continues into Work, wash stays in Work */
.work-about {
  position: relative;
  background: #fbf6ef;
  overflow: visible;
}
.blend-wash {
  position: absolute;
  pointer-events: none;
  mix-blend-mode: multiply;
  z-index: 0;
  width: max(420px, calc((100% - 1180px) / 2 + 360px));
  max-width: 920px;
}
.blend-wash--l {
  left: 0;
  top: 140px;
  height: 78%;
  object-fit: cover;
  object-position: 18% 42%;
  opacity: .34;
  -webkit-mask-image:
    linear-gradient(to bottom, transparent 0%, #000 22%, #000 78%, transparent 100%),
    linear-gradient(to right, transparent 0%, #000 16%, #000 50%, transparent 100%);
  -webkit-mask-composite: source-in;
  mask-image:
    linear-gradient(to bottom, transparent 0%, #000 22%, #000 78%, transparent 100%),
    linear-gradient(to right, transparent 0%, #000 16%, #000 50%, transparent 100%);
  mask-composite: intersect;
}
.work-about .ai {
  z-index: auto;
  isolation: auto;
  overflow: visible;
  background:
    radial-gradient(640px 380px at 92% 30%, rgba(238, 106, 26, .11), transparent 62%),
    radial-gradient(480px 300px at 6% 18%, rgba(70, 150, 190, .12), transparent 55%),
    linear-gradient(to bottom, transparent 0, transparent 36px, #f4eee4 120px, #f4eee4 calc(100% - 140px), #fbf6ef 100%);
}
.work-about .ai::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 100%;
  height: 160px;
  pointer-events: none;
  z-index: 0;
  background: linear-gradient(to bottom, #fbf6ef 0%, transparent 100%);
}
.work-about .ai::after {
  content: "";
  position: absolute;
  left: 16%;
  width: 68%;
  bottom: -90px;
  height: 180px;
  pointer-events: none;
  z-index: 0;
  background: linear-gradient(to bottom, transparent 0%, #fbf6ef 38%, #fbf6ef 100%);
  -webkit-mask-image: linear-gradient(to right, transparent 0%, #000 20%, #000 80%, transparent 100%);
  mask-image: linear-gradient(to right, transparent 0%, #000 20%, #000 80%, transparent 100%);
}
.work-about .ai-blend {
  display: none;
}
.work-about .ai-gfx {
  bottom: -260px;
  -webkit-mask-image:
    radial-gradient(ellipse 80% 70% at 78% 38%, #000 20%, rgba(0,0,0,.45) 55%, transparent 82%),
    linear-gradient(to bottom, transparent 0, #000 88px, #000 calc(100% - 320px), rgba(0,0,0,.28) calc(100% - 200px), transparent 100%);
  mask-image:
    radial-gradient(ellipse 80% 70% at 78% 38%, #000 20%, rgba(0,0,0,.45) 55%, transparent 82%),
    linear-gradient(to bottom, transparent 0, #000 88px, #000 calc(100% - 320px), rgba(0,0,0,.28) calc(100% - 200px), transparent 100%);
}
.work-about:has(.ai) .work {
  background: linear-gradient(to bottom, transparent 0%, transparent 70px, #fbf6ef 240px);
}
.work-about:has(.ai) .work-maps {
  inset: -10px -72px auto -88px;
}
.blend-wash--r {
  right: 0; left: auto;
  top: auto;
  bottom: 8%;
  transform: scaleX(-1);
  opacity: .32;
  width: max(400px, calc((100% - 1180px) / 2 + 400px));
  -webkit-mask-image: linear-gradient(to top, transparent 0%, #000 28%, #000 72%, transparent 100%);
  mask-image: linear-gradient(to top, transparent 0%, #000 28%, #000 72%, transparent 100%);
}
.blend-wash--about {
  right: -4%; left: auto; top: auto; bottom: -6%;
  transform: scaleX(-1);
  opacity: .22;
  width: max(520px, calc((100% - 1180px) / 2 + 440px));
  -webkit-mask-image: linear-gradient(to top left, #000 30%, transparent 82%);
  mask-image: linear-gradient(to top left, #000 30%, transparent 82%);
}

/* Work */
.work {
  background: transparent;
  position: relative;
  overflow: visible;
  padding: 40px 0 36px;
}
.work-wrap { position: relative; z-index: 1; }
.work-maps {
  position: absolute;
  inset: -48px -72px auto -88px;
  height: calc(100% + 48px);
  pointer-events: none;
  z-index: 0;
}
.map-mark { position: absolute; }
.map-mark .work-map {
  width: 100%;
  display: block;
  mix-blend-mode: multiply;
  opacity: .34;
  filter: saturate(.4) contrast(1.04);
}
.map-pin {
  position: absolute;
  width: 22px;
  height: 30px;
  z-index: 1;
  filter: drop-shadow(0 2px 4px rgba(80, 32, 0, .28));
  pointer-events: none;
}
.map-mark--eu {
  left: -28px;
  top: -88px;
  width: 310px;
}
.map-mark--eu .map-pin { left: 20%; top: 48%; transform: translate(-50%, -90%); }
.map-mark--me {
  left: 38%;
  top: -18px;
  width: 268px;
  transform: rotate(-16deg);
}
.map-mark--me .map-pin {
  left: 56%; top: 46%;
  transform: translate(-50%, -90%) rotate(16deg);
}
.map-mark--bd {
  right: 48px;
  top: -28px;
  width: 132px;
}
.map-mark--bd .map-pin { left: 52%; top: 42%; transform: translate(-50%, -90%); width: 20px; height: 27px; }
.map-mark--cn {
  right: -24px;
  top: auto;
  bottom: -4%;
  width: 180px;
  transform: rotate(7deg);
}
.map-mark--cn .map-pin {
  left: 58%; top: 44%;
  transform: translate(-50%, -90%) rotate(-7deg);
  width: 18px; height: 25px;
}
.work-head {
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  gap: 28px;
  margin-bottom: 22px;
  align-items: end;
  position: relative;
  z-index: 1;
}
.work-head > div { position: relative; z-index: 1; }
.work-head h2 { font-size: clamp(28px, 3.2vw, 40px); margin: 8px 0 6px; letter-spacing: -.03em; }
.work-script {
  font-size: 20px; color: #2a2a2a; position: relative; display: inline-block;
  margin-top: 4px; font-weight: 500;
}
.work-script::after {
  content: ""; position: absolute; left: 0; width: 72%; bottom: -5px; height: 5px;
  background: #ee6a1a; border-radius: 8px; opacity: .85;
}
.work-head p.work-script { text-align: left; margin-left: 0; max-width: none; }
.work-head > div:last-child > p { color: #5a5a5a; font-size: 14.5px; max-width: 360px; margin-left: auto; text-align: right; }
.pills { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 14px; justify-content: flex-end; }
.pill {
  background: #fff; border-radius: 999px; padding: 7px 14px; font-size: 13px; font-weight: 700;
  box-shadow: 0 2px 8px rgba(0,0,0,.04); display: inline-flex; align-items: center; gap: 7px;
}
.dot-o, .dot-g {
  width: 7px; height: 7px; border-radius: 50%; display: inline-block;
}
.dot-o { background: #ee6a1a; }
.dot-g { background: #1d8a3e; }
.work-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; position: relative; z-index: 2; }
.work-card { background: #fff; border-radius: 16px; overflow: hidden; border: 1px solid #efe8de; display: flex; flex-direction: column; }
.work-card-main { color: inherit; display: block; }
.work-thumb { aspect-ratio: 1.9/1; overflow: hidden; background: #eee; }
.work-thumb img { width: 100%; height: 100%; object-fit: cover; }
.work-meta { display: flex; justify-content: space-between; align-items: center; gap: 10px; min-height: 52px; padding: 8px 14px; }
.work-meta b { display: block; font-size: 13.5px; }
.work-meta small { display: block; color: #6a6a6a; font-size: 11px; line-height: 1.1; }
.work-locs {
  display: flex; flex-wrap: wrap; justify-content: flex-end; gap: 6px 10px;
  max-width: 55%;
}
.work-locs .loc {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 12px; font-weight: 700; color: #5a5a5a; white-space: nowrap;
}
.work-show-loc { margin-top: 10px; max-width: none; justify-content: flex-start; }
.work-show-loc .loc { font-size: 14px; }
.work-card-links {
  display: flex; flex-wrap: wrap; gap: 8px 14px;
  padding: 0 14px 12px;
}
.work-card-links a {
  font-size: 12.5px; font-weight: 700; color: #ee6a1a;
  text-decoration: underline; text-underline-offset: 3px;
}
.work-card-links a:hover { color: #d45a10; }
.work-live {
  display: inline-flex; align-items: center; gap: 7px;
  margin: 0 14px 12px; width: max-content;
  padding: 8px 14px; border-radius: 999px;
  background: #1d8a3e; color: #fff; font-size: 12.5px; font-weight: 700;
}
.work-live .ico { width: 15px; height: 15px; }
.work-live:hover { background: #187536; color: #fff; }
.work-show-links { display: flex; flex-wrap: wrap; gap: 10px 16px; margin-top: 16px; }
.work-show-links > a:not(.work-live) {
  font-size: 15px; font-weight: 700; color: #ee6a1a;
  text-decoration: underline; text-underline-offset: 3px;
}
.work-show-links .work-live { margin: 0; }
.work-cta { display: flex; justify-content: center; flex-wrap: wrap; gap: 14px; margin-top: 22px; position: relative; z-index: 2; }
.work-cta .btn {
  min-width: 220px;
  padding: 13px 26px;
  border-radius: 999px;
  font-size: 15px;
}
.work-cta .btn .ico {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
}

/* About */
.about {
  position: relative;
  overflow: visible;
  background: transparent;
  padding: 40px 0 88px;
}
.about-bg {
  position: absolute;
  right: -8%;
  bottom: -3%;
  top: auto;
  width: min(980px, 86%);
  height: 70%;
  object-fit: contain;
  object-position: 86% 100%;
  mix-blend-mode: multiply;
  opacity: .5;
  pointer-events: none;
  z-index: 0;
  -webkit-mask-image: linear-gradient(to top, #000 48%, rgba(0,0,0,.4) 78%, transparent 100%);
  mask-image: linear-gradient(to top, #000 48%, rgba(0,0,0,.4) 78%, transparent 100%);
}
.about-grid {
  display: grid; grid-template-columns: .92fr 1.08fr; gap: 8px 12px;
  align-items: start; position: relative;
}
.about-copy { position: relative; z-index: 2; }
.about-copy h1, .about-copy h2 { font-size: clamp(34px, 3.8vw, 48px); line-height: 1.08; letter-spacing: -.03em; }
.about-story-label {
  max-width: 500px;
  margin: 32px 0 8px;
  padding: 20px 0 18px;
}
.about-story-label .kicker { margin: 0; }
.about-story-label::after {
  content: "";
  display: block;
  height: 1px;
  margin-top: 16px;
  background: linear-gradient(90deg,
    transparent 0%,
    rgba(176, 140, 108, .32) 12%,
    rgba(176, 140, 108, .4) 36%,
    rgba(176, 140, 108, .14) 70%,
    transparent 100%);
}
.story { max-width: 500px; color: #4f4f4f; margin: 14px 0 22px; font-size: 15px; }
.about-feats {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 6px;
  max-width: 380px;
  margin: 0 0 18px;
  padding: 0;
}
.about-feats li {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 4px 0;
}
.about-feats li::before {
  content: "";
  width: 8px;
  height: 8px;
  flex: 0 0 auto;
  border-radius: 50%;
  background: #ee6a1a;
}
.about-feats small {
  display: block;
  font-size: 14px;
  font-weight: 650;
  color: #2a2a2a;
  line-height: 1.3;
}
.about-btns {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  align-items: center;
  gap: 10px;
  margin-bottom: 4px;
}
.about-btns .btn {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 10px 16px;
  border-radius: 999px;
  white-space: nowrap;
  flex: 0 0 auto;
}
.about-btns .btn .ico { width: 18px; height: 18px; fill: none; stroke: currentColor; }
.dot { width: 8px; height: 8px; border-radius: 50%; background: #22c55e; display: inline-block; margin-right: 6px; }
.about-visual { position: relative; min-height: 520px; z-index: 1; margin-top: 0; }
.about-visual picture { display: contents; }
.about-collage-img {
  position: relative;
  z-index: 1;
  width: 120%;
  max-width: none;
  margin-left: -8%;
  margin-top: 0;
  display: block;
  pointer-events: none;
}
/* Process */
.stories-process {
  position: relative;
  background: #fbf6ef;
  overflow-x: clip;
  z-index: 2;
}
.stories-process::after {
  content: "";
  position: absolute;
  left: -8%;
  bottom: 0;
  width: min(560px, 52vw);
  height: 160px;
  background: url("../assets/bg/wash-warm.webp") left bottom / cover no-repeat;
  opacity: .18;
  mix-blend-mode: multiply;
  pointer-events: none;
  z-index: 0;
  -webkit-mask-image: linear-gradient(to bottom, transparent 0%, #000 35%, transparent 100%);
  mask-image: linear-gradient(to bottom, transparent 0%, #000 35%, transparent 100%);
}
.process { position: relative; z-index: 1; padding: 48px 0 10px; scroll-margin-top: 78px; background: transparent; }
.process-kicker { text-align: center; }
.process h2 {
  text-align: center;
  font-size: clamp(32px, 3.6vw, 44px);
  letter-spacing: -.03em;
  margin: 8px 0 0;
  line-height: 1.15;
}
.process-sub {
  text-align: center;
  color: #5a5a5a;
  font-size: 16px;
  margin: 10px 0 28px;
  font-weight: 500;
}
html[data-lang="bn"] .process-sub {
  font-family: "Hind Siliguri", sans-serif;
  color: #ee6a1a;
  font-size: clamp(17px, 2vw, 20px);
  font-weight: 700;
}
.process-row {
  display: grid;
  grid-template-columns: 1fr 22px 1fr 22px 1fr 22px 1fr;
  gap: 8px;
  align-items: stretch;
}
.process-card {
  background: #fffdf8;
  border: 1px solid #efe4d6;
  border-radius: 16px;
  padding: 8px 12px 16px;
  text-align: center;
}
.process-card img {
  width: 100%;
  height: 148px;
  margin: 0 auto 6px;
  object-fit: contain;
}
.process-card h3 {
  font-size: 18px;
  font-weight: 800;
  margin: 0 0 6px;
  color: #ee6a1a;
}
html[data-lang="bn"] .process-card h3 {
  font-family: "Hind Siliguri", sans-serif;
  font-size: 20px;
}
.process-card p { font-size: 13px; color: #5a5a5a; line-height: 1.45; }
.dash {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding-top: 62px;
}
.dash::before {
  content: "";
  width: 18px;
  border-top: 2.5px dotted #ee6a1a;
}
.dash::after {
  content: "";
  width: 0; height: 0;
  border: 5px solid transparent;
  border-left-color: #ee6a1a;
  margin-left: 1px;
}
.cta-book {
  margin-top: 22px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 16px 18px;
  align-items: center;
  background: #fff8f1;
  border: 1.5px solid #f0d4b8;
  border-radius: 18px;
  padding: 18px 22px;
}
.cal {
  width: 64px; height: 64px; border-radius: 50%;
  background: #ee6a1a; color: #fff;
  display: grid; place-items: center; flex-shrink: 0;
}
.cal svg { width: 30px; height: 30px; }
.cta-kicker { font-size: 13px; color: #6a6a6a; margin-bottom: 2px; }
.cta-book h3 { font-size: 24px; letter-spacing: -.02em; line-height: 1.2; }
.cta-book small { display: block; color: #7a6a5a; margin-top: 4px; font-size: 13px; }
.cta-book-actions { text-align: right; }
.cta-book .btn {
  border-radius: 999px; padding: 13px 22px; min-width: 250px;
}
.cta-note { font-size: 12px; color: #8a7a6a; margin-top: 8px; text-align: right; }
.cta-wa {
  margin-top: 24px;
  margin-bottom: 0;
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
  background: transparent;
  border: 0;
  border-radius: 0;
  padding: 4px 4px 0;
  box-shadow: none;
}
.cta-wa-left { display: flex; gap: 12px; align-items: center; }
.cta-wa-left b { display: block; font-size: 15px; }
.cta-wa-left p { font-size: 13.5px; color: #555; }
.wa-dot {
  width: 46px; height: 46px; border-radius: 50%;
  background: #25d366; color: #fff;
  display: grid; place-items: center; flex-shrink: 0;
}
.wa-dot svg { width: 24px; height: 24px; fill: #fff; }
.cta-wa .btn-outline { display: inline-flex; gap: 8px; padding: 10px 18px; }

/* Proof */
.proof {
  position: relative;
  z-index: 2;
  overflow: hidden;
  padding: 23px 0 28px;
  background:
    radial-gradient(circle at 11% 48%, rgba(246, 185, 104, .12), transparent 28%),
    radial-gradient(circle at 88% 67%, rgba(246, 185, 104, .11), transparent 27%);
  margin-bottom: 0;
}
.proof-title { position: relative; width: max-content; max-width: 100%; margin: 0 auto; text-align: center; }
.proof-title h2 {
  color: #101010;
  font-size: clamp(38px, 3.5vw, 50px);
  line-height: 1.05;
  letter-spacing: -.035em;
  font-weight: 800;
}
html[data-lang="bn"] .proof-title h2 {
  font-family: "Hind Siliguri", sans-serif;
}
.proof-title .line {
  width: 66px;
  height: 2px;
  margin: -2px auto 12px;
  border-radius: 4px;
  background: #ee7915;
}
.proof-title .proof-intro { color: #636363; font-size: 15px; margin-bottom: 26px; }
.proof-star { position: absolute; z-index: 1; line-height: 1; }
.proof-star--green-left { left: -28px; top: 41px; color: #22a342; font-size: 25px; transform: rotate(-13deg); }
.proof-star--green-right { right: 15px; top: -14px; color: #22a342; font-size: 22px; transform: rotate(9deg); }
.proof-star--orange-big { right: -24px; top: 18px; color: #f18409; font-size: 29px; transform: rotate(10deg); }
.proof-star--orange-small { right: -3px; top: 56px; color: #f18409; font-size: 17px; transform: rotate(-8deg); }
.proof-rays {
  position: absolute;
  left: -58px;
  top: 10px;
  width: 30px;
  height: 32px;
  border-top: 2px solid #f18409;
  transform: rotate(28deg);
}
.proof-rays::before,
.proof-rays::after { content: ""; position: absolute; left: 0; width: 15px; height: 2px; background: #f18409; }
.proof-rays::before { top: 12px; transform: rotate(-22deg); }
.proof-rays::after { top: 26px; transform: rotate(-42deg); }
.proof-slider {
  position: relative;
  width: min(920px, 100%);
  margin: 0 auto;
  padding: 0 46px;
}
.proof-viewport {
  overflow: hidden;
  overscroll-behavior: none;
  touch-action: pan-y;
}
.proof-track {
  display: flex;
  align-items: stretch;
  gap: 16px;
  width: max-content;
  will-change: transform;
}
.proof-card {
  position: relative;
  box-sizing: border-box;
  flex: 0 0 auto;
  display: flex;
  flex-direction: column;
  min-height: 268px;
  overflow: hidden;
  padding: 40px 18px 16px;
  border: 1px solid #efe0cd;
  border-radius: 20px;
  background: rgba(255, 253, 249, .86);
  box-shadow: 0 10px 18px rgba(142, 94, 38, .11);
}
.proof-nav {
  position: absolute;
  top: 46%;
  z-index: 2;
  width: 40px;
  height: 40px;
  border: 1px solid #eadfce;
  border-radius: 50%;
  background: #fff;
  color: #1d8a3e;
  cursor: pointer;
  display: grid;
  place-items: center;
  box-shadow: 0 6px 16px rgba(80, 50, 20, .1);
}
.proof-nav svg { width: 18px; height: 18px; }
.proof-nav--prev { left: 0; }
.proof-nav--next { right: 0; }
.proof-nav:hover { background: #1d8a3e; color: #fff; border-color: #1d8a3e; }
.q {
  position: absolute;
  left: 25px;
  top: 17px;
  color: #328843;
  font-family: Georgia, serif;
  font-size: 52px;
  font-weight: 700;
  line-height: .8;
  transform: rotate(4deg);
}
.proof-card .proof-quote {
  flex: 1 1 auto;
  min-height: 88px;
  margin: 0;
  color: #1f1f1f;
  font-size: 16px;
  line-height: 1.4;
  text-align: center;
}
.proof-quote span { color: #f06f13; font-weight: 700; }
.proof-more {
  display: inline;
  border: 0;
  padding: 0;
  margin: 0;
  background: none;
  color: #8a8a8a;
  font: inherit;
  font-size: 13px;
  font-weight: 650;
  cursor: pointer;
  text-decoration: underline;
  text-underline-offset: 2px;
}
.proof-more:hover { color: #5f5f5f; }
html[data-lang="bn"] .proof-more { font-family: "Hind Siliguri", sans-serif; }
.proof-smile {
  position: absolute;
  right: 16px;
  top: 18px;
  width: 28px;
  height: 28px;
  color: #209d45;
  fill: none;
  stroke: currentColor;
  transform: rotate(8deg);
  pointer-events: none;
  z-index: 1;
}
.proof-foot {
  position: relative;
  margin-top: 0;
  height: auto;
  display: flex;
  align-items: center;
  pointer-events: none;
}
.who {
  display: flex;
  align-items: center;
  gap: 11px;
  min-width: 0;
  width: 100%;
}
.who-avatar {
  width: 74px;
  height: 74px;
  flex: 0 0 74px;
  border-radius: 50%;
  overflow: hidden;
  border: 2px solid rgba(246, 176, 57, .48);
  background: #f7ca74;
  box-shadow: 0 0 0 3px rgba(246, 176, 57, .18);
}
.who-avatar picture { display: contents; }
.who .who-avatar img {
  width: 100%;
  height: 100%;
  max-width: none;
  flex: none;
  object-fit: cover;
  object-position: center 18%;
  border: 0;
  border-radius: 0;
  background: transparent;
}
.who-copy {
  flex: 1 1 auto;
  min-width: 0;
}
.who b {
  display: block;
  color: #1d1d1d;
  font-size: 14px;
  line-height: 1.2;
}
.who small {
  display: block;
  margin-top: 3px;
  color: #454545;
  font-size: 11.5px;
  line-height: 1.38;
}
.stars {
  flex: 0 0 auto;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 8px 0 14px;
  color: #ef7214;
  font-size: 15px;
  letter-spacing: 2px;
  white-space: nowrap;
  line-height: 1;
}
.stars span { color: #ef7214; }
.stars i { color: #2a8b3f; font-style: normal; }
.proof-bar {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  width: min(900px, 100%);
  margin-left: auto;
  margin-right: auto;
  margin-top: 32px;
  margin-bottom: 8px;
  padding: 14px 9px;
  border: 1px solid #ebdece;
  border-radius: 18px;
  background: rgba(255, 255, 255, .82);
  box-shadow: 0 8px 16px rgba(142, 94, 38, .1);
  position: relative;
  z-index: 3;
}
.proof-benefit {
  position: relative;
  display: grid;
  grid-template-columns: 54px minmax(0, 1fr);
  gap: 13px;
  align-items: center;
  min-height: 61px;
  padding: 0 20px;
}
.proof-benefit + .proof-benefit { border-left: 1px solid #e6ddd1; }
.proof-benefit-icon {
  display: grid;
  place-items: center;
  width: 49px;
  height: 49px;
  border-radius: 50%;
  color: #fff;
}
.proof-benefit-icon svg { width: 34px; height: 34px; fill: currentColor; }
.proof-benefit-icon--green { background: #24a947; }
.proof-benefit-icon--orange { background: #f4860b; }
.proof-benefit-icon--orange svg { width: 31px; height: 31px; fill: none; }
.proof-benefit b { display: block; color: #1d9b42; font-size: 14px; line-height: 1.2; }
.proof-benefit:nth-child(even) b { color: #ef7214; }
.proof-benefit small { display: block; margin-top: 4px; color: #515151; font-size: 11.5px; line-height: 1.35; }
.benefit-rays { position: absolute; right: 11px; top: -7px; width: 18px; height: 22px; border-left: 2px solid currentColor; transform: rotate(20deg); }
.benefit-rays::before,
.benefit-rays::after { content: ""; position: absolute; left: 5px; width: 11px; height: 2px; background: currentColor; }
.benefit-rays::before { top: 4px; transform: rotate(-21deg); }
.benefit-rays::after { top: 14px; transform: rotate(4deg); }
.benefit-rays--green { color: #25a44a; }
.benefit-rays--orange { color: #f4860b; }

/* Hero + Partners + Services — one green wash from hero into brands and services */
.hero-brands-services {
  position: relative;
  background: #fbf6ef;
  overflow: visible;
}
.hero-brands-services::before {
  content: "";
  position: absolute;
  left: 0;
  top: 16%;
  width: min(680px, 52vw);
  height: 84%;
  background:
    radial-gradient(900px 700px at 14% 22%, rgba(120, 180, 120, .08), transparent 72%),
    radial-gradient(640px 520px at 12% 42%, rgba(29, 138, 62, .03), transparent 74%);
  pointer-events: none;
  z-index: 0;
  -webkit-mask-image:
    linear-gradient(to bottom, transparent 0%, #000 16%, #000 88%, transparent 100%),
    linear-gradient(to right, transparent 0%, #000 20%, #000 48%, transparent 90%);
  -webkit-mask-composite: source-in;
  mask-image:
    linear-gradient(to bottom, transparent 0%, #000 16%, #000 88%, transparent 100%),
    linear-gradient(to right, transparent 0%, #000 20%, #000 48%, transparent 90%);
  mask-composite: intersect;
}
.blend-wash--hbs {
  left: 0;
  top: 16%;
  height: 84%;
  object-fit: cover;
  object-position: 24% 40%;
  opacity: .16;
  filter: saturate(.58);
  width: max(480px, calc((100% - 1180px) / 2 + 420px));
  max-width: 820px;
  -webkit-mask-image:
    linear-gradient(to bottom, transparent 0%, #000 16%, #000 88%, transparent 100%),
    linear-gradient(to right, transparent 0%, #000 20%, #000 46%, transparent 92%);
  -webkit-mask-composite: source-in;
  mask-image:
    linear-gradient(to bottom, transparent 0%, #000 16%, #000 88%, transparent 100%),
    linear-gradient(to right, transparent 0%, #000 20%, #000 46%, transparent 92%);
  mask-composite: intersect;
}
.hero-brands-services .hero-wash {
  display: none;
}
.hero-brands-services .hero {
  z-index: auto;
  background: radial-gradient(700px 380px at 88% 18%, rgba(238, 140, 60, .16), transparent 55%);
}
.hero-brands-services .trust-band {
  background: transparent;
  overflow: visible;
  z-index: 1;
  isolation: auto;
}
.hero-brands-services .services {
  overflow: visible;
  background: transparent;
}

/* Partners — compact brand slider, sits under hero */
.trust-band {
  position: relative;
  z-index: 2;
  isolation: isolate;
  overflow: clip;
  padding: 36px 0 28px;
  scroll-margin-top: 72px;
  background: #fbf6ef;
}
.partners-wash {
  display: none;
}
.partners-sketch {
  position: absolute;
  right: -6%;
  top: 42%;
  width: min(380px, 34vw);
  opacity: .1;
  mix-blend-mode: multiply;
  pointer-events: none;
  z-index: 0;
  -webkit-mask-image: linear-gradient(to left, #000 30%, transparent 100%);
  mask-image: linear-gradient(to left, #000 30%, transparent 100%);
}
.trust-band .wrap { position: relative; z-index: 1; }
.partners-head { text-align: left; margin-bottom: 16px; }
.partners-head h2 { font-size: clamp(26px, 2.8vw, 34px); margin: 8px 0 8px; }
.partners-head p { color: #666; font-size: 15px; max-width: 560px; margin: 0; }
.partner-slider { position: relative; padding: 0 38px; }
.partner-viewport {
  overflow: clip;
  overscroll-behavior: none;
  touch-action: pan-y;
  padding: 6px 2px 12px;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 16px, #000 calc(100% - 22px), transparent);
  mask-image: linear-gradient(90deg, transparent, #000 16px, #000 calc(100% - 22px), transparent);
}
.partner-track {
  display: flex;
  gap: 12px;
  width: max-content;
}
.partner-card {
  flex: 0 0 208px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 6px;
  padding: 10px 10px 12px;
  background: #fffdf9;
  border: 1px solid #eadfce;
  border-radius: 14px;
  box-shadow: 0 4px 12px rgba(90, 50, 16, .06);
  transition: transform .2s ease, box-shadow .2s ease;
}
.partner-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 18px rgba(90, 50, 16, .1);
}
.partner-visual {
  width: 100%;
  aspect-ratio: 940 / 788;
  border-radius: 10px;
  overflow: hidden;
  background: #f4eee5;
  display: grid;
  place-items: center;
}
.partner-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.partner-card b { font-size: 13px; line-height: 1.2; }
.partner-card small { color: #7a6a5a; font-size: 11.5px; }
.partner-mark {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: #fff4e8;
  color: #ee6a1a;
  font-weight: 800;
  font-size: 16px;
  letter-spacing: .04em;
}
.partner-mark--g { background: #eaf6ee; color: #1d8a3e; }
.partner-nav {
  position: absolute;
  top: 38%;
  z-index: 2;
  width: 40px;
  height: 40px;
  border: 1px solid #eadfce;
  border-radius: 50%;
  background: #fff;
  color: #1d8a3e;
  cursor: pointer;
  display: grid;
  place-items: center;
  box-shadow: 0 6px 16px rgba(80, 50, 20, .1);
}
.partner-nav svg { width: 18px; height: 18px; }
.partner-nav--prev { left: 0; }
.partner-nav--next { right: 0; }
.partner-nav:hover { background: #1d8a3e; color: #fff; border-color: #1d8a3e; }
.partner-dots { display: none; }
.partner-dot {
  width: 7px;
  height: 7px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: #d8cbb8;
  cursor: pointer;
  transition: width .2s ease, background .2s ease;
}
.partner-dot.is-on { width: 18px; border-radius: 99px; background: #ee6a1a; }

/* Compact footer newsletter — centered */
.foot-news-row {
  display: flex;
  justify-content: center;
  padding: 0 20px 18px;
}
.foot-news {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  flex-wrap: nowrap;
  width: fit-content;
  max-width: 100%;
  margin: 0 auto;
  padding: 0;
}
.foot-news-ico {
  flex: 0 0 34px;
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border-radius: 10px;
  background: #ee6a1a;
  color: #fff;
  box-shadow: 0 6px 12px rgba(238, 106, 26, .22);
}
.foot-news-ico svg {
  width: 16px;
  height: 16px;
  display: block;
}
.foot-news-label {
  flex: 0 0 auto;
  font-size: 13px;
  font-weight: 700;
  line-height: 1.2;
  color: #4a4a4a;
  white-space: nowrap;
}
.foot-news input {
  flex: 0 0 240px;
  width: 240px;
  height: 40px;
  border: 1px solid #e6dfd5;
  border-radius: 10px;
  padding: 0 12px;
  background: #fffaf3;
}
.foot-news .btn {
  flex: 0 0 auto;
  height: 40px;
  padding: 0 18px;
  display: inline-flex;
  align-items: center;
}

/* Contact + map + footer share one wash */
.contact-band {
  position: relative;
  overflow: hidden;
  margin-top: 0;
  padding-top: 18px;
  background:
    radial-gradient(circle at 12% 42%, rgba(246, 185, 104, .12), transparent 38%),
    radial-gradient(circle at 12% 82%, rgba(120, 180, 120, .12), transparent 34%),
    radial-gradient(circle at 88% 40%, rgba(238, 140, 60, .08), transparent 36%),
    linear-gradient(#fbf6ef 0%, #fbf6ef 30%, #fbf7ef 48%, #f6f0e6 72%, #f4efe6 100%);
}
.contact {
  position: relative;
  z-index: 2;
  overflow: visible;
  padding: 8px 0 0;
  background: transparent;
}
.contact-wash {
  position: absolute;
  left: -6%;
  top: 22%;
  width: min(560px, 50vw);
  opacity: .34;
  mix-blend-mode: multiply;
  pointer-events: none;
  z-index: 0;
  -webkit-mask-image: linear-gradient(to bottom, transparent 0%, #000 42%, #000 100%);
  mask-image: linear-gradient(to bottom, transparent 0%, #000 42%, #000 100%);
}
.contact-sketch {
  position: absolute;
  right: -2%;
  top: 40px;
  bottom: 0;
  width: min(620px, 52vw);
  height: auto;
  object-fit: cover;
  object-position: 100% 8%;
  opacity: .42;
  mix-blend-mode: multiply;
  pointer-events: none;
  z-index: 0;
  -webkit-mask-image: linear-gradient(to bottom, transparent 0%, #000 12%, #000 62%, transparent 100%);
  mask-image: linear-gradient(to bottom, transparent 0%, #000 12%, #000 62%, transparent 100%);
}
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: start; position: relative; z-index: 1; margin-bottom: 52px; }
.contact-left h2 { font-size: clamp(34px, 3.8vw, 48px); line-height: 1.1; margin: 8px 0 12px; }
.contact-left > p { color: #555; margin-bottom: 22px; }
.contact-lines { display: grid; gap: 14px; }
.contact-line {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  width: fit-content;
  color: inherit;
}
.contact-line-ico {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  flex-shrink: 0;
  display: grid;
  place-items: center;
  background: #fff7ee;
  color: #ee6a1a;
  border: 1px solid #f0dcc6;
}
.contact-line-ico svg { width: 18px; height: 18px; }
.contact-line small { display: block; font-size: 11px; font-weight: 700; letter-spacing: .06em; text-transform: uppercase; color: #ee6a1a; }
.contact-line b { display: block; margin-top: 2px; font-size: 15.5px; color: #222; }
.contact-line:hover b { color: #1d8a3e; }
.form {
  background: #fffefb;
  border: 1px solid #eadfce;
  border-radius: 18px;
  padding: 22px 22px 32px;
}
.form h3 { font-size: 22px; }
.form h3 .bn { display: block; color: #ee6a1a; font-size: 16px; margin-top: 4px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.form input, .form select, .form textarea {
  width: 100%; margin-top: 7px; border: 1px solid #e6dfd5; border-radius: 8px;
  padding: 8px 10px; background: #fff;
}
.form textarea { height: 76px; resize: vertical; }
.btn-grad {
  width: 100%; margin-top: 12px; border: 0; border-radius: 12px; color: #fff; font-weight: 800;
  padding: 10px; background: linear-gradient(90deg, #f0b027, #ee6a1a); cursor: pointer;
}
.priv { display: block; text-align: center; margin-top: 10px; font-size: 12px; color: #7a7a7a; }

/* Location + footer sit on the contact wash */
.site-end {
  position: relative;
  z-index: 4;
  margin-top: 0;
  padding-bottom: 10px;
  background: transparent;
}
.site-end-card {
  width: min(1180px, calc(100% - 48px));
  margin: 0 auto;
  background: #f4efe6;
  border: 1px solid #e7d9c7;
  border-radius: 16px;
  overflow: hidden;
}
.site-end .dhaka {
  width: 100%;
  margin: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
}
.dhaka {
  display: grid; grid-template-columns: 240px minmax(420px, 1.55fr) minmax(240px, 1fr);
  align-items: stretch; min-height: 210px;
  width: min(1180px, calc(100% - 48px));
  margin: 0 auto;
  background: #f4efe6; overflow: hidden;
  border: 1px solid #e7d9c7;
  border-radius: 16px 16px 0 0;
}
.dhaka-left {
  position: relative; z-index: 3;
  padding: 22px 14px 22px 28px;
  display: flex; align-items: center;
  color: inherit;
  background: #f4efe6;
}
.dhaka-left::after {
  content: "";
  position: absolute;
  z-index: -1;
  top: 0; bottom: 0; right: -92px;
  width: 94px;
  background: linear-gradient(90deg, #f4efe6 0%, rgba(244,239,230,.88) 35%, transparent 100%);
  pointer-events: none;
}
.dhaka-left b { display: block; font-size: 15px; line-height: 1.25; }
.dhaka-left small { display: block; color: #8a6a4a; margin-top: 4px; font-size: 13px; }
.dhaka-maps-btn {
  display: inline-flex; align-items: center; gap: 8px;
  margin-top: 12px;
  padding: 8px 14px 8px 12px;
  border-radius: 999px;
  background: #fffdf8;
  border: 1px solid #e4d8c8;
  color: #5c4a38;
  font-size: 12.5px; font-weight: 600;
  transition: background .2s ease, border-color .2s ease, color .2s ease;
}
.dhaka-maps-btn svg { width: 14px; height: 14px; fill: currentColor; flex-shrink: 0; }
.dhaka-maps-btn:hover {
  background: #fff; border-color: #c8ddd0; color: #1d8a3e;
}
.dhaka-map {
  position: relative; min-height: 210px; overflow: hidden; background: #ebe3d6;
}
.dhaka-map:focus { outline: none; }
.dhaka-map:focus-visible { outline: 2px solid #c8ddd0; outline-offset: -2px; }
.dhaka-map iframe {
  position: absolute; left: 0; top: -10%; width: 112%; height: 120%; border: 0;
  filter: grayscale(.15) sepia(.42) saturate(.55) contrast(.9) brightness(1.08);
  pointer-events: none;
  transition: left .35s ease, top .35s ease, width .35s ease, height .35s ease, filter .35s ease;
}
.dhaka-map::before, .dhaka-map::after {
  content: ""; position: absolute; top: 0; bottom: 0; z-index: 1; pointer-events: none;
  transition: opacity .3s ease, width .3s ease;
}
.dhaka-map::before { left: 0; width: 96px; background: linear-gradient(90deg, rgba(244,239,230,.82), transparent); }
.dhaka-map::after { right: 0; width: 72px; background: linear-gradient(270deg, #f4efe6, transparent); }
.dhaka-map:hover iframe,
.dhaka-map:focus-within iframe {
  pointer-events: auto;
  left: 0; top: 0; width: 100%; height: 100%;
  filter: grayscale(.04) sepia(.12) saturate(.8) contrast(.96) brightness(1.02);
}
.dhaka-map:hover::before,
.dhaka-map:focus-within::before { width: 40px; opacity: .55; }
.dhaka-map:hover::after,
.dhaka-map:focus-within::after { opacity: 0; }
.map-fullscreen {
  position: absolute;
  z-index: 4;
  top: 12px; right: 12px;
  display: inline-flex; align-items: center; gap: 7px;
  border: 1px solid rgba(28,28,28,.12);
  border-radius: 999px;
  padding: 8px 12px;
  background: rgba(255,255,255,.96);
  color: #343434;
  box-shadow: 0 5px 16px rgba(32,24,16,.14);
  cursor: pointer;
  font-size: 12px; font-weight: 700;
  opacity: 0;
  transform: translateY(-5px);
  pointer-events: none;
  transition: opacity .2s ease, transform .2s ease, color .2s ease;
}
.map-fullscreen svg { width: 16px; height: 16px; }
.dhaka-map:hover .map-fullscreen,
.dhaka-map:focus-within .map-fullscreen {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}
.map-fullscreen:hover { color: #1d8a3e; }
body.map-open { overflow: hidden; }
.dhaka-map.is-map-expanded {
  position: fixed;
  inset: 0;
  z-index: 100;
  width: 100vw;
  height: 100vh;
  min-height: 100vh;
  border-radius: 0;
}
.dhaka-map:fullscreen,
.dhaka-map.is-map-expanded {
  width: 100vw;
  height: 100vh;
  background: #eee;
}
.dhaka-map:fullscreen iframe,
.dhaka-map.is-map-expanded iframe {
  left: 0; top: 0; width: 100%; height: 100%;
  pointer-events: auto;
  filter: none;
}
.dhaka-map:fullscreen::before,
.dhaka-map:fullscreen::after,
.dhaka-map.is-map-expanded::before,
.dhaka-map.is-map-expanded::after { display: none; }
.dhaka-map:fullscreen .map-fullscreen,
.dhaka-map.is-map-expanded .map-fullscreen {
  opacity: 1;
  transform: none;
  pointer-events: auto;
}
.dhaka-city {
  position: relative; min-height: 210px; overflow: hidden;
  background: #f4efe6;
}
.dhaka-city img {
  width: 132%; max-width: none; height: 210px; margin-left: -8%;
  object-fit: cover; object-position: 72% 46%;
  mix-blend-mode: multiply;
}
.dhaka-city::before {
  content: ""; position: absolute; inset: 0; z-index: 1; pointer-events: none;
  background: linear-gradient(90deg, #f4efe6 0%, transparent 34%);
}

/* Footer — bordered columns like mock 08 */
.site-footer {
  background: transparent;
  color: #3a3a3a;
  padding: 0;
  position: relative;
  z-index: 1;
}
.site-footer > .wrap {
  width: 100%;
  margin: 0;
  background: transparent;
  border: 0;
  border-radius: 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.15fr 1.75fr .82fr .92fr;
  gap: 0;
  padding: 28px 20px 24px;
}
.footer-grid > * {
  min-width: 0;
  padding: 0 24px;
}
.footer-grid > * + * { border-left: 1px solid #e2d7c9; }
.footer-logo img { height: 44px; margin-bottom: 12px; }
.footer-brand p { font-size: 13.5px; max-width: 260px; color: #555; }
.socials { display: flex; gap: 10px; margin-top: 14px; }
.socials a {
  width: 32px; height: 32px; border-radius: 50%; border: 0;
  display: grid; place-items: center; color: #fff;
  background-image: none;
  transition: transform .15s ease, filter .2s ease;
}
.socials a:hover { transform: translateY(-1px); filter: brightness(1.08); }
.socials a[aria-label="Facebook"],
.socials a.social--fb { background: #1877F2; }
.socials a[aria-label="Instagram"],
.socials a.social--ig { background: #E4405F; background-image: none; }
.socials a[aria-label="LinkedIn"],
.socials a.social--in { background: #0A66C2; }
.socials a[aria-label="YouTube"],
.socials a.social--yt { background: #FF0000; }
.socials svg { height: 14px; width: auto; fill: currentColor; display: block; }
.socials a[aria-label="Facebook"] svg { height: 15px; }
.socials a[aria-label="Instagram"] svg { height: 15px; }
.socials a[aria-label="YouTube"] svg { height: 13px; }
.footer-col h4 { color: #ee7215; font-size: 12px; letter-spacing: .04em; margin-bottom: 12px; }
.footer-col a { display: block; font-size: 13.5px; color: #444; margin: 7px 0; }
.footer-col small { display: block; color: #777; font-size: 12px; }
.footer-contact a {
  display: flex;
  align-items: center;
  gap: 9px;
  width: fit-content;
}
.footer-contact a > svg {
  width: 17px;
  height: 17px;
  flex: 0 0 17px;
  color: #e98327;
}
.footer-contact a:first-of-type > svg {
  color: #2ba24c;
  fill: currentColor;
}
.footer-service-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3px 20px;
}
.footer-service-grid a {
  display: flex;
  align-items: center;
  gap: 9px;
  line-height: 1.25;
}
.footer-service-grid i {
  width: 24px; height: 24px;
  flex: 0 0 24px;
  display: grid; place-items: center;
  border: 1px solid #e8dccb;
  border-radius: 7px;
  background: #fbf4e9;
  color: #8a6a48;
  font-style: normal;
  font-size: 13px;
}
.footer-service-grid i svg {
  width: 14px;
  height: 14px;
  display: block;
}
.dhaka-city picture { display: contents; }
.foot-bot {
  display: flex; justify-content: space-between; gap: 12px; flex-wrap: wrap;
  margin: 0 20px;
  padding: 14px 24px 0;
  border-top: 1px solid #ded3c5;
  font-size: 12.5px; color: #6a6a6a;
}
.lang-chip {
  background: #fff; border: 1px solid #e6dfd5; border-radius: 999px;
  padding: 4px 10px; cursor: pointer; font: inherit; color: inherit;
}

.chat-dock {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 60;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 12px;
}
.chat-pop {
  width: min(280px, calc(100vw - 36px));
  padding: 12px;
  border: 1px solid #eadfce;
  border-radius: 18px;
  background: rgba(255, 253, 249, .96);
  box-shadow: 0 16px 36px rgba(80, 48, 16, .16);
  backdrop-filter: blur(10px);
}
.chat-pop[hidden] { display: none; }
.chat-pop-kicker {
  margin: 2px 6px 10px;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: #ee6a1a;
}
.chat-opt {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 10px;
  border-radius: 14px;
  color: inherit;
  transition: background .18s ease, transform .18s ease;
}
.chat-opt + .chat-opt { margin-top: 4px; }
.chat-opt:hover { background: #fff7ee; transform: translateX(-2px); }
.chat-opt-ico {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  flex-shrink: 0;
  color: #fff;
}
.chat-opt-ico svg { width: 22px; height: 22px; fill: currentColor; }
.chat-opt--wa .chat-opt-ico { background: #25d366; box-shadow: 0 6px 14px rgba(37, 211, 102, .35); }
.chat-opt--ms .chat-opt-ico {
  background: linear-gradient(135deg, #00c6ff, #0062e0);
  box-shadow: 0 6px 14px rgba(0, 98, 224, .28);
}
.chat-opt b { display: block; font-size: 14.5px; line-height: 1.2; }
.chat-opt small { display: block; margin-top: 2px; color: #6a6a6a; font-size: 11.5px; }
.chat-fab {
  position: relative;
  width: 62px;
  height: 62px;
  border: 0;
  border-radius: 50%;
  background: linear-gradient(160deg, #3ce27a 0%, #1fbe5a 48%, #128c7e 100%);
  color: #fff;
  cursor: pointer;
  display: grid;
  place-items: center;
  box-shadow: 0 10px 24px rgba(18, 140, 126, .38), inset 0 1px 0 rgba(255,255,255,.35);
}
.chat-fab:hover { transform: translateY(-2px); }
.chat-fab-ico {
  width: 30px;
  height: 30px;
  grid-area: 1 / 1;
  transition: opacity .18s ease, transform .18s ease;
}
.chat-fab-ico--close { opacity: 0; transform: scale(.7) rotate(-20deg); }
.chat-dock.is-open .chat-fab-ico--chat { opacity: 0; transform: scale(.7) rotate(20deg); }
.chat-dock.is-open .chat-fab-ico--close { opacity: 1; transform: scale(1) rotate(0); }
.chat-fab-dot {
  position: absolute;
  top: 8px;
  right: 8px;
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background: #ee6a1a;
  border: 2px solid #fff;
  box-shadow: 0 0 0 2px rgba(238, 106, 26, .18);
}
.chat-fab-ring {
  position: absolute;
  inset: -8px;
  border-radius: 50%;
  border: 2px solid rgba(37, 211, 102, .35);
  animation: chatPulse 2.4s ease-out infinite;
  pointer-events: none;
}
.chat-fab-ring--delay { animation-delay: 1.2s; }
.chat-dock.is-open .chat-fab-ring { animation: none; opacity: 0; }
@keyframes chatPulse {
  0% { transform: scale(.82); opacity: .7; }
  100% { transform: scale(1.28); opacity: 0; }
}
@media (prefers-reduced-motion: reduce) {
  .chat-fab-ring { animation: none; display: none; }
  .ai-cta { animation: none; }
}
html[data-lang="bn"] .chat-pop-kicker,
html[data-lang="bn"] .chat-opt small { font-family: "Hind Siliguri", sans-serif; }
.toast {
  position: fixed; left: 50%; bottom: 24px; transform: translateX(-50%) translateY(80px);
  background: #1d8a3e; color: #fff; padding: 12px 18px; border-radius: 10px; opacity: 0; transition: .3s;
}
.toast.show { opacity: 1; transform: translateX(-50%) translateY(0); }

@media (max-width: 980px) {
  .hero-grid, .solutions-grid, .work-head, .about-grid, .contact-grid, .footer-grid { grid-template-columns: 1fr; }
  .ai-head { flex-direction: column; align-items: flex-start; }
  .ai-lanes { grid-template-columns: 1fr; }
  .ai-steps { grid-template-columns: 1fr; }
  .ai-cta {
    position: relative;
    left: auto;
    right: auto;
    top: auto;
    display: inline-flex;
    margin: 4px 0 14px;
    transform: rotate(-6deg);
    animation: none;
  }
  .ai-cta:hover { transform: rotate(-3deg) translateY(-2px); }
  .ai-robot-stage { width: min(320px, 58%); top: auto; bottom: 4%; right: 0; }
  .svc-grid, .work-grid, .sol-outcomes { grid-template-columns: 1fr 1fr; }
  .proof-slider { padding: 0 36px; }
  .partner-card { flex-basis: 196px; }
  .partner-slider { padding: 0 30px; }
  .process-row { grid-template-columns: 1fr 1fr; }
  .dash, .work-maps { display: none; }
  .work-head > div:last-child > p, .pills { text-align: left; margin-left: 0; justify-content: flex-start; }
  .dhaka { grid-template-columns: minmax(230px, 280px) 1.2fr .9fr; }
  .hero-trust, .svc-bar, .proof-bar { grid-template-columns: 1fr 1fr; display: grid; }
  .trust-item + .trust-item { border: 0; }
  .main-nav, .header-cta { display: none; }
  .lang-switch { margin-left: auto; }
  .main-nav.open {
    display: flex; flex-direction: column; position: absolute; left: 0; right: 0; top: 72px;
    background: #fbf6ef; padding: 16px 24px 24px; border-bottom: 1px solid #ece4d8;
  }
  .nav-toggle { display: flex; margin-left: 8px; }
  .cta-book, .cta-wa { grid-template-columns: 1fr; }
  .cta-book-actions, .cta-note { text-align: left; }
  .cta-book .btn { min-width: 0; width: 100%; }
  .footer-grid > * { padding: 18px 12px; }
  .footer-grid > * + * { border-left: 0; border-top: 1px solid #e2d7c9; }
  .foot-news-row { padding-left: 20px; padding-right: 20px; }
  .foot-news { padding-left: 12px; padding-right: 12px; }
  .foot-bot { margin: 0 12px; padding-left: 12px; padding-right: 12px; }
  .about-collage-img { width: 100%; margin: 0; }
  .about-visual { min-height: 0; margin-top: 0; }
  .work-cta { justify-content: center; }
  .hero-hand.i18n-en,
  .hero-hand.i18n-bn { left: 2%; top: auto; bottom: 22%; transform: rotate(-12deg); }
  .hero-hand.i18n-en { font-size: 26px; }
  .hero-hand.i18n-bn { font-size: 20px; }
}
@media (max-width: 640px) {
  .svc-grid, .work-grid, .sol-outcomes, .process-row, .svc-bar, .proof-bar, .ai-grid { grid-template-columns: 1fr; }
  .proof-slider { padding: 0 32px; }
  .partner-card { flex-basis: 72vw; }
  .partner-slider { padding: 0 26px; }
  .foot-news-row { padding: 0 12px 16px; }
  .foot-news {
    flex-wrap: wrap;
    justify-content: center;
    width: auto;
    max-width: none;
    padding: 0 12px;
  }
  .foot-news input { flex: 1 1 180px; width: auto; }
  .foot-news-label { white-space: normal; text-align: left; }
  .svc-card { height: auto; }
  .form-row { grid-template-columns: 1fr; }
  .hero-trust { display: flex; flex-direction: column; }
  .dhaka { grid-template-columns: 1fr; }
  .dhaka-left { padding: 18px 24px; }
  .dhaka-left::after { display: none; }
  .dhaka-map, .dhaka-city, .dhaka-city img { min-height: 180px; height: 180px; }
  .dhaka-map iframe { left: 0; width: 100%; }
  .contact-grid { margin-bottom: 36px; }
  .site-end { margin-top: 0; }
  .footer-service-grid { grid-template-columns: 1fr; }
}
