/* Kroykari public marketing landing page */
:root{
  --bg: #ffffff;
  --text: #0f172a;
  --muted: #475569;
  --border: rgba(15, 23, 42, 0.10);
  --surface: rgba(248, 250, 252, 0.92);
  --surface2: #f8fafc;
  --primary: #6d28d9;
  --primary2: #2563eb;
  --ring: rgba(109, 40, 217, 0.35);
  --shadow: 0 18px 50px rgba(2, 6, 23, 0.10);
  --shadow2: 0 10px 30px rgba(2, 6, 23, 0.10);
  --radius: 18px;
  --max: 1160px;
  /* Hero + POS: same two-column “Software / POS” layout chrome */
  --landing-split-cols: minmax(0, 1.08fr) minmax(0, 0.92fr);
  --landing-split-gap: 40px;
  --landing-split-gap-lg: 48px;
  --landing-card-pad-x: 32px;
  --landing-card-pad-y-top: 32px;
  --landing-card-pad-y-bottom: 34px;
  --landing-card-radius: 12px;
  --landing-text-card-shadow:
    0 1px 2px rgba(15, 23, 42, 0.04),
    0 16px 40px rgba(15, 23, 42, 0.065);
  --landing-media-card-shadow:
    0 1px 2px rgba(15, 23, 42, 0.04),
    0 16px 40px rgba(15, 23, 42, 0.07);
  --landing-promo-radius: 10px;
  --landing-promo-shadow:
    0 1px 3px rgba(15, 23, 42, 0.06),
    0 8px 24px rgba(15, 23, 42, 0.06);
}

/*
 * Text-fragment links (#:~:text=…) and some UA features paint highlights on matched text.
 * Use !important so this wins over the browser default yellow.
 */
::target-text{
  background-color: transparent !important;
  background-image: none !important;
  color: inherit !important;
  text-decoration: none !important;
  text-shadow: none !important;
}

*{ box-sizing:border-box; }
html,body{ height:100%; }
body{
  margin:0;
  font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, "Apple Color Emoji", "Segoe UI Emoji";
  color: var(--text);
  background:
    radial-gradient(1100px 600px at 20% -10%, rgba(37,99,235,.12), transparent 65%),
    radial-gradient(900px 520px at 90% 10%, rgba(109,40,217,.14), transparent 60%),
    linear-gradient(#fff, #fff);
}

a{ color: inherit; text-decoration:none; }
img{ max-width:100%; height:auto; display:block; }
button, input{ font: inherit; }

.skip-link{
  position:absolute; left:-999px; top:12px;
  background:#111827; color:#fff; padding:10px 12px; border-radius:12px;
  z-index:9999;
}
.skip-link:focus{ left:12px; outline: 3px solid var(--ring); }

.container{ width: min(var(--max), calc(100% - 40px)); margin: 0 auto; }

.topbar{
  position: sticky; top:0; z-index:1002;
  backdrop-filter: blur(12px);
  background: rgba(255,255,255,0.72);
  border-bottom: 1px solid var(--border);
  transition: background .2s ease, box-shadow .2s ease, border-color .2s ease;
}
.topbar.is-scrolled{
  background: rgba(255,255,255,0.92);
  border-bottom-color: rgba(15,23,42,0.14);
  box-shadow: 0 8px 24px rgba(2, 6, 23, 0.08);
}
.nav{
  display:flex; align-items:center; justify-content:space-between;
  height:72px;
  gap: 14px;
}
.brand{
  display:flex; align-items:center; gap: 10px;
  font-weight: 800;
  letter-spacing: -0.02em;
}
.brand-mark{
  width: 46px;
  height: 46px;
  flex: 0 0 auto;
  object-fit: contain;
  border-radius: 10px;
}
.brand span{ font-size: 18px; }
.nav-links{
  display:flex;
  align-items:center;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
}
.nav-links a{
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: -0.01em;
  color: rgba(15, 23, 42, 0.88);
  padding: 9px 16px;
  border-radius: 12px;
  border: 1px solid rgba(15, 23, 42, 0.11);
  background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
  box-shadow:
    0 1px 2px rgba(15, 23, 42, 0.05),
    0 0 0 1px rgba(255, 255, 255, 0.6) inset;
  transition:
    color 0.18s ease,
    background 0.18s ease,
    box-shadow 0.18s ease,
    border-color 0.18s ease,
    transform 0.12s ease;
}
.nav-links a:hover{
  color: #0f172a;
  border-color: rgba(91, 33, 182, 0.32);
  background: linear-gradient(180deg, #ffffff 0%, rgba(248, 250, 252, 0.98) 100%);
  box-shadow:
    0 2px 10px rgba(91, 33, 182, 0.1),
    0 1px 2px rgba(15, 23, 42, 0.06);
  transform: translateY(-1px);
}
.nav-links a:focus-visible{
  outline: none;
  box-shadow: 0 0 0 2px #fff, 0 0 0 4px var(--ring);
}
.nav-links a.is-active{
  color: #5b21b6;
  font-weight: 700;
  border-color: rgba(91, 33, 182, 0.35);
  background: linear-gradient(135deg, rgba(109, 40, 217, 0.12), rgba(37, 99, 235, 0.08));
  box-shadow:
    inset 0 0 0 1px rgba(91, 33, 182, 0.16),
    0 1px 3px rgba(91, 33, 182, 0.08);
  transform: none;
}
.nav-links a.is-active:hover{
  background: linear-gradient(135deg, rgba(109, 40, 217, 0.16), rgba(37, 99, 235, 0.11));
  border-color: rgba(91, 33, 182, 0.42);
  transform: translateY(-1px);
}

.nav-cta{
  display:flex;
  align-items:center;
  gap:10px;
}

/* Language switcher (shared with /reseller/js/language-switcher.js) */
.lang-switcher{
  position: relative;
  flex: 0 0 auto;
}
.lang-switcher .lang-switcher-btn{
  display: inline-flex;
  align-items: center;
  gap: 6px;
  min-width: 5.5rem;
  padding: 8px 12px 8px 14px;
  justify-content: center;
  border-radius: 999px;
  border: 1px solid rgba(15, 23, 42, 0.12);
  background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
  box-shadow: 0 1px 2px rgba(15, 23, 42, 0.06);
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 0.02em;
  color: rgba(15, 23, 42, 0.88);
  cursor: pointer;
  transition:
    border-color 0.2s ease,
    box-shadow 0.2s ease,
    background 0.2s ease,
    color 0.2s ease;
  background-color: #ffffff !important;
  background-image: none !important;
}
.lang-switcher .lang-switcher-btn:hover{
  border-color: rgba(91, 33, 182, 0.35);
  box-shadow: 0 2px 10px rgba(91, 33, 182, 0.12);
  color: #0f172a;
}
.lang-switcher .lang-switcher-btn[aria-expanded="true"]{
  border-color: rgba(91, 33, 182, 0.45);
  background: #ffffff;
  box-shadow:
    inset 0 0 0 1px rgba(91, 33, 182, 0.12),
    0 4px 14px rgba(91, 33, 182, 0.12);
  color: #5b21b6;
}
.lang-switcher-icon{
  display: inline-flex;
  opacity: 0.75;
  color: rgba(91, 33, 182, 0.9);
}
.lang-switcher-btn[aria-expanded="true"] .lang-switcher-icon{
  opacity: 1;
}
.lang-switcher-icon svg{
  display: block;
}
.lang-switcher-chevron{
  display: inline-flex;
  margin-left: -2px;
  opacity: 0.65;
  transition: transform 0.22s ease, opacity 0.2s ease;
}
.lang-switcher .lang-switcher-btn[aria-expanded="true"] .lang-switcher-chevron{
  transform: rotate(180deg);
  opacity: 0.95;
}
#languageDropdownMenu.lang-dropdown-menu{
  display: none;
  list-style: none;
  margin: 0;
  padding: 8px;
  min-width: 180px;
  border-radius: 14px;
  border: 1px solid rgba(15, 23, 42, 0.08);
  background: #ffffff;
  box-shadow:
    0 4px 6px rgba(15, 23, 42, 0.04),
    0 18px 48px rgba(15, 23, 42, 0.14);
}
#languageDropdownMenu.lang-dropdown-menu.show{
  display: block;
}
.lang-dropdown-menu li{
  margin: 0;
}
.lang-dropdown-menu .dropdown-item{
  display: block;
  padding: 10px 12px;
  border-radius: 10px;
  font-size: 14px;
  font-weight: 500;
  color: rgba(15, 23, 42, 0.9);
  text-decoration: none;
  transition: background 0.15s ease, color 0.15s ease;
}
.lang-dropdown-menu .dropdown-item:hover{
  background: rgba(91, 33, 182, 0.08);
  color: #5b21b6;
}
.lang-dropdown-menu .language-option.active{
  background: linear-gradient(135deg, rgba(109, 40, 217, 0.12), rgba(37, 99, 235, 0.08));
  color: #5b21b6;
  font-weight: 600;
}

.mobile-lang{
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding: 6px 0 2px;
  border-bottom: 1px solid rgba(15, 23, 42, 0.08);
  margin-bottom: 2px;
}
.mobile-lang-btn{
  flex: 1 1 auto;
  min-width: 3.5rem;
  padding: 8px 10px;
  border-radius: 10px;
  border: 1px solid #e2e8f0;
  background: #f8fafc;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: rgba(15, 23, 42, 0.85);
  cursor: pointer;
  transition: background 0.15s ease, border-color 0.15s ease, color 0.15s ease;
}
.mobile-lang-btn:hover{
  background: rgba(91, 33, 182, 0.08);
  border-color: rgba(91, 33, 182, 0.25);
  color: #5b21b6;
}

.btn{
  display:inline-flex; align-items:center; justify-content:center;
  padding: 10px 14px;
  border-radius: 14px;
  border: 1px solid var(--border);
  background: rgba(255,255,255,0.72);
  color: rgba(15,23,42,0.90);
  box-shadow: 0 0 0 transparent;
  transition: transform .12s ease, box-shadow .12s ease, background .12s ease, border-color .12s ease;
  font-weight: 600;
}
button.btn{
  cursor: pointer;
  appearance: none;
  -webkit-appearance: none;
  margin: 0;
  text-align: center;
}
.btn:hover{
  transform: translateY(-1px);
  box-shadow: var(--shadow2);
  border-color: rgba(109,40,217,0.22);
}
.btn:focus-visible{ outline: none; box-shadow: 0 0 0 5px var(--ring); }
.btn-primary{
  border-color: rgba(109,40,217,0.2);
  background: linear-gradient(135deg, var(--primary), var(--primary2));
  color: #fff;
}
.btn-primary:hover{ border-color: rgba(109,40,217,0.35); }
.btn-sm{ padding: 8px 12px; border-radius: 12px; font-size: 13px; }

.menu-btn{
  display:none;
  width: 42px; height: 42px;
  border-radius: 14px;
}
.menu-icon{
  width: 18px; height: 12px;
  display:grid; gap:3px;
}
.menu-icon span{
  height:2px; border-radius:2px;
  background: rgba(15,23,42,0.85);
}

.hero{
  padding: 64px 0 28px;
}
.hero--bangla{
  padding: 24px 0 56px;
  background: linear-gradient(180deg, #f8fafc 0%, #ffffff 38%);
  border-bottom: 1px solid rgba(15, 23, 42, 0.06);
}
.hero--bangla .hero-grid{
  gap: var(--landing-split-gap);
  align-items: stretch;
  grid-template-columns: var(--landing-split-cols);
}
@media (min-width: 1200px){
  .hero--bangla .hero-grid{
    gap: var(--landing-split-gap-lg);
  }
}
.hero--bangla .hero p{
  max-width: none;
}
.industry-ticker{
  padding: 8px 0 0;
}
.industry-ticker-mask{
  width: min(var(--max), calc(100% - 40px));
  margin: 0 auto;
  overflow: hidden;
  border-radius: 14px;
  border: 1px solid rgba(15, 23, 42, 0.1);
  background: linear-gradient(100deg, #eef2ff 0%, #f1f5f9 42%, #f8fafc 100%);
  position: relative;
  padding-left: 0;
  min-height: 200px;
  isolation: isolate;
  cursor: grab;
}
.industry-ticker-mask::before{
  content: none;
}
.industry-ticker-track{
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  align-items: stretch;
  width: max-content;
  min-width: max-content;
  flex-shrink: 0;
  position: relative;
  z-index: 1;
  animation: tickerMove 265s linear infinite;
}
.industry-ticker-pan{
  display: flex;
  width: max-content;
  min-width: max-content;
  flex-shrink: 0;
  will-change: transform;
}
.industry-ticker-mask.is-ticker-dragging{
  cursor: grabbing;
  user-select: none;
  -webkit-user-select: none;
  touch-action: none;
}
.industry-ticker-mask:hover .industry-ticker-track{
  animation-play-state: paused;
}
.industry-ticker-mask.is-ticker-dragging .industry-ticker-track{
  animation-play-state: paused;
}
.industry-ticker-line{
  margin: 0;
  padding: 14px 0;
  gap: 16px;
  white-space: normal;
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  flex: 0 0 auto;
  flex-shrink: 0;
  align-items: stretch;
  min-width: max-content;
  width: max-content;
  font-size: 13px;
  font-weight: 600;
  color: rgba(15, 23, 42, 0.82);
}
.industry-ticker-line span{
  display: inline-block;
  padding: 0 12px;
}
.industry-ticker-line .sep{
  padding: 0 6px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: rgba(100, 116, 139, 0.55);
  line-height: 0;
  vertical-align: middle;
}
.industry-ticker-line .sep .sep-icon{
  display: block;
  flex-shrink: 0;
}
.industry-ticker-card{
  flex: 0 0 auto;
  position: relative;
  width: 352px;
  padding: 14px 18px 18px 20px;
  border-radius: 16px;
  border: 1px solid rgba(15, 23, 42, 0.07);
  background: #ffffff;
  box-shadow:
    0 1px 2px rgba(15, 23, 42, 0.04),
    0 12px 32px rgba(15, 23, 42, 0.08);
  font-family: Inter, ui-sans-serif, "Noto Sans Bengali", system-ui, sans-serif;
}
.industry-ticker-card::before{
  content: "";
  position: absolute;
  left: 0;
  top: 14px;
  bottom: 14px;
  width: 4px;
  border-radius: 0 4px 4px 0;
  background: linear-gradient(180deg, #7c3aed 0%, #2563eb 100%);
}
.industry-ticker-card-media{
  width: 100%;
  aspect-ratio: 16 / 10;
  min-height: 132px;
  margin: 0 0 14px;
  border-radius: 12px;
  border: 1px solid rgba(15, 23, 42, 0.08);
  background-color: #eef2ff;
  background-image:
    radial-gradient(ellipse 85% 70% at 50% 38%, rgba(255, 255, 255, 0.9) 0%, transparent 58%),
    linear-gradient(165deg, rgba(255, 255, 255, 0.5) 0%, transparent 50%),
    linear-gradient(215deg, rgba(199, 210, 254, 0.45) 0%, transparent 55%);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.95);
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 12px;
}
.industry-ticker-card-media::before{
  content: "";
  position: absolute;
  inset: 8px;
  border-radius: 10px;
  border: 1px dashed rgba(100, 116, 139, 0.2);
  pointer-events: none;
}
.industry-ticker-card-emoji{
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  width: min(138px, 46%);
  height: min(138px, 78%);
  min-width: 118px;
  min-height: 118px;
  max-height: 100%;
  font-size: clamp(3.1rem, 11vw, 4.35rem);
  line-height: 1;
  border-radius: 22px;
  background: radial-gradient(100% 90% at 35% 18%, #ffffff 0%, rgba(245, 243, 255, 0.98) 38%, rgba(224, 231, 255, 0.65) 100%);
  box-shadow:
    0 12px 32px rgba(91, 33, 182, 0.14),
    0 4px 12px rgba(15, 23, 42, 0.07),
    inset 0 1px 0 rgba(255, 255, 255, 1),
    inset 0 -1px 0 rgba(15, 23, 42, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.9);
  text-shadow: 0 2px 14px rgba(255, 255, 255, 0.85);
  filter: drop-shadow(0 3px 6px rgba(15, 23, 42, 0.06));
  font-family: "Segoe UI Emoji", "Apple Color Emoji", "Noto Color Emoji", sans-serif;
}
.industry-ticker-card-emoji:empty::before{
  content: "🏬";
}
.industry-ticker-line .industry-ticker-card:nth-child(1) .industry-ticker-card-emoji:empty::before{ content: "📱"; }
.industry-ticker-line .industry-ticker-card:nth-child(1) .industry-ticker-card-media{
  background-image:
    linear-gradient(180deg, rgba(255, 255, 255, 0.06) 0%, rgba(15, 23, 42, 0.08) 100%),
    url("/assets/images/mobile-retail-software-store.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.industry-ticker-line .industry-ticker-card:nth-child(1) .industry-ticker-card-media::before{
  border-color: rgba(255, 255, 255, 0.38);
}
.industry-ticker-line .industry-ticker-card:nth-child(1) .industry-ticker-card-emoji{
  display: none;
}
.industry-ticker-line .industry-ticker-card:nth-child(2) .industry-ticker-card-emoji:empty::before{ content: "🛏️"; }
.industry-ticker-line .industry-ticker-card:nth-child(2) .industry-ticker-card-media{
  background-image:
    linear-gradient(180deg, rgba(255, 255, 255, 0.06) 0%, rgba(15, 23, 42, 0.08) 100%),
    url("/assets/images/furniture-store-software.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.industry-ticker-line .industry-ticker-card:nth-child(2) .industry-ticker-card-media::before{
  border-color: rgba(255, 255, 255, 0.38);
}
.industry-ticker-line .industry-ticker-card:nth-child(2) .industry-ticker-card-emoji{
  display: none;
}
.industry-ticker-line .industry-ticker-card:nth-child(3) .industry-ticker-card-emoji:empty::before{ content: "💨"; }
.industry-ticker-line .industry-ticker-card:nth-child(3) .industry-ticker-card-media{
  background-image:
    linear-gradient(180deg, rgba(255, 255, 255, 0.06) 0%, rgba(15, 23, 42, 0.08) 100%),
    url("/assets/images/vape-store-software.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.industry-ticker-line .industry-ticker-card:nth-child(3) .industry-ticker-card-media::before{
  border-color: rgba(255, 255, 255, 0.38);
}
.industry-ticker-line .industry-ticker-card:nth-child(3) .industry-ticker-card-emoji{
  display: none;
}
.industry-ticker-line .industry-ticker-card:nth-child(4) .industry-ticker-card-emoji:empty::before{ content: "👓"; }
.industry-ticker-line .industry-ticker-card:nth-child(4) .industry-ticker-card-media{
  background-image:
    linear-gradient(180deg, rgba(255, 255, 255, 0.06) 0%, rgba(15, 23, 42, 0.08) 100%),
    url("/assets/images/optical-store-software.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.industry-ticker-line .industry-ticker-card:nth-child(4) .industry-ticker-card-media::before{
  border-color: rgba(255, 255, 255, 0.38);
}
.industry-ticker-line .industry-ticker-card:nth-child(4) .industry-ticker-card-emoji{
  display: none;
}
.industry-ticker-line .industry-ticker-card:nth-child(5) .industry-ticker-card-emoji:empty::before{ content: "👞"; }
.industry-ticker-line .industry-ticker-card:nth-child(5) .industry-ticker-card-media{
  background-image:
    linear-gradient(180deg, rgba(255, 255, 255, 0.06) 0%, rgba(15, 23, 42, 0.08) 100%),
    url("/assets/images/shoe-store-software.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.industry-ticker-line .industry-ticker-card:nth-child(5) .industry-ticker-card-media::before{
  border-color: rgba(255, 255, 255, 0.38);
}
.industry-ticker-line .industry-ticker-card:nth-child(5) .industry-ticker-card-emoji{
  display: none;
}
.industry-ticker-line .industry-ticker-card:nth-child(6) .industry-ticker-card-emoji:empty::before{ content: "📚"; }
.industry-ticker-line .industry-ticker-card:nth-child(6) .industry-ticker-card-media{
  background-image:
    linear-gradient(180deg, rgba(255, 255, 255, 0.06) 0%, rgba(15, 23, 42, 0.08) 100%),
    url("/assets/images/book-store-software.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.industry-ticker-line .industry-ticker-card:nth-child(6) .industry-ticker-card-media::before{
  border-color: rgba(255, 255, 255, 0.38);
}
.industry-ticker-line .industry-ticker-card:nth-child(6) .industry-ticker-card-emoji{
  display: none;
}
.industry-ticker-line .industry-ticker-card:nth-child(7) .industry-ticker-card-emoji:empty::before{ content: "🔌"; }
.industry-ticker-line .industry-ticker-card:nth-child(7) .industry-ticker-card-media{
  background-image:
    linear-gradient(180deg, rgba(255, 255, 255, 0.06) 0%, rgba(15, 23, 42, 0.08) 100%),
    url("/assets/images/electrical-store-software.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.industry-ticker-line .industry-ticker-card:nth-child(7) .industry-ticker-card-media::before{
  border-color: rgba(255, 255, 255, 0.38);
}
.industry-ticker-line .industry-ticker-card:nth-child(7) .industry-ticker-card-emoji{
  display: none;
}
.industry-ticker-line .industry-ticker-card:nth-child(8) .industry-ticker-card-emoji:empty::before{ content: "💻"; }
.industry-ticker-line .industry-ticker-card:nth-child(8) .industry-ticker-card-media{
  background-image:
    linear-gradient(180deg, rgba(255, 255, 255, 0.06) 0%, rgba(15, 23, 42, 0.08) 100%),
    url("/assets/images/computer-retail-software.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.industry-ticker-line .industry-ticker-card:nth-child(8) .industry-ticker-card-media::before{
  border-color: rgba(255, 255, 255, 0.38);
}
.industry-ticker-line .industry-ticker-card:nth-child(8) .industry-ticker-card-emoji{
  display: none;
}
.industry-ticker-line .industry-ticker-card:nth-child(9) .industry-ticker-card-emoji:empty::before{ content: "🏪"; }
.industry-ticker-line .industry-ticker-card:nth-child(9) .industry-ticker-card-media{
  background-image:
    linear-gradient(180deg, rgba(255, 255, 255, 0.06) 0%, rgba(15, 23, 42, 0.08) 100%),
    url("/assets/images/jewelry-management-software.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.industry-ticker-line .industry-ticker-card:nth-child(9) .industry-ticker-card-media::before{
  border-color: rgba(255, 255, 255, 0.38);
}
.industry-ticker-line .industry-ticker-card:nth-child(9) .industry-ticker-card-emoji{
  display: none;
}
.industry-ticker-line .industry-ticker-card:nth-child(10) .industry-ticker-card-emoji:empty::before{ content: "🍽️"; }
.industry-ticker-line .industry-ticker-card:nth-child(10) .industry-ticker-card-media{
  background-image:
    linear-gradient(180deg, rgba(255, 255, 255, 0.06) 0%, rgba(15, 23, 42, 0.08) 100%),
    url("/assets/images/flowers-gift-store-software.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.industry-ticker-line .industry-ticker-card:nth-child(10) .industry-ticker-card-media::before{
  border-color: rgba(255, 255, 255, 0.38);
}
.industry-ticker-line .industry-ticker-card:nth-child(10) .industry-ticker-card-emoji{
  display: none;
}
.industry-ticker-line .industry-ticker-card:nth-child(11) .industry-ticker-card-emoji:empty::before{ content: "🛒"; }
.industry-ticker-line .industry-ticker-card:nth-child(11) .industry-ticker-card-media{
  background-image:
    linear-gradient(180deg, rgba(255, 255, 255, 0.06) 0%, rgba(15, 23, 42, 0.08) 100%),
    url("/assets/images/agricultural-store-software.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.industry-ticker-line .industry-ticker-card:nth-child(11) .industry-ticker-card-media::before{
  border-color: rgba(255, 255, 255, 0.38);
}
.industry-ticker-line .industry-ticker-card:nth-child(11) .industry-ticker-card-emoji{
  display: none;
}
.industry-ticker-line .industry-ticker-card:nth-child(12) .industry-ticker-card-emoji:empty::before{ content: "💊"; }
.industry-ticker-line .industry-ticker-card:nth-child(12) .industry-ticker-card-media{
  background-image:
    linear-gradient(180deg, rgba(255, 255, 255, 0.06) 0%, rgba(15, 23, 42, 0.08) 100%),
    url("/assets/images/paint-store-software.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.industry-ticker-line .industry-ticker-card:nth-child(12) .industry-ticker-card-media::before{
  border-color: rgba(255, 255, 255, 0.38);
}
.industry-ticker-line .industry-ticker-card:nth-child(12) .industry-ticker-card-emoji{
  display: none;
}
.auto-spare-parts-card-media{
  background-image:
    linear-gradient(180deg, rgba(255, 255, 255, 0.06) 0%, rgba(15, 23, 42, 0.08) 100%),
    url("/assets/images/auto-spare-parts-software.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.auto-spare-parts-card-media::before{
  border-color: rgba(255, 255, 255, 0.38);
}
.auto-spare-parts-card-media .industry-ticker-card-emoji{
  display: none;
}
.pharmacy-card-media{
  background-image:
    linear-gradient(180deg, rgba(255, 255, 255, 0.06) 0%, rgba(15, 23, 42, 0.08) 100%),
    url("/assets/images/pharmacy-software.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.pharmacy-card-media::before{
  border-color: rgba(255, 255, 255, 0.38);
}
.pharmacy-card-media .industry-ticker-card-emoji{
  display: none;
}
.product-manager-card-media{
  background-image:
    linear-gradient(180deg, rgba(255, 255, 255, 0.06) 0%, rgba(15, 23, 42, 0.08) 100%),
    url("/assets/images/product-manager-software.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.product-manager-card-media::before{
  border-color: rgba(255, 255, 255, 0.38);
}
.product-manager-card-media .industry-ticker-card-emoji{
  display: none;
}
.school-management-card-media{
  background-image:
    linear-gradient(180deg, rgba(255, 255, 255, 0.06) 0%, rgba(15, 23, 42, 0.08) 100%),
    url("/assets/images/school-management-software-v2.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.school-management-card-media::before{
  border-color: rgba(255, 255, 255, 0.38);
}
.school-management-card-media .industry-ticker-card-emoji{
  display: none;
}
.madrasah-management-card-media{
  background-image:
    linear-gradient(180deg, rgba(255, 255, 255, 0.06) 0%, rgba(15, 23, 42, 0.08) 100%),
    url("/assets/images/madrasah-management-software-v2.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.madrasah-management-card-media::before{
  border-color: rgba(255, 255, 255, 0.38);
}
.madrasah-management-card-media .industry-ticker-card-emoji{
  display: none;
}
.college-campus-management-card-media{
  background-image:
    linear-gradient(180deg, rgba(255, 255, 255, 0.06) 0%, rgba(15, 23, 42, 0.08) 100%),
    url("/assets/images/college-campus-management-software-v2.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.college-campus-management-card-media::before{
  border-color: rgba(255, 255, 255, 0.38);
}
.college-campus-management-card-media .industry-ticker-card-emoji{
  display: none;
}
.petrol-pump-management-card-media{
  background-image:
    linear-gradient(180deg, rgba(255, 255, 255, 0.06) 0%, rgba(15, 23, 42, 0.08) 100%),
    url("/assets/images/petrol-pump-management-software.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.petrol-pump-management-card-media::before{
  border-color: rgba(255, 255, 255, 0.38);
}
.petrol-pump-management-card-media .industry-ticker-card-emoji{
  display: none;
}
.restaurant-management-card-media{
  background-image:
    linear-gradient(180deg, rgba(255, 255, 255, 0.06) 0%, rgba(15, 23, 42, 0.08) 100%),
    url("/assets/images/restaurant-management-software-v2.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.restaurant-management-card-media::before{
  border-color: rgba(255, 255, 255, 0.38);
}
.restaurant-management-card-media .industry-ticker-card-emoji{
  display: none;
}
.industry-ticker-card-title{
  font-size: 15px;
  font-weight: 800;
  line-height: 1.3;
  margin: 0 0 10px;
  letter-spacing: -0.02em;
  color: rgba(15, 23, 42, 0.95);
}
.industry-ticker-card-features{
  margin: 0;
  padding: 0;
  list-style: none;
  font-size: 12px;
  font-weight: 500;
  line-height: 1.5;
  color: rgba(51, 65, 85, 0.88);
}
.industry-ticker-card-features li{
  position: relative;
  padding-left: 14px;
  margin: 4px 0;
}
.industry-ticker-card-features li::before{
  content: "";
  position: absolute;
  left: 0;
  top: 0.62em;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(109, 40, 217, 0.55), rgba(37, 99, 235, 0.5));
}
.industry-card-view-toggle{
  display: inline-flex;
  align-items: center;
  gap: 4px;
  margin: 0 0 10px;
  padding: 4px;
  border-radius: 999px;
  border: 1px solid rgba(15, 23, 42, 0.1);
  background: rgba(248, 250, 252, 0.95);
}
.industry-card-view-toggle button{
  border: none;
  background: transparent;
  color: rgba(51, 65, 85, 0.9);
  font-size: 11px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.02em;
  padding: 7px 10px;
  border-radius: 999px;
  cursor: pointer;
  transition: background 0.16s ease, color 0.16s ease, box-shadow 0.16s ease;
}
.industry-card-view-toggle button.is-active{
  background: linear-gradient(135deg, rgba(109, 40, 217, 0.16), rgba(37, 99, 235, 0.14));
  color: #312e81;
  box-shadow: inset 0 0 0 1px rgba(79, 70, 229, 0.2);
}
.industry-ticker-card.is-compact .industry-ticker-card-features li[data-hidden-feature="true"]{
  display: none;
}
@keyframes tickerMove{
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
.hero-grid{
  display:grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 26px;
  align-items: start;
}
.pill{
  display:inline-flex; align-items:center; gap:10px;
  font-size: 13px; font-weight: 600;
  color: rgba(15,23,42,0.72);
  background: rgba(255,255,255,0.75);
  border: 1px solid var(--border);
  padding: 8px 12px;
  border-radius: 999px;
}
.pill-dot{
  width: 8px; height: 8px; border-radius: 999px;
  background: linear-gradient(135deg, var(--primary), var(--primary2));
}
.hero h1{
  margin: 14px 0 10px;
  font-size: clamp(34px, 4.3vw, 54px);
  line-height: 1.03;
  letter-spacing: -0.04em;
}
.hero p{
  margin: 0 0 18px;
  font-size: 16px;
  color: var(--muted);
  line-height: 1.6;
  max-width: 56ch;
}
.hero-actions{ display:flex; gap: 12px; flex-wrap:wrap; }
.hero-note{
  margin-top: 12px;
  font-size: 12.5px;
  color: rgba(71,85,105,0.95);
}

.hero-bangla{
  font-family: "Noto Sans Bengali", Inter, ui-sans-serif, system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  min-width: 0;
}
.hero-bangla-panel{
  padding: var(--landing-card-pad-y-top) var(--landing-card-pad-x) var(--landing-card-pad-y-bottom);
  border-radius: var(--landing-card-radius);
  background: #ffffff;
  border: 1px solid #e2e8f0;
  box-shadow: var(--landing-text-card-shadow);
}
.hero-bangla-kicker{
  margin: 0 0 12px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #64748b;
}
.hero-bangla h1{
  margin: 0 0 20px;
  font-size: clamp(26px, 3.2vw, 38px);
  line-height: 1.28;
  letter-spacing: -0.03em;
  color: #0f172a;
  font-weight: 700;
}
.hero-bangla-lead p{
  max-width: none;
  margin: 0 0 16px;
  font-size: 16px;
  line-height: 1.72;
  color: #475569;
}
.hero-bangla-lead p:last-child{
  margin-bottom: 0;
}
.hero-divider{
  height: 0;
  margin: 26px 0;
  border: 0;
  border-top: 1px solid #e2e8f0;
}
.hero-bangla-highlight{
  margin-top: 0;
  padding: clamp(20px, 4.2vw, 30px) clamp(18px, 3.2vw, 26px);
  border-radius: 16px;
  background: #fff;
  border: 1px solid #e2e8f0;
  box-shadow: 0 4px 24px rgba(15, 23, 42, 0.06);
}
.hero-bangla-extra{
  margin-top: 0;
}
.hero-bangla-highlight .hero-bangla-about-title{
  margin: 0 0 16px;
  font-size: clamp(19px, 2.1vw, 24px);
  font-weight: 700;
  color: #1e3a8a;
  letter-spacing: -0.02em;
  line-height: 1.3;
}
.hero-bangla-about-title{
  margin: 0 0 14px;
  font-size: clamp(19px, 2.1vw, 24px);
  font-weight: 700;
  color: #0f172a;
  letter-spacing: -0.02em;
  line-height: 1.3;
}
.hero-bangla-lead--extra{
  margin-bottom: 22px;
}
.hero-bangla-highlight .hero-bangla-lead--extra p{
  color: #334155;
  line-height: 1.75;
}
.hero-bangla-lead--extra p{
  margin-bottom: 14px;
}
.hero-bangla-lead--extra p:last-child{
  margin-bottom: 0;
}
.hero-bangla-contact{
  margin: 0;
}
.hero-bangla-highlight .hero-bangla-contact .hero-bangla-sub{
  margin-bottom: 14px;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.02em;
  text-transform: none;
  color: #1d4ed8;
}
.hero-bangla-contact .hero-bangla-sub{
  margin-bottom: 12px;
}
.hero-bangla-highlight .hero-bangla-youtube .hero-bangla-sub{
  margin-bottom: 14px;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.02em;
  text-transform: none;
  color: #1e3a8a;
}
.hero-bangla-contact-list{
  list-style: none;
  margin: 0;
  padding: 0;
  font-size: 15px;
  line-height: 1.65;
  font-weight: 600;
}
.hero-bangla-contact-list li{
  margin: 0 0 12px;
}
.hero-bangla-contact-list li:last-child{
  margin-bottom: 0;
}
.hero-bangla-contact-link{
  display: flex;
  align-items: center;
  gap: 12px;
  color: #1d4ed8;
  text-decoration: none;
  word-break: break-word;
  border-radius: 10px;
  padding: 4px 6px 4px 4px;
  margin: -4px -6px -4px -4px;
  transition: background-color 0.15s ease, box-shadow 0.15s ease;
}
.hero-bangla-contact-link:hover{
  background: #f8fafc;
  box-shadow: none;
}
.hero-bangla-contact-link:hover .hero-bangla-contact-text{
  text-decoration: underline;
}
.hero-bangla-contact-link:focus-visible{
  outline: 2px solid #2563eb;
  outline-offset: 2px;
}
.hero-bangla-contact-icon{
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 12px;
  background: #f1f5f9;
  box-shadow: 0 1px 2px rgba(15, 23, 42, 0.06);
}
.hero-bangla-contact-icon--phone{
  color: #db2777;
}
.hero-bangla-contact-icon--mail{
  color: #2563eb;
}
.hero-bangla-contact-text{
  font-weight: 600;
  color: #1d4ed8;
}
.hero-bangla-contact-list a:not(.hero-bangla-contact-link){
  color: #1d4ed8;
  text-decoration: none;
  word-break: break-word;
}
.hero-bangla-contact-list a:not(.hero-bangla-contact-link):hover{
  text-decoration: underline;
}
.hero-bangla-highlight .hero-bangla-youtube{
  margin-top: 0;
  padding-top: 22px;
  border-top: 1px solid #e2e8f0;
}
.hero-bangla-youtube{
  margin-top: 28px;
}
.hero-bangla-youtube .hero-bangla-sub{
  margin-bottom: 14px;
}
.hero-bangla-youtube-frame{
  position: relative;
  width: 100%;
  max-width: 100%;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
  border-radius: 12px;
  border: 1px solid #e2e8f0;
  background: #0f172a;
  box-shadow: 0 4px 16px rgba(15, 23, 42, 0.08);
}
.hero-bangla-youtube-frame iframe{
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}
.hero-bangla-youtube-channel{
  margin: 12px 0 0;
  font-size: 14px;
  line-height: 1.5;
}
.hero-bangla-youtube-channel a{
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: #1d4ed8;
  font-weight: 600;
  text-decoration: none;
}
.hero-bangla-youtube-channel a:hover{
  text-decoration: underline;
}
.hero-bangla-highlight .hero-bangla-youtube-channel a{
  color: #1e40af;
}
.hero-feature-box{
  margin-top: 0;
  padding: 0;
  border-radius: 0;
  background: transparent;
  border: none;
}
.hero-bangla-sub{
  margin: 0 0 18px;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: #64748b;
}
.hero-bangla-sub::after{
  display: none;
}
.hero-bangla-list{
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0;
  font-size: 14.5px;
  line-height: 1.58;
  color: #334155;
}
.hero-bangla-list li{
  display: flex;
  gap: 12px;
  align-items: flex-start;
  margin: 0;
  padding: 12px 0;
  border-bottom: 1px solid #f1f5f9;
  transition: background-color 0.15s ease;
}
.hero-bangla-list li:first-child{
  padding-top: 0;
}
.hero-bangla-list li:last-child{
  border-bottom: 0;
  padding-bottom: 0;
}
.hero-bangla-list li::before{
  content: "";
  flex: 0 0 22px;
  width: 22px;
  height: 22px;
  margin-top: 1px;
  border-radius: 999px;
  background-color: #ecfdf5;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23059669' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M20 6L9 17l-5-5'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 12px 12px;
  border: 1px solid #a7f3d0;
}
.hero-bangla-list strong{
  color: #0f172a;
  font-weight: 600;
}
.hero-bangla-trust{
  margin-top: 26px;
  padding: 20px 22px;
  border-radius: 10px;
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-left: 4px solid #5b21b6;
}
.hero-bangla-trust p{
  margin: 0 0 8px;
  font-size: 15px;
  line-height: 1.65;
  color: #475569;
}
.hero-bangla-trust p:last-child{
  margin-bottom: 0;
}
.hero-bangla-trust-tag{
  font-weight: 600 !important;
  color: #0f172a !important;
  font-size: 15px !important;
}
.hero-bangla-foot{
  margin-top: 26px;
  padding-top: 22px;
  border-top: 1px solid #e2e8f0;
}
.hero-bangla-actions{
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}
.hero-bangla-actions .btn-primary{
  border-color: #5b21b6;
  background: #5b21b6;
  box-shadow: 0 1px 2px rgba(15, 23, 42, 0.08);
}
.hero-bangla-actions .btn-primary:hover{
  background: #4c1d95;
  border-color: #4c1d95;
}
.hero-bangla-actions .btn:not(.btn-primary){
  background: #fff;
  border-color: #cbd5e1;
  color: #334155;
}
.hero-bangla-actions .btn:not(.btn-primary):hover{
  border-color: #94a3b8;
  background: #f8fafc;
}
.hero-bangla-call{
  margin: 16px 0 0;
  font-size: 14px;
  line-height: 1.55;
  color: #64748b;
  padding-left: 0;
}
.hero-bangla-call::before{
  display: none;
}

/* Bangla hero: top promo 16:9, YouTube CTA, then CEO letter */
.hero-visual-stack{
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 12px;
}
.hero-announcement-group{
  display: flex;
  flex-direction: column;
  gap: 8px;
  min-width: 0;
}
/* Match text panel inset so kicker and first image align on the same horizontal level */
.hero--bangla .hero-visual-stack{
  padding: var(--landing-card-pad-y-top) var(--landing-card-pad-x) var(--landing-card-pad-y-bottom);
  box-sizing: border-box;
}
.hero-visual-piece{
  margin: 0;
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  border-radius: var(--landing-promo-radius);
  background: #f1f5f9;
  border: 1px solid rgba(15, 23, 42, 0.08);
  box-shadow: var(--landing-promo-shadow);
}
.hero-visual-piece--primary{
  aspect-ratio: 4 / 3;
}
.hero-visual-piece img{
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center;
}
.hero-visual-piece--primary img{
  object-fit: cover;
  object-position: 44% 12%;
}
.hero-photo-welcome{
  position: relative;
  margin: 0;
  padding: 14px 14px 14px 16px;
  border-radius: 14px;
  background:
    linear-gradient(165deg, rgba(255, 255, 255, 0.98) 0%, rgba(248, 250, 252, 0.96) 54%, rgba(241, 245, 249, 0.94) 100%);
  border: 1px solid rgba(37, 99, 235, 0.2);
  border-left: 4px solid #2563eb;
  box-shadow:
    0 1px 2px rgba(15, 23, 42, 0.05),
    0 8px 24px rgba(37, 99, 235, 0.08);
  font-family: "Noto Sans Bengali", Inter, ui-sans-serif, system-ui, sans-serif;
}
.hero-photo-welcome::before{
  content: "KroyKari Update";
  display: inline-block;
  margin: 0 0 8px;
  padding: 4px 10px;
  border-radius: 999px;
  font-family: Inter, ui-sans-serif, system-ui, sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #1d4ed8;
  background: rgba(37, 99, 235, 0.1);
}
.hero-photo-welcome p{
  margin: 0;
  color: #334155;
  font-size: 14px;
  line-height: 1.62;
  font-weight: 600;
  text-align: justify;
  text-justify: inter-word;
}
.hero-photo-welcome p + p{
  margin-top: 9px;
  color: #334155;
  font-weight: 600;
}
.hero-photo-welcome__name{
  display: inline-block;
  font-weight: 800;
  color: #1d4ed8;
  background: rgba(37, 99, 235, 0.14);
  border-radius: 6px;
  padding: 1px 6px;
}
.hero-photo-welcome__role{
  font-weight: 800;
  color: #000000;
}
.hero-photo-welcome__signature{
  display: block;
  width: 100%;
  margin-top: 8px;
  font-family: Inter, ui-sans-serif, system-ui, sans-serif;
  font-weight: 800;
  font-size: 12px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #000000;
  text-align: right;
}
.hero-photo-welcome__thanks{
  margin-top: 9px;
  font-weight: 800;
  color: #0f172a;
  text-align: right;
}
.hero-photo-welcome--prior::before{
  content: "Earlier update";
  color: #475569;
  background: rgba(71, 85, 105, 0.12);
}
@media (max-width: 640px){
  .hero-photo-welcome{
    padding: 12px 12px 12px 14px;
  }
  .hero-photo-welcome p{
    font-size: 13px;
    line-height: 1.58;
  }
}
.hero-card.hero-static-visual{
  padding: 0;
  align-self: start;
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: var(--landing-card-radius);
  box-shadow: var(--landing-media-card-shadow);
  overflow: hidden;
}
@media (min-width: 981px){
  /* Equal-height columns: left text card stretches to match right image column */
  .hero--bangla .hero-bangla{
    display: flex;
    flex-direction: column;
    align-self: stretch;
    min-height: 100%;
    height: 100%;
    min-width: 0;
  }
  .hero--bangla .hero-bangla-panel{
    flex: 1 1 auto;
    display: flex;
    flex-direction: column;
    min-height: 0;
  }
  .hero--bangla .hero-bangla-trust{
    margin-bottom: 26px;
  }
  .hero--bangla .hero-bangla-foot{
    margin-top: auto;
  }
  .hero--bangla .hero-card.hero-static-visual{
    align-self: stretch;
    display: flex;
    flex-direction: column;
    height: 100%;
    min-height: 0;
  }
  /* Current + prior announcement blocks + CEO letter */
  .hero--bangla .hero-visual-stack{
    flex: 1 1 auto;
    min-height: 0;
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    grid-template-rows: auto auto auto;
    gap: 12px;
    align-content: stretch;
  }
  .hero--bangla .hero-announcement-group:nth-child(1){
    grid-row: 1;
  }
  .hero--bangla .hero-announcement-group:nth-child(2){
    grid-row: 2;
  }
  .hero--bangla .hero-ceo-letter{
    grid-row: 3;
    align-self: stretch;
    min-height: 0;
  }
}
.hero-ceo-letter{
  position: relative;
  margin: 0;
  padding: 0;
  border-radius: var(--landing-card-radius);
  background: linear-gradient(
    165deg,
    rgba(255, 255, 255, 0.98) 0%,
    rgba(248, 250, 252, 0.96) 45%,
    rgba(241, 245, 249, 0.94) 100%
  );
  border: 1px solid rgba(15, 23, 42, 0.09);
  box-shadow:
    0 1px 2px rgba(15, 23, 42, 0.04),
    0 14px 36px rgba(109, 40, 217, 0.08),
    0 6px 16px rgba(37, 99, 235, 0.05);
  overflow: hidden;
  font-family: "Noto Sans Bengali", ui-sans-serif, system-ui, sans-serif;
  font-size: 14px;
  line-height: 1.7;
  color: #3d4e63;
  text-align: left;
  transition: box-shadow 0.22s ease, transform 0.22s ease;
}
.hero-card.hero-static-visual:hover .hero-ceo-letter{
  box-shadow:
    0 1px 2px rgba(15, 23, 42, 0.05),
    0 18px 44px rgba(109, 40, 217, 0.11),
    0 8px 22px rgba(37, 99, 235, 0.07);
}
.hero-ceo-letter::before{
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 4px;
  background: linear-gradient(180deg, var(--primary2) 0%, var(--primary) 55%, rgba(109, 40, 217, 0.85) 100%);
  border-radius: var(--landing-card-radius) 0 0 var(--landing-card-radius);
  pointer-events: none;
}
.hero-ceo-letter__top{
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px 20px 14px 24px;
  border-bottom: 1px solid rgba(15, 23, 42, 0.06);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.95) 0%, rgba(248, 250, 252, 0.4) 100%);
}
.hero-ceo-letter__mark{
  flex-shrink: 0;
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 12px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 26px;
  line-height: 1;
  font-weight: 700;
  color: var(--primary);
  background: linear-gradient(145deg, rgba(109, 40, 217, 0.14) 0%, rgba(37, 99, 235, 0.1) 100%);
  border: 1px solid rgba(109, 40, 217, 0.18);
  box-shadow: 0 1px 2px rgba(109, 40, 217, 0.08) inset;
}
.hero-ceo-letter__eyebrow{
  margin: 0;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: var(--primary);
}
.hero-ceo-letter__body{
  padding: 18px 22px 16px 26px;
  font-size: 14.5px;
  line-height: 1.74;
}
.hero-ceo-letter__body p{
  margin: 0 0 14px;
}
.hero-ceo-letter__body p:last-child{
  margin-bottom: 0;
}
.hero-ceo-letter__greeting,
.hero-ceo-letter__salutation{
  font-weight: 700;
  color: #0f172a;
  font-size: 15px;
}
.hero-ceo-letter__salutation{
  margin-top: -6px;
  color: #1e293b;
}
.hero-ceo-letter__highlight{
  margin-top: 4px !important;
  padding: 14px 16px;
  border-radius: 10px;
  background: linear-gradient(95deg, rgba(109, 40, 217, 0.07) 0%, rgba(37, 99, 235, 0.05) 100%);
  border: 1px solid rgba(109, 40, 217, 0.12);
  border-left: 3px solid var(--primary);
  color: #0f172a;
  font-weight: 600;
  line-height: 1.68;
}
.hero-ceo-letter__signoff{
  padding: 16px 22px 20px 26px;
  background: rgba(255, 255, 255, 0.72);
  border-top: 1px solid rgba(15, 23, 42, 0.07);
}
.hero-ceo-letter__closing{
  margin: 0 0 10px;
  font-weight: 700;
  color: #1e293b;
  font-size: 14px;
}
.hero-ceo-letter__signature{
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin: 0;
}
.hero-ceo-letter__name{
  font-family: Inter, ui-sans-serif, system-ui, sans-serif;
  font-weight: 800;
  font-size: 15px;
  color: #0f172a;
  letter-spacing: -0.02em;
}
.hero-ceo-letter__title{
  font-family: Inter, ui-sans-serif, system-ui, sans-serif;
  font-size: 12.5px;
  color: #64748b;
  font-weight: 600;
  letter-spacing: 0.02em;
}
.hero-youtube-subscribe{
  width: 100%;
  padding: 0;
}
.hero-youtube-subscribe--top{
  margin: 4px 0;
}
.hero-youtube-subscribe__mask{
  width: 100%;
  overflow: hidden;
  background: transparent;
  border: 0;
  box-shadow: none;
}
.hero-youtube-subscribe__track{
  display: inline-flex;
  align-items: center;
  width: max-content;
  animation: heroYoutubeTickerMove 26s linear infinite;
  will-change: transform;
}
.hero-youtube-subscribe__item{
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  white-space: nowrap;
}
.hero-youtube-subscribe__mask:hover .hero-youtube-subscribe__track{
  animation-play-state: paused;
}
@keyframes heroYoutubeTickerMove{
  0% { transform: translateX(100%); }
  100% { transform: translateX(-100%); }
}
.hero-youtube-subscribe__text{
  margin: 0;
  display: inline-block;
  text-align: center;
  font-size: 12px;
  line-height: 1.25;
  color: #334155;
  font-weight: 600;
}
.hero-youtube-subscribe__text .btn-youtube-subscribe{
  margin-left: 8px;
  vertical-align: middle;
}
.btn-youtube-subscribe{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 6px 10px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: #fff;
  background: #cc0000;
  border: 1px solid rgba(0, 0, 0, 0.12);
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.08);
  text-decoration: none;
  transition: background 0.15s ease, transform 0.15s ease, box-shadow 0.15s ease;
}
.btn-youtube-subscribe:hover{
  background: #b00000;
  color: #fff;
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(204, 0, 0, 0.35);
}
.btn.btn-youtube-subscribe:focus-visible{
  outline: 2px solid #cc0000;
  outline-offset: 2px;
  box-shadow: 0 0 0 3px rgba(204, 0, 0, 0.25);
}
.btn-youtube-subscribe__icon{
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}
@media (prefers-reduced-motion: reduce){
  .hero-youtube-subscribe__track{
    animation: none;
    transform: none;
  }
}
.hero-card.hero-static-visual:hover{
  transform: translateY(-2px);
  box-shadow:
    0 1px 2px rgba(15, 23, 42, 0.05),
    0 20px 48px rgba(15, 23, 42, 0.09);
}

.hero-card{
  background: rgba(255,255,255,0.76);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  overflow:hidden;
  transition: transform .2s ease, box-shadow .2s ease;
}
.hero-card:hover{
  transform: translateY(-2px);
  box-shadow: 0 22px 60px rgba(2, 6, 23, 0.14);
}
.hero-slider{
  padding: 12px;
  display: grid;
  gap: 10px;
}
.hero-slider-track{
  position: relative;
  border-radius: 14px;
  overflow: hidden;
  aspect-ratio: 4 / 3;
  background: #eef2ff;
}
.hero-slide{
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity .5s ease;
}
.hero-slide.is-active{
  opacity: 1;
}
.hero-slide img{
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero-slider-dots{
  display: flex;
  justify-content: center;
  gap: 8px;
}
.hero-slider-dot{
  width: 8px;
  height: 8px;
  border-radius: 999px;
  border: 0;
  background: rgba(148,163,184,0.9);
  cursor: pointer;
  transition: width .2s ease, background .2s ease;
}
.hero-slider-dot.is-active{
  width: 22px;
  background: linear-gradient(135deg, var(--primary), var(--primary2));
}
.hero-slider-dot:focus-visible{
  outline: 2px solid var(--ring);
  outline-offset: 2px;
}

.section{
  padding: 44px 0;
}
section[id]{
  scroll-margin-top: 96px;
}
.section h2{
  margin: 0 0 10px;
  font-size: clamp(24px, 3vw, 34px);
  letter-spacing: -0.03em;
  max-width: 20ch;
}
.section p.lead{
  margin: 0 0 18px;
  color: rgba(51, 65, 85, 0.98);
  line-height: 1.7;
  max-width: 80ch;
  font-size: 15.5px;
}
/* Industries (#industries): one-line title + large warm-highlight icon */
#industries .industries-heading{
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: clamp(14px, 2.5vw, 22px);
  margin: 0 0 10px;
}
#industries .industries-heading h2{
  margin: 0;
  max-width: none;
  flex: 1 1 auto;
  min-width: min(100%, 280px);
}
@media (min-width: 880px){
  #industries .industries-heading h2{
    white-space: nowrap;
  }
}
#industries .industries-heading-icon{
  flex-shrink: 0;
  width: clamp(72px, 12vw, 88px);
  height: clamp(72px, 12vw, 88px);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 22px;
  color: #92400e;
  background: linear-gradient(155deg, #fffbeb 0%, #fef3c7 42%, #fde68a 100%);
  border: 1px solid rgba(245, 158, 11, 0.42);
  box-shadow:
    0 12px 32px rgba(245, 158, 11, 0.18),
    0 2px 8px rgba(180, 83, 9, 0.06),
    inset 0 1px 0 rgba(255, 255, 255, 0.85);
}
#industries .industries-heading-icon svg{
  width: clamp(36px, 6vw, 44px);
  height: clamp(36px, 6vw, 44px);
}
/* Industries cards: large warm (yellow) icon tiles */
#industries .grid-3{
  gap: clamp(14px, 2vw, 20px);
}
#industries .grid-3 .card{
  padding: clamp(1.1rem, 2.2vw, 1.5rem);
}
#industries .card h3{
  margin-top: 14px;
}
#industries .card .icon{
  width: 76px;
  height: 76px;
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #0f172a;
  background: linear-gradient(155deg, #fffbeb 0%, #fef08a 38%, #fde047 100%);
  border: 1px solid rgba(234, 179, 8, 0.45);
  box-shadow:
    0 10px 28px rgba(234, 179, 8, 0.22),
    0 2px 8px rgba(180, 83, 9, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.75);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
#industries .card:nth-child(2) .icon{
  background: linear-gradient(155deg, #fffbeb 0%, #fef9c3 40%, #fde68a 100%);
}
#industries .card:nth-child(3) .icon{
  background: linear-gradient(155deg, #fff7ed 0%, #ffedd5 42%, #fed7aa 100%);
  border-color: rgba(251, 146, 60, 0.4);
  box-shadow:
    0 10px 28px rgba(251, 146, 60, 0.16),
    0 2px 8px rgba(180, 83, 9, 0.06),
    inset 0 1px 0 rgba(255, 255, 255, 0.75);
}
#industries .card:hover .icon{
  transform: translateY(-2px) scale(1.03);
  box-shadow:
    0 14px 36px rgba(234, 179, 8, 0.28),
    0 4px 12px rgba(180, 83, 9, 0.1),
    inset 0 1px 0 rgba(255, 255, 255, 0.85);
}
#industries .card:nth-child(3):hover .icon{
  box-shadow:
    0 14px 36px rgba(251, 146, 60, 0.22),
    0 4px 12px rgba(180, 83, 9, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.85);
}
#industries .card .icon svg{
  width: 36px;
  height: 36px;
}
@media (prefers-reduced-motion: reduce){
  #industries .card .icon{
    transition: none;
  }
  #industries .card:hover .icon{
    transform: none;
  }
}
/* Solutions: industry grid (kroykari.com #solutions) */
.section-solutions{
  position: relative;
  padding: 56px 0 64px;
  overflow: hidden;
  background: #ffffff;
  border-top: 1px solid rgba(226, 232, 240, 0.9);
  border-bottom: 1px solid rgba(226, 232, 240, 0.9);
}
.section-solutions::before{
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(ellipse 120% 80% at 50% -20%, rgba(109, 40, 217, 0.07), transparent 55%),
    radial-gradient(ellipse 90% 60% at 100% 50%, rgba(37, 99, 235, 0.04), transparent 45%),
    linear-gradient(180deg, #ffffff 0%, #f8faff 50%, #fafbfc 100%);
}
.section-solutions .container{
  position: relative;
  z-index: 1;
}
.section-solutions-intro-row{
  display: grid;
  grid-template-columns: minmax(0, 0.96fr) minmax(0, 1.04fr);
  gap: clamp(20px, 3.5vw, 48px);
  align-items: center;
}
.section-solutions-intro{
  text-align: left;
  max-width: min(40rem, 100%);
  margin: 0;
  padding: 0;
  min-width: 0;
}
.section-solutions-intro-visual{
  margin: 0;
  padding: 0;
  min-width: 0;
  display: flex;
  align-items: center;
  justify-content: flex-end;
}
.section-solutions-intro-visual picture{
  display: block;
  width: 100%;
  max-width: min(590px, 100%);
  padding: 0;
  border-radius: 0;
  border: 0;
  background: transparent;
  box-shadow: none;
  line-height: 0;
}
.section-solutions-intro-visual img{
  display: block;
  width: 100%;
  height: auto;
  object-fit: contain;
  object-position: center;
  filter: none;
}
@media (max-width: 820px){
  .section-solutions-intro-row{
    grid-template-columns: 1fr;
    gap: 28px;
  }
  .section-solutions-intro-visual{
    justify-content: center;
  }
  .section-solutions-intro-visual picture{
    max-width: min(480px, 100%);
  }
}
.section-solutions-eyebrow{
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px 12px;
  margin: 0 0 14px;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", sans-serif;
}
.section-solutions-eyebrow__badge{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 7px 13px;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.04em;
  color: #0f172a;
  line-height: 1;
  background: linear-gradient(180deg, #fffdf5 0%, #fef3c7 55%, #fde68a 100%);
  border: 1px solid rgba(251, 191, 36, 0.42);
  border-radius: 9px;
  box-shadow: 0 1px 3px rgba(251, 191, 36, 0.18);
}
.section-solutions-eyebrow__rest{
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #4f46e5;
}
.section-solutions h2,
.section-solutions .lead{
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", sans-serif;
}
.section-solutions-intro h2{
  margin: 0 0 14px;
  max-width: 100%;
  color: #1a1a2e;
  line-height: 1.22;
  letter-spacing: -0.03em;
  font-size: clamp(1.45rem, 2.8vw, 2rem);
  overflow-wrap: break-word;
  word-wrap: break-word;
}
.section-solutions-intro .lead{
  margin: 0;
  max-width: 100%;
  color: #555555;
  line-height: 1.65;
  font-size: clamp(12.5px, 1.15vw, 14.5px);
  overflow-wrap: break-word;
  word-wrap: break-word;
}
.section-solutions-intro .lead .section-solutions-lead-accent{
  display: block;
  width: fit-content;
  max-width: 100%;
  margin-top: 10px;
  margin-left: auto;
  text-align: right;
  font-weight: 600;
  letter-spacing: -0.015em;
  line-height: 1.55;
  color: #3730a3;
  padding: 10px 16px 10px 24px;
  border-right: 3px solid #6366f1;
  border-radius: 12px 0 0 12px;
  background: linear-gradient(270deg, rgba(99, 102, 241, 0.12) 0%, rgba(99, 102, 241, 0.04) 55%, transparent 100%);
  box-sizing: border-box;
}
.section-solutions-grid{
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(18px, 2.2vw, 28px);
  margin-top: 44px;
}
.section-solutions .solutions-card{
  position: relative;
  height: 100%;
  margin: 0;
  padding: clamp(1.35rem, 3vw, 2rem) clamp(1.25rem, 2.5vw, 1.75rem);
  border: 1px solid rgba(226, 232, 240, 0.95);
  border-radius: 16px;
  box-shadow:
    0 1px 2px rgba(26, 26, 46, 0.04),
    0 8px 24px rgba(26, 26, 46, 0.05);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  overflow: hidden;
  isolation: isolate;
  transition:
    transform 0.22s cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 0.22s cubic-bezier(0.22, 1, 0.36, 1),
    border-color 0.22s ease;
}
.section-solutions .solutions-card::before{
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  height: 3px;
  background: linear-gradient(90deg, #6366f1, #8b5cf6, #2563eb);
  opacity: 0;
  transform: scaleX(0.6);
  transform-origin: left;
  transition: opacity 0.22s ease, transform 0.28s cubic-bezier(0.22, 1, 0.36, 1);
}
.section-solutions .solutions-card:nth-child(4n + 1){
  background: linear-gradient(165deg, #f8faff 0%, #f3f6ff 100%);
}
.section-solutions .solutions-card:nth-child(4n + 2){
  background: linear-gradient(165deg, #fafbfc 0%, #f1f5f9 100%);
}
.section-solutions .solutions-card:nth-child(4n + 3){
  background: linear-gradient(165deg, #f8fffc 0%, #f0fdf8 100%);
}
.section-solutions .solutions-card:nth-child(4n + 4){
  background: linear-gradient(165deg, #fffbf5 0%, #fff7ed 100%);
}
.section-solutions .solutions-card:hover{
  transform: translateY(-5px);
  border-color: rgba(99, 102, 241, 0.28);
  box-shadow:
    0 4px 12px rgba(37, 99, 235, 0.08),
    0 22px 48px rgba(26, 26, 46, 0.11);
}
.section-solutions .solutions-card:hover::before{
  opacity: 1;
  transform: scaleX(1);
}
.section-solutions .solutions-card:focus-within{
  outline: none;
  border-color: rgba(99, 102, 241, 0.45);
  box-shadow:
    0 0 0 3px rgba(99, 102, 241, 0.2),
    0 12px 36px rgba(26, 26, 46, 0.08);
}
.section-solutions .solutions-card .icon{
  display: flex;
  align-items: center;
  justify-content: center;
  width: 88px;
  height: 88px;
  flex-shrink: 0;
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.9);
  box-shadow:
    0 12px 32px rgba(15, 23, 42, 0.09),
    0 4px 10px rgba(15, 23, 42, 0.04),
    inset 0 1px 0 rgba(255, 255, 255, 0.98);
  transition:
    color 0.22s ease,
    border-color 0.22s ease,
    transform 0.24s cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 0.24s cubic-bezier(0.22, 1, 0.36, 1);
}
/* Same footprint for every card; hue matches column tint */
.section-solutions .solutions-card:nth-child(4n + 1) .icon{
  color: #4338ca;
  background: linear-gradient(155deg, #ffffff 0%, #eef2ff 48%, #e0e7ff 100%);
  border-color: rgba(99, 102, 241, 0.28);
}
.section-solutions .solutions-card:nth-child(4n + 2) .icon{
  color: #1d4ed8;
  background: linear-gradient(155deg, #ffffff 0%, #eff6ff 48%, #dbeafe 100%);
  border-color: rgba(37, 99, 235, 0.26);
}
.section-solutions .solutions-card:nth-child(4n + 3) .icon{
  color: #047857;
  background: linear-gradient(155deg, #ffffff 0%, #ecfdf5 48%, #d1fae5 100%);
  border-color: rgba(5, 150, 105, 0.26);
}
.section-solutions .solutions-card:nth-child(4n + 4) .icon{
  color: #c2410c;
  background: linear-gradient(155deg, #ffffff 0%, #fffbeb 48%, #ffedd5 100%);
  border-color: rgba(234, 88, 12, 0.28);
}
.section-solutions .solutions-card:hover .icon{
  box-shadow:
    0 18px 44px rgba(15, 23, 42, 0.12),
    0 8px 18px rgba(15, 23, 42, 0.06),
    inset 0 1px 0 rgba(255, 255, 255, 1);
  transform: translateY(-4px) scale(1.04);
}
.section-solutions .solutions-card:nth-child(4n + 1):hover .icon{
  border-color: rgba(99, 102, 241, 0.42);
}
.section-solutions .solutions-card:nth-child(4n + 2):hover .icon{
  border-color: rgba(37, 99, 235, 0.4);
}
.section-solutions .solutions-card:nth-child(4n + 3):hover .icon{
  border-color: rgba(5, 150, 105, 0.4);
}
.section-solutions .solutions-card:nth-child(4n + 4):hover .icon{
  border-color: rgba(234, 88, 12, 0.42);
}
.section-solutions .solutions-card .icon svg{
  width: 42px;
  height: 42px;
}
.section-solutions .solutions-card h3{
  margin: 20px 0 10px;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", sans-serif;
  font-size: 17px;
  font-weight: 700;
  color: #0f172a;
  line-height: 1.35;
  letter-spacing: -0.02em;
  max-width: 22ch;
  text-wrap: balance;
}
.section-solutions .solutions-card p{
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", sans-serif;
  font-size: 14px;
  line-height: 1.7;
  color: #475569;
  max-width: 42ch;
}
@media (prefers-reduced-motion: reduce){
  .section-solutions .solutions-card,
  .section-solutions .solutions-card::before,
  .section-solutions .solutions-card .icon{
    transition: none;
  }
  .section-solutions .solutions-card:hover{
    transform: none;
  }
  .section-solutions .solutions-card:hover .icon{
    transform: none;
  }
}
@media (max-width: 980px){
  .section-solutions-grid{
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (max-width: 600px){
  .section-solutions{
    padding: 44px 0 52px;
  }
  .section-solutions-grid{
    grid-template-columns: 1fr;
    margin-top: 32px;
  }
}

.products-detail-list-wrap{
  margin-top: clamp(22px, 3vw, 36px);
  border: 1px solid #dbe7ff;
  border-radius: 16px;
  background: linear-gradient(180deg, #f8fbff 0%, #fdfefe 100%);
  padding: clamp(16px, 2.2vw, 24px);
}
.products-detail-list-wrap h3{
  margin: 0;
  color: #0f172a;
  font-size: clamp(1.05rem, 1.8vw, 1.35rem);
}
.products-detail-list-lead{
  margin: 8px 0 0;
  color: #475569;
  font-size: 0.95rem;
}
.products-detail-list{
  margin-top: 20px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(18px, 2.4vw, 28px);
}
.products-detail-item{
  background: #ffffff;
  border: 1px solid rgba(226, 232, 240, 0.95);
  border-radius: 18px;
  padding: 0;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  box-shadow:
    0 1px 2px rgba(15, 23, 42, 0.04),
    0 12px 40px rgba(15, 23, 42, 0.07);
  transition:
    transform 0.22s cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 0.22s cubic-bezier(0.22, 1, 0.36, 1),
    border-color 0.22s ease;
}
.products-detail-item:hover{
  transform: translateY(-3px);
  border-color: rgba(99, 102, 241, 0.22);
  box-shadow:
    0 4px 12px rgba(37, 99, 235, 0.08),
    0 22px 56px rgba(15, 23, 42, 0.1);
}
.products-detail-item-thumb{
  width: 100%;
  min-height: clamp(200px, 32vw, 320px);
  aspect-ratio: 16 / 10;
  border-radius: 0;
  border: none;
  background-color: #e8f0fe;
  background-size: cover;
  background-position: center;
  position: relative;
  overflow: hidden;
  flex-shrink: 0;
}
.products-detail-item-thumb-image{
  position: absolute;
  inset: 0;
  border-radius: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  z-index: 0;
}
.products-detail-item-thumb::after{
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.08) 0%,
    transparent 40%,
    rgba(15, 23, 42, 0.06) 100%
  );
  border-bottom: 1px solid rgba(255, 255, 255, 0.4);
}
.products-detail-item-body{
  min-width: 0;
  padding: clamp(16px, 2vw, 22px) clamp(16px, 2.2vw, 24px) clamp(18px, 2.2vw, 26px);
}
.products-detail-item-title{
  margin: 0;
  color: #0f172a;
  font-size: clamp(1rem, 1.15vw, 1.12rem);
  font-weight: 700;
  line-height: 1.35;
  letter-spacing: -0.02em;
}
.products-detail-item-features{
  margin: 12px 0 0;
  padding-left: 20px;
  color: #475569;
  font-size: clamp(0.875rem, 1vw, 0.9375rem);
  line-height: 1.55;
}
.products-detail-item-features li + li{
  margin-top: 6px;
}
@media (prefers-reduced-motion: reduce){
  .products-detail-item{
    transition: none;
  }
  .products-detail-item:hover{
    transform: none;
  }
}
@media (max-width: 860px){
  .products-detail-list{
    grid-template-columns: 1fr;
  }
  .products-detail-item-thumb{
    min-height: clamp(220px, 52vw, 300px);
    aspect-ratio: 16 / 10;
  }
}

.grid-3{
  display:grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}
.card{
  background: rgba(255,255,255,0.78);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 16px;
  box-shadow: 0 10px 30px rgba(2,6,23,0.06);
  transition: transform .14s ease, box-shadow .14s ease, border-color .14s ease;
}
.card:hover{
  transform: translateY(-2px);
  box-shadow: 0 14px 34px rgba(2, 6, 23, 0.10);
  border-color: rgba(109, 40, 217, 0.18);
}
.card h3{
  margin: 10px 0 6px;
  font-size: 16px;
  letter-spacing:-0.01em;
}
.card p{
  margin: 0;
  color: var(--muted);
  line-height: 1.6;
  font-size: 14px;
}
.icon{
  width: 36px; height: 36px;
  border-radius: 14px;
  display:grid; place-items:center;
  background: rgba(37,99,235,0.10);
  border: 1px solid rgba(37,99,235,0.18);
}
.icon svg{ width: 18px; height: 18px; }

/* Professional services (#services): full-width heading, larger icon tiles */
#services h2{
  max-width: none;
}
@media (min-width: 900px){
  #services h2{
    white-space: nowrap;
  }
}
#services .grid-3{
  gap: clamp(16px, 2vw, 22px);
}
#services .grid-3 .card{
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: clamp(1.25rem, 2.4vw, 1.85rem);
}
#services .card h3{
  margin: 18px 0 8px;
}
#services .card .icon{
  width: 80px;
  height: 80px;
  border-radius: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: #1d4ed8;
  background: linear-gradient(155deg, #ffffff 0%, #eff6ff 48%, #e8f0fe 100%);
  border: 1px solid rgba(37, 99, 235, 0.24);
  box-shadow:
    0 12px 30px rgba(15, 23, 42, 0.08),
    0 2px 8px rgba(15, 23, 42, 0.04),
    inset 0 1px 0 rgba(255, 255, 255, 0.96);
  transition: transform 0.22s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.22s ease, border-color 0.22s ease;
}
#services .card:nth-child(3n + 1) .icon{
  color: #4338ca;
  background: linear-gradient(155deg, #ffffff 0%, #eef2ff 48%, #e0e7ff 100%);
  border-color: rgba(99, 102, 241, 0.26);
}
#services .card:nth-child(3n + 2) .icon{
  color: #1d4ed8;
  background: linear-gradient(155deg, #ffffff 0%, #eff6ff 48%, #dbeafe 100%);
  border-color: rgba(37, 99, 235, 0.24);
}
#services .card:nth-child(3n + 3) .icon{
  color: #047857;
  background: linear-gradient(155deg, #ffffff 0%, #ecfdf5 48%, #d1fae5 100%);
  border-color: rgba(5, 150, 105, 0.24);
}
#services .card:hover .icon{
  transform: translateY(-3px) scale(1.04);
  box-shadow:
    0 16px 40px rgba(15, 23, 42, 0.11),
    0 6px 14px rgba(15, 23, 42, 0.06),
    inset 0 1px 0 rgba(255, 255, 255, 1);
}
#services .card:nth-child(3n + 1):hover .icon{
  border-color: rgba(99, 102, 241, 0.4);
}
#services .card:nth-child(3n + 2):hover .icon{
  border-color: rgba(37, 99, 235, 0.38);
}
#services .card:nth-child(3n + 3):hover .icon{
  border-color: rgba(5, 150, 105, 0.38);
}
#services .card .icon svg{
  width: 38px;
  height: 38px;
}
@media (prefers-reduced-motion: reduce){
  #services .card .icon{
    transition: none;
  }
  #services .card:hover .icon{
    transform: none;
  }
}

.showcase-marquee{
  margin: 0 0 22px;
  border-radius: calc(var(--radius) + 2px);
  border: 1px solid rgba(15, 23, 42, 0.14);
  background: linear-gradient(180deg, rgba(255,255,255,0.96), rgba(248,250,252,0.96));
  box-shadow: 0 14px 34px rgba(2, 6, 23, 0.10);
  overflow: hidden;
}
.showcase-marquee-track{
  display: flex;
  align-items: center;
  gap: 12px;
  width: max-content;
  padding: 10px;
  animation: showcaseSlide 80s linear infinite;
}
.showcase-card{
  margin: 0;
  width: clamp(300px, 33vw, 430px);
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid rgba(148,163,184,0.35);
  box-shadow: 0 8px 24px rgba(15, 23, 42, 0.12);
  background: #0b1220;
}
.showcase-card img{
  width: 100%;
  height: auto;
  display: block;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

@keyframes showcaseSlide{
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* POS highlight (#customers-strip): professional layout */
.section-pos-highlight{
  scroll-margin-top: 96px;
  background: #f8fafc;
  border-top: 1px solid #e2e8f0;
  border-bottom: 1px solid #e2e8f0;
}
.pos-highlight-grid{
  display: grid;
  grid-template-columns: var(--landing-split-cols);
  gap: 0;
  align-items: stretch;
  column-gap: var(--landing-split-gap);
  row-gap: 32px;
}
@media (min-width: 1200px){
  .pos-highlight-grid{
    column-gap: var(--landing-split-gap-lg);
  }
}
.pos-highlight-copy{
  font-family: "Noto Sans Bengali", Inter, ui-sans-serif, system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  min-width: 0;
  box-sizing: border-box;
  height: 100%;
  display: flex;
  flex-direction: column;
  padding: var(--landing-card-pad-y-top) var(--landing-card-pad-x) var(--landing-card-pad-y-bottom);
  border-radius: var(--landing-card-radius);
  background: #ffffff;
  border: 1px solid #e2e8f0;
  box-shadow: var(--landing-text-card-shadow);
}
.pos-highlight-eyebrow{
  margin: 0 0 12px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #64748b;
}
.section-pos-highlight h2{
  margin: 0 0 24px;
  padding-bottom: 20px;
  font-size: clamp(21px, 2.5vw, 29px);
  line-height: 1.32;
  letter-spacing: -0.03em;
  color: #0f172a;
  font-weight: 700;
  max-width: none;
  border-bottom: 1px solid #e2e8f0;
}
.pos-highlight-lead{
  margin: 0 0 28px;
  font-size: 16px;
  line-height: 1.75;
  color: #475569;
}
.pos-highlight-subheading{
  margin: 8px 0 0;
  padding: 20px 0 14px 14px;
  border-top: 1px solid #e2e8f0;
  border-left: 3px solid #52d69b;
  font-size: clamp(17px, 2vw, 21px);
  line-height: 1.35;
  letter-spacing: -0.02em;
  font-weight: 700;
  color: #0f172a;
}
.pos-highlight-list{
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0;
  flex: 1 1 auto;
  min-height: 0;
}
/* Mint circle + dark-teal tick (matches product check icon style) */
.pos-highlight-list li{
  display: grid;
  grid-template-columns: 28px 1fr;
  column-gap: 12px;
  row-gap: 6px;
  align-items: start;
  padding: 14px 0;
  border-bottom: 1px solid #f1f5f9;
  transition: background-color 0.15s ease, border-color 0.15s ease;
}
.pos-highlight-list li::before{
  content: "";
  grid-column: 1;
  grid-row: 1;
  width: 28px;
  height: 28px;
  margin-top: 0;
  border-radius: 50%;
  background-color: #e6f9f0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23006d5b' stroke-width='2.6' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M20 6 9 17l-5-5'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 15px 15px;
  border: 1.5px solid #52d69b;
  box-shadow: 0 1px 2px rgba(0, 109, 91, 0.06);
}
.pos-highlight-list li strong{
  grid-column: 2;
  grid-row: 1;
  margin: 0;
  font-size: 14.5px;
  font-weight: 600;
  color: #0f172a;
  line-height: 1.45;
  letter-spacing: -0.01em;
}
.pos-highlight-list span{
  grid-column: 2;
  grid-row: 2;
  margin: 0;
  font-size: 14px;
  line-height: 1.7;
  color: #64748b;
}
.pos-highlight-list li:first-child{
  padding-top: 4px;
}
.pos-highlight-list li:last-child{
  padding-bottom: 0;
  border-bottom: 0;
}
.pos-highlight-list li:hover{
  background: linear-gradient(90deg, rgba(230, 249, 240, 0.65) 0%, rgba(248, 250, 252, 0.55) 52%, transparent 100%);
  border-bottom-color: rgba(82, 214, 155, 0.22);
}
.pos-highlight-media{
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  gap: 16px;
  min-width: 0;
  min-height: 0;
  height: 100%;
  padding: var(--landing-card-pad-y-top) var(--landing-card-pad-x) var(--landing-card-pad-y-bottom);
  border-radius: var(--landing-card-radius);
  background: #ffffff;
  border: 1px solid #e2e8f0;
  box-shadow: var(--landing-media-card-shadow);
}
.pos-highlight-security-visual{
  margin: 0;
  flex: 0 0 auto;
  position: relative;
  width: 100%;
  border-radius: var(--landing-promo-radius);
  overflow: hidden;
  border: 1px solid rgba(15, 23, 42, 0.08);
  background: #f8fafc;
  box-shadow: var(--landing-promo-shadow);
}
.pos-highlight-security-visual img{
  display: block;
  width: 100%;
  height: auto;
  vertical-align: middle;
}
.pos-highlight-security{
  flex: 1 1 auto;
  min-height: 0;
  padding-top: 0;
}
/* Match left column h2 scale; keep headline on one line on split layout */
.section-pos-highlight .pos-highlight-security__title{
  display: flex;
  align-items: center;
  flex-wrap: nowrap;
  gap: 12px;
  margin: 0 0 20px;
  padding: 16px 18px 18px;
  font-size: clamp(21px, 2.5vw, 29px);
  line-height: 1.32;
  letter-spacing: -0.03em;
  font-weight: 700;
  color: #0f172a;
  background: linear-gradient(180deg, #fffdf7 0%, #fffbeb 40%, #fef9c3 100%);
  border-radius: 12px;
  border: 1px solid rgba(251, 191, 36, 0.38);
  box-shadow: 0 1px 3px rgba(251, 191, 36, 0.12);
  box-sizing: border-box;
}
.section-pos-highlight .pos-highlight-security__title-ico{
  flex-shrink: 0;
  font-size: 0.92em;
  line-height: 1;
}
.section-pos-highlight .pos-highlight-security__title-text{
  flex: 1 1 auto;
  min-width: 0;
  font-weight: 700;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, sans-serif;
  background: transparent;
  background-color: transparent;
}
@media (min-width: 981px){
  .section-pos-highlight .pos-highlight-security__title{
    font-size: clamp(13px, 1.05vw + 0.65rem, 26px);
  }
  .section-pos-highlight .pos-highlight-security__title-text{
    white-space: nowrap;
  }
}
@media (max-width: 980px){
  .section-pos-highlight .pos-highlight-security__title{
    flex-wrap: wrap;
  }
  .section-pos-highlight .pos-highlight-security__title-text{
    white-space: normal;
  }
}
.pos-highlight-security__block{
  margin: 0;
  padding: 12px 0;
  border-top: 1px solid #f1f5f9;
}
.pos-highlight-security__block:first-of-type{
  border-top: 0;
  padding-top: 2px;
}
/* One type size for all copy in the security column (headline h3 stays larger) */
.pos-highlight-media .pos-highlight-lead{
  margin-bottom: 18px;
  font-size: 14px;
  line-height: 1.7;
  color: #64748b;
}
.pos-highlight-security__block-title{
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 0 0 6px;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: -0.01em;
  color: #0f172a;
  line-height: 1.45;
}
.pos-highlight-security__block p{
  margin: 0 0 10px;
  font-size: 14px;
  line-height: 1.7;
  color: #64748b;
}
.pos-highlight-security__block p:last-child{
  margin-bottom: 0;
}
.pos-highlight-security__bullets{
  margin: 6px 0 12px;
  padding: 0;
  list-style: none;
  font-size: 14px;
  line-height: 1.7;
  color: #64748b;
}
.pos-highlight-security__bullets li{
  position: relative;
  margin: 0 0 10px;
  padding-left: 34px;
  min-height: 22px;
}
.pos-highlight-security__bullets li::before{
  content: "";
  position: absolute;
  left: 0;
  top: 3px;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background-color: #e6f9f0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23006d5b' stroke-width='2.6' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M20 6 9 17l-5-5'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 12px 12px;
  border: 1.5px solid #52d69b;
  box-shadow: 0 1px 2px rgba(0, 109, 91, 0.06);
}
.pos-highlight-security__bullets li:last-child{
  margin-bottom: 0;
}
.pos-highlight-security__note{
  margin-top: 12px !important;
  margin-bottom: 0 !important;
  padding: 10px 12px;
  font-size: 14px !important;
  line-height: 1.7 !important;
  font-style: italic;
  color: #64748b !important;
  background: rgba(248, 250, 252, 0.95);
  border-radius: 8px;
  border: 1px solid #e2e8f0;
}
@media (min-width: 981px){
  .pos-highlight-grid > .pos-highlight-copy,
  .pos-highlight-grid > .pos-highlight-media{
    align-self: stretch;
  }
  .pos-highlight-media{
    min-height: 0;
  }
}
@media (max-width: 980px){
  .pos-highlight-grid{
    grid-template-columns: 1fr;
    column-gap: 0;
    align-items: stretch;
  }
  .hero-bangla-panel,
  .hero--bangla .hero-visual-stack,
  .pos-highlight-copy,
  .pos-highlight-media{
    padding: 24px 20px 28px;
    height: auto;
  }
}

.apps-grid{
  display:grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}
.features-blueprint{
  margin: 18px 0 0;
  padding: 0;
}
.features-blueprint-title{
  position: static;
  margin: 0 auto 14px;
  width: fit-content;
  max-width: 100%;
  padding: 6px 14px;
  border-radius: 12px;
  background: linear-gradient(180deg, #ffffff 0%, #f2f6ff 100%);
  color: #4e6fbb;
  font-size: clamp(17px, 2.3vw, 24px);
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  line-height: 1.2;
  text-align: center;
  box-shadow: 0 2px 10px rgba(78, 111, 187, 0.12);
}
.features-blueprint picture{
  display: block;
  width: 100%;
  max-width: 1040px;
  margin: 0 auto;
  background: #ffffff;
  line-height: 0;
}
.features-blueprint img{
  display: block;
  width: 100%;
  height: auto;
  object-fit: contain;
}
.app{
  padding: 14px;
  border-radius: 16px;
  border: 1px solid var(--border);
  background: rgba(255,255,255,0.78);
  transition: transform .12s ease, box-shadow .12s ease, border-color .12s ease;
}
.app:hover{
  transform: translateY(-1px);
  box-shadow: var(--shadow2);
  border-color: rgba(37,99,235,0.20);
}
.app b{ display:block; margin-top: 10px; font-size: 14px; letter-spacing:-0.01em; }
.app span{ display:block; margin-top: 4px; color: rgba(51, 65, 85, 0.96); font-size: 12.5px; line-height: 1.55; }

#customers-strip .apps-grid .app{
  background: linear-gradient(180deg, rgba(255,255,255,0.9), rgba(248,250,252,0.85));
}

#contact .cta{
  border-color: rgba(37,99,235,0.20);
}

.pricing{
  display:grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  align-items: stretch;
}
.price-card{
  position:relative;
  padding: 18px;
}
.price-card.featured{
  border-color: rgba(109,40,217,0.25);
  box-shadow: 0 26px 70px rgba(109,40,217,.15);
}
.price-head{
  display:flex; align-items:flex-start; justify-content:space-between;
  gap: 12px;
}
.price-card h3{ margin: 0 0 4px; font-size: 16px; }
.price-sub{ margin: 0; color: var(--muted); font-size: 13px; line-height: 1.5; }
.price{
  margin: 14px 0 10px;
  font-size: 34px;
  font-weight: 900;
  letter-spacing: -0.04em;
}
.price small{ font-size: 13px; color: var(--muted); font-weight: 700; }
.list{ margin: 12px 0 16px; padding:0; list-style:none; display:grid; gap: 10px; }
.list li{
  display:flex; gap: 10px;
  align-items:flex-start;
  color: rgba(15,23,42,0.88);
  font-size: 13.5px;
  line-height: 1.55;
}
.check{
  width: 18px; height: 18px;
  border-radius: 999px;
  background: rgba(16,185,129,0.14);
  border: 1px solid rgba(16,185,129,0.24);
  display:grid; place-items:center;
  flex: 0 0 auto;
  margin-top: 2px;
}
.check svg{ width: 12px; height: 12px; }

.cta{
  margin: 8px 0 26px;
  padding: 22px;
  border-radius: calc(var(--radius) + 6px);
  background:
    radial-gradient(800px 280px at 10% 0%, rgba(37,99,235,.16), transparent 60%),
    radial-gradient(900px 380px at 90% 0%, rgba(109,40,217,.18), transparent 55%),
    rgba(255,255,255,0.80);
  border: 1px solid rgba(109,40,217,0.15);
  box-shadow: var(--shadow);
}
.cta .btn{
  min-width: 130px;
}
.cta-grid{
  display:flex; align-items:center; justify-content:space-between;
  gap: 18px;
  flex-wrap: wrap;
}
.cta h3{ margin:0 0 6px; letter-spacing:-0.02em; }
.cta p{ margin:0; color: var(--muted); line-height: 1.6; }

.footer{
  padding: 26px 0 40px;
  border-top: 1px solid var(--border);
  background: #ffffff;
}
.footer-grid{
  display:grid;
  grid-template-columns: 1.15fr 0.75fr 0.75fr 0.85fr 1.1fr;
  gap: 22px;
  align-items:start;
}
.footer h4{
  margin: 0 0 10px;
  font-size: 14px;
  letter-spacing:-0.01em;
}
.footer a{
  display:block;
  padding: 8px 0;
  font-size: 13.5px;
  color: rgba(15,23,42,0.78);
}
.footer a:hover{ color: rgba(15,23,42,0.92); }

.footer-social-icons{
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
}
.footer-col--social .footer-social-icons a{
  display: inline-flex;
  padding: 0;
}
.footer-col--social .footer-social-row{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  padding: 4px;
  margin: 0;
  border-radius: 12px;
  text-decoration: none;
  color: rgba(15,23,42,0.85);
  border: 1px solid transparent;
  background: transparent;
  transition: background 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}
.footer-col--social .footer-social-row:hover{
  background: rgba(91, 33, 182, 0.06);
  border-color: rgba(91, 33, 182, 0.12);
  color: rgba(15,23,42,0.95);
  box-shadow: 0 1px 0 rgba(255,255,255,0.8) inset;
}
.footer-social-ico{
  flex-shrink: 0;
  width: 38px;
  height: 38px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  background: linear-gradient(145deg, rgba(91, 33, 182, 0.12), rgba(37, 99, 235, 0.08));
  color: #5b21b6;
  box-shadow: inset 0 0 0 1px rgba(91, 33, 182, 0.1);
}
.footer-social-ico--x{
  color: #0f172a;
  background: linear-gradient(145deg, rgba(15, 23, 42, 0.08), rgba(15, 23, 42, 0.04));
  box-shadow: inset 0 0 0 1px rgba(15, 23, 42, 0.08);
}
.footer-social-ico--yt{
  color: #b91c1c;
  background: linear-gradient(145deg, rgba(185, 28, 28, 0.1), rgba(239, 68, 68, 0.06));
  box-shadow: inset 0 0 0 1px rgba(185, 28, 28, 0.12);
}
/* Slightly larger YouTube tile + clearer brand read (subscribe CTA) */
.footer-col--social .footer-social-row--yt .footer-social-ico--yt{
  width: 46px;
  height: 46px;
  border-radius: 12px;
  color: #ffffff;
  background: linear-gradient(155deg, #ff3030 0%, #cc0000 55%, #b00000 100%);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.22),
    inset 0 0 0 1px rgba(0, 0, 0, 0.06),
    0 6px 16px rgba(204, 0, 0, 0.28);
}
.footer-col--social .footer-social-row--yt .footer-social-ico--yt svg{
  width: 22px;
  height: 22px;
  filter: drop-shadow(0 1px 1px rgba(0, 0, 0, 0.12));
}
.footer-col--social .footer-social-row--yt:hover .footer-social-ico--yt{
  background: linear-gradient(155deg, #ff4545 0%, #d60000 55%, #c40000 100%);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.28),
    inset 0 0 0 1px rgba(0, 0, 0, 0.08),
    0 8px 22px rgba(204, 0, 0, 0.38);
}
.footer-social-ico--mail{
  color: #2563eb;
  background: linear-gradient(145deg, rgba(37, 99, 235, 0.12), rgba(59, 130, 246, 0.06));
  box-shadow: inset 0 0 0 1px rgba(37, 99, 235, 0.12);
}
.footer-social-row:hover .footer-social-ico{
  background: linear-gradient(145deg, rgba(91, 33, 182, 0.18), rgba(37, 99, 235, 0.12));
}
.footer-social-row:hover .footer-social-ico--x{
  background: rgba(15, 23, 42, 0.1);
}
.footer-social-row:hover .footer-social-ico--yt{
  background: linear-gradient(145deg, rgba(185, 28, 28, 0.16), rgba(239, 68, 68, 0.1));
}
.footer-social-row:hover .footer-social-ico--mail{
  background: linear-gradient(145deg, rgba(37, 99, 235, 0.2), rgba(59, 130, 246, 0.12));
}

.fineprint{
  margin-top: 14px;
  font-size: 12.5px;
  color: rgba(71,85,105,0.92);
}

.mobile-menu-backdrop{
  display: none;
}
.mobile-panel{
  display:none;
  padding: 12px 0 16px;
  border-top: 1px solid rgba(15, 23, 42, 0.08);
}
.mobile-panel a{
  display:block;
  padding: 9px 14px;
  border-radius: 11px;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: -0.01em;
  color: rgba(15, 23, 42, 0.88);
  border: 1px solid rgba(15, 23, 42, 0.1);
  background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
  box-shadow: 0 1px 2px rgba(15, 23, 42, 0.05);
  margin-bottom: 4px;
  transition:
    color 0.18s ease,
    background 0.18s ease,
    box-shadow 0.18s ease,
    border-color 0.18s ease,
    transform 0.12s ease;
}
.mobile-panel a:hover{
  border-color: rgba(91, 33, 182, 0.28);
  background: linear-gradient(180deg, #ffffff 0%, rgba(248, 250, 252, 0.98) 100%);
  color: #0f172a;
  box-shadow: 0 2px 10px rgba(91, 33, 182, 0.08);
}
.mobile-panel a:focus-visible{
  outline: none;
  box-shadow: 0 0 0 2px #fff, 0 0 0 4px var(--ring);
}
.mobile-panel a.is-active{
  color: #5b21b6;
  font-weight: 700;
  border-color: rgba(91, 33, 182, 0.32);
  background: linear-gradient(135deg, rgba(109, 40, 217, 0.12), rgba(37, 99, 235, 0.08));
  box-shadow:
    inset 0 0 0 1px rgba(91, 33, 182, 0.14),
    0 1px 3px rgba(91, 33, 182, 0.06);
}
.mobile-cta{ display:flex; gap:10px; flex-wrap:wrap; margin-top: 6px; }

/* Lock page scroll while mobile menu is open (class toggled from JS) */
html.landing-nav-open,
html.landing-nav-open body{
  overflow: hidden;
}

@media (max-width: 980px){
  .hero-grid{ grid-template-columns: 1fr; }
  .hero--bangla .hero-grid{ grid-template-columns: 1fr; }
  .apps-grid{ grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .features-blueprint-title{
    font-size: clamp(13px, 3.8vw, 18px);
    letter-spacing: 0.08em;
    padding: 3px 8px;
  }
  .pricing{ grid-template-columns: 1fr; }
  .footer-grid{
    grid-template-columns: 1fr 1fr;
  }
  .footer-col--social{
    grid-column: 1 / -1;
  }
}

@media (max-width: 720px){
  .features-blueprint-title{
    white-space: normal;
    width: min(92%, 440px);
    text-align: center;
  }
  .hero-bangla-panel,
  .hero--bangla .hero-visual-stack,
  .pos-highlight-copy,
  .pos-highlight-media{
    padding: 20px 18px 22px;
    border-radius: var(--radius);
  }
  .hero-feature-box{
    padding: 14px 14px 16px;
  }
  .nav-links{ display:none; }
  .nav-cta{ display:none; }
  .menu-btn{ display:inline-flex; }
  .mobile-menu-backdrop:not([hidden]){
    display: block;
    position: fixed;
    left: 0;
    right: 0;
    top: 72px;
    bottom: 0;
    z-index: 1000;
    background: rgba(15, 23, 42, 0.42);
    -webkit-tap-highlight-color: transparent;
  }
  .mobile-panel:not([hidden]){
    display: flex;
    flex-direction: column;
    position: fixed;
    left: 0;
    right: 0;
    top: 72px;
    z-index: 1001;
    max-height: min(calc(100vh - 72px), calc(100dvh - 72px));
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    overscroll-behavior: contain;
    padding: 10px 16px 16px;
    margin: 0;
    border: none;
    border-radius: 0 0 16px 16px;
    border-top: 1px solid rgba(15, 23, 42, 0.08);
    background: #fff;
    box-shadow:
      0 18px 50px rgba(2, 6, 23, 0.16),
      0 0 0 1px rgba(15, 23, 42, 0.04);
  }
  .grid-3{ grid-template-columns: 1fr; }
  .apps-grid{ grid-template-columns: 1fr; }
  .container{ width: min(var(--max), calc(100% - 28px)); }
  .industry-ticker-mask{ width: min(var(--max), calc(100% - 28px)); }
  .industry-ticker-mask{
    display: flex;
    flex-direction: column;
    padding-left: 0;
    min-height: 156px;
    cursor: grab;
  }
  .industry-ticker-mask::before{
    position: relative;
    left: auto;
    top: auto;
    bottom: auto;
    right: auto;
    width: 100%;
    flex: 0 0 auto;
    min-height: 36px;
    height: auto;
    padding: 9px 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 10px;
    letter-spacing: 0.1em;
    border-radius: 13px 13px 0 0;
  }
  .industry-ticker-pan{
    flex: 1 1 auto;
    min-height: 0;
    width: 100%;
    overflow: hidden;
    position: relative;
  }
  .industry-ticker-track{ animation-duration: 225s; }
  .industry-ticker-line{
    font-size: 12px;
    gap: 10px;
    padding: 10px 12px;
  }
  .industry-ticker-card{
    width: min(360px, calc(100vw - 44px));
    flex: 0 0 auto;
    padding: 12px 14px 16px 16px;
    border-radius: 14px;
  }
  .industry-ticker-card-media{
    min-height: 108px;
    aspect-ratio: 5 / 3;
    margin-bottom: 12px;
    border-radius: 10px;
    padding: 10px;
  }
  .industry-ticker-card-media::before{
    inset: 6px;
    border-radius: 8px;
  }
  .industry-ticker-card-emoji{
    width: min(120px, 50%);
    height: min(120px, 72%);
    min-width: 100px;
    min-height: 100px;
    font-size: clamp(2.65rem, 14vw, 3.6rem);
    border-radius: 18px;
  }
  .industry-ticker-card-title{
    font-size: 14px;
    margin-bottom: 8px;
    white-space: normal;
    overflow-wrap: break-word;
    word-break: break-word;
  }
  .industry-ticker-card-features{ font-size: 11.5px; }
  .showcase-marquee{
    margin-bottom: 16px;
    border-radius: 14px;
  }
  .showcase-marquee-track{
    padding: 8px;
    gap: 8px;
    animation-duration: 68s;
  }
  .showcase-card{
    width: min(88vw, 340px);
    border-radius: 12px;
  }
  .footer-grid{
    grid-template-columns: 1fr;
  }
  .footer-col--social{
    grid-column: auto;
  }
}

@media (prefers-reduced-motion: reduce){
  *{ scroll-behavior:auto !important; transition:none !important; }
  .industry-ticker-track{ animation:none; }
  .showcase-marquee-track{ animation:none; }
}

/* Registration page (/register) */
.nav-cta .btn[aria-current="page"],
.mobile-cta .btn[aria-current="page"]{
  opacity: 0.95;
  cursor: default;
  pointer-events: none;
  border-color: rgba(91, 33, 182, 0.32);
  color: #5b21b6;
  background: linear-gradient(135deg, rgba(109, 40, 217, 0.1), rgba(37, 99, 235, 0.07));
  box-shadow: inset 0 0 0 1px rgba(91, 33, 182, 0.12);
}
.register-page-main{
  padding: 56px 0 80px;
}
.register-hero{
  max-width: 520px;
  margin: 0 auto 28px;
  text-align: center;
}
.register-hero h1{
  margin: 0 0 10px;
  font-size: clamp(1.65rem, 2.5vw, 2rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--text);
}
.register-hero p{
  margin: 0;
  font-size: 1.05rem;
  line-height: 1.55;
  color: var(--muted);
}
.register-card{
  max-width: 480px;
  margin: 0 auto;
  padding: 28px 28px 30px;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.88);
  box-shadow: var(--shadow);
  backdrop-filter: blur(8px);
}
.register-form label{
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: rgba(15, 23, 42, 0.82);
  margin-bottom: 6px;
  letter-spacing: -0.01em;
}
.register-form .field{
  margin-bottom: 16px;
}
.register-form input,
.register-form textarea{
  width: 100%;
  font: inherit;
  font-size: 15px;
  padding: 11px 14px;
  border-radius: 12px;
  border: 1px solid rgba(15, 23, 42, 0.14);
  background: #fff;
  color: var(--text);
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
}
.register-form input:focus,
.register-form textarea:focus{
  outline: none;
  border-color: rgba(91, 33, 182, 0.45);
  box-shadow: 0 0 0 3px var(--ring);
}
.register-form textarea{
  min-height: 96px;
  resize: vertical;
}
.register-form .register-submit{
  width: 100%;
  margin-top: 6px;
  padding: 12px 18px;
  border-radius: 14px;
  border: 1px solid rgba(109, 40, 217, 0.22);
  font-weight: 700;
  font-size: 15px;
  cursor: pointer;
  color: #fff;
  background: linear-gradient(135deg, var(--primary), var(--primary2));
  transition: transform 0.12s ease, box-shadow 0.12s ease, opacity 0.15s ease;
}
.register-form .register-submit:hover:not(:disabled){
  transform: translateY(-1px);
  box-shadow: 0 8px 24px rgba(91, 33, 182, 0.28);
}
.register-form .register-submit:disabled{
  opacity: 0.65;
  cursor: not-allowed;
}
.register-form-msg{
  margin-top: 14px;
  padding: 12px 14px;
  border-radius: 12px;
  font-size: 14px;
  line-height: 1.45;
  display: none;
}
.register-form-msg.is-visible{ display: block; }
.register-form-msg--ok{
  background: rgba(34, 197, 94, 0.12);
  border: 1px solid rgba(34, 197, 94, 0.28);
  color: #166534;
}
.register-form-msg--err{
  background: rgba(239, 68, 68, 0.1);
  border: 1px solid rgba(239, 68, 68, 0.25);
  color: #991b1b;
}
.register-alt{
  margin-top: 22px;
  text-align: center;
  font-size: 14px;
  color: var(--muted);
}
.register-alt a{
  font-weight: 600;
  color: #5b21b6;
  text-decoration: underline;
  text-underline-offset: 3px;
}
.register-footer-min{
  margin-top: 48px;
  padding-top: 24px;
  border-top: 1px solid var(--border);
  text-align: center;
}
.register-footer-min .fineprint{
  margin: 0;
}







