:root {
  --bg: #EBEAD6;
  --card: #ffffff;
  --text: #111827;
  --muted: #6b7280;
  --line: #e5e7eb;
  --accent: #ef4444;
  --chip: #ffe4e6;

  --shadow: 0 14px 34px rgba(15, 23, 42, .14);
  --shadow2: 0 18px 40px rgba(2, 6, 23, .18);

  --container: min(1200px, 92vw);
  --navH: 68px;
  --pill: 999px;
  --radius: 18px;

  /* Mobile requested colors */
  --mobileBarBg: #EBEAD6;
  /* menu bar cream */
  --mobilePanelBg: #ecf2f8;
  /* dropdown yellow */
  --mobileText: #111827;
  --mobileLine: rgba(17, 24, 39, .12);
}

.tile-link {
  text-decoration: none;
  color: inherit;
  display: block;
}

.mTileLink {
  display: block;
  text-decoration: none;
  color: inherit;
}

.mTileLink:hover {
  cursor: pointer;
}

.heroBtn {
  display: inline-block;
  text-decoration: none;
}


.brand {
  display: inline-flex;
  align-items: center;
  max-width: 220px;
}

.brand-logo {
  height: 44px;
  width: auto;
  display: block;
  object-fit: contain;
}

/* mobile */
@media (max-width: 600px) {
  .brand {
    max-width: 170px;
  }

  .brand-logo {
    height: 34px;
  }
}






* {
  box-sizing: border-box
}

html,
body {
  height: 100%
}

body {
  margin: 0;
  font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  background: var(--bg);
  color: var(--text);
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(260px 260px at 12% 14%, rgba(255, 255, 255, .55), transparent 70%),
    radial-gradient(220px 220px at 88% 80%, rgba(255, 255, 255, .35), transparent 70%);
  opacity: .8;
}

/* =========================
   DESKTOP NAV
========================= */
.navWrap {
  position: sticky;
  top: 0;
  z-index: 60;
  padding: 14px 0;
}

.navbar {
  width: var(--container);
  height: var(--navH);
  margin: 0 auto;
  background: rgba(255, 255, 255, .95);
  border: 1px solid rgba(229, 231, 235, .9);
  border-radius: var(--pill);
  box-shadow: 0 10px 24px rgba(2, 6, 23, .10);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 18px;
  backdrop-filter: blur(10px);
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  letter-spacing: .02em;
}

.logo {
  width: 30px;
  height: 30px;
  display: grid;
  place-items: center;
}

.logo svg {
  width: 28px;
  height: 28px;
  fill: #111;
  opacity: .9;
}

.links {
  display: flex;
  align-items: center;
  gap: 26px;
  font-size: 14px;
  font-weight: 500;
}

.links a,
.links button {
  border: 0;
  background: transparent;
  font: inherit;
  color: var(--text);
  text-decoration: none;
  padding: 10px 10px;
  border-radius: 12px;
  cursor: pointer;
  position: relative;
}

.links a:hover,
.links button:hover {
  background: rgba(0, 0, 0, .04);
}

.links .active {
  color: var(--accent);
}

.links .active::after {
  content: "";
  position: absolute;
  left: 12px;
  right: 12px;
  bottom: 6px;
  height: 2px;
  background: var(--accent);
  border-radius: 999px;
}

.dropdownInline {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  position: relative;
}

.caret {
  width: 10px;
  height: 10px;
  display: inline-block;
  border-right: 2px solid var(--muted);
  border-bottom: 2px solid var(--muted);
  transform: rotate(45deg);
  margin-top: -2px;
}

.cta {
  border: 1px solid var(--line);
  background: #fff;
  border-radius: 999px;
  padding: 10px 16px;
  font-weight: 600;
  cursor: pointer;
  box-shadow: 0 8px 18px rgba(2, 6, 23, .06);
}

/* =========================
   DESKTOP PANEL
========================= */
.panelWrap {
  position: sticky;
  top: calc(14px + var(--navH));
  z-index: 55;
  height: 0;
  overflow: hidden;
}

.panel {
  width: var(--container);
  margin: 12px auto 0;
  background: var(--card);
  border: 1px solid rgba(229, 231, 235, .75);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 18px;
  transform: translateY(-8px);
  opacity: 0;
}

.megaGrid {
  display: grid;
  grid-template-columns: 1.05fr 1fr 1fr 1fr;
  gap: 18px;
}

.tile {
  border: 1px solid rgba(229, 231, 235, .85);
  border-radius: 16px;
  background: #fff;
  padding: 18px;
  min-height: 318px;
}

.tile.hero {
  border: none;
  background: linear-gradient(135deg, #ff3b30 0%, #ff6a5f 55%, #ff8a7b 100%);
  color: #fff;
  position: relative;
  overflow: hidden;
}

.spark {
  width: 46px;
  height: 46px;
  border-radius: 14px;
  background: rgba(255, 255, 255, .16);
  border: 1px solid rgba(255, 255, 255, .22);
  display: grid;
  place-items: center;
  margin-bottom: 18px;
}

.spark svg {
  width: 22px;
  height: 22px;
  fill: #fff;
}

.hero h2 {
  margin: 0;
  font-size: 20px;
  font-weight: 800;
}

.hero p {
  margin: 10px 0 0;
  font-size: 13px;
  line-height: 1.6;
  color: rgba(255, 255, 255, .9);
  max-width: 34ch;
}

.heroBtn {
  position: absolute;
  left: 22px;
  bottom: 18px;
  border: none;
  background: #fff;
  color: var(--accent);
  border-radius: 999px;
  padding: 10px 16px;
  font-weight: 700;
  cursor: pointer;
  box-shadow: 0 16px 30px rgba(0, 0, 0, .16);
}

.iconChip {
  width: 34px;
  height: 34px;
  border-radius: 10px;
  background: var(--chip);
  border: 1px solid rgba(239, 68, 68, .18);
  display: grid;
  place-items: center;
  margin-bottom: 12px;
}

.iconChip svg {
  width: 18px;
  height: 18px;
  fill: var(--accent);
}

.tile h3 {
  margin: 4px 0 6px;
  font-size: 16px;
  letter-spacing: .02em;
  text-transform: uppercase;
  font-weight: 800;
}

.tile .sub {
  margin: 0 0 14px;
  color: var(--muted);
  font-size: 12.5px;
  line-height: 1.55;
}

.list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.li {
  display: flex;
  gap: 10px;
  color: #374151;
  font-size: 13px;
}

.dot {
  width: 14px;
  height: 14px;
  border-radius: 999px;
  border: 2px solid rgba(239, 68, 68, .35);
  background: rgba(239, 68, 68, .06);
  margin-top: 2px;
  flex: 0 0 auto;
}

/* =========================
   HERO BELOW (NO CARD)
========================= */
.heroBelow {
  width: var(--container);
  margin: 0 auto 34px;
  /* ✅ উপরে কোনো extra margin নাই */
  position: relative;
  z-index: 1;
  padding-top: 10px;
  /* small breathing space */
}

.heroBelow__inner {
  /* ✅ card style off */
  border: none;
  background: transparent;
  box-shadow: none;
  border-radius: 0;
  padding: 0;
  text-align: center;
}


.heroBelow__badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 12px;
  border-radius: 999px;
  border: 1px solid rgba(2, 6, 23, .10);
  background: rgba(255, 255, 255, .75);
  box-shadow: 0 8px 18px rgba(2, 6, 23, .08);
}

.heroBelow__badgePill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 4px 10px;
  border-radius: 999px;
  background: #0b0f1a;
  color: #fff;
  font-weight: 900;
  font-size: 12px;
  letter-spacing: .02em;
}

.heroBelow__badgeText {
  font-size: 13px;
  font-weight: 800;
  color: rgba(17, 24, 39, .92);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.heroBelow__star {
  color: #f5260b;
  transform: translateY(-1px);
}

.heroBelow__muted {
  font-weight: 900;
  letter-spacing: .08em;
  font-size: 11px;
  color: rgba(17, 24, 39, .60);
}

/* headline */
/* =========================
   HERO BELOW - FULL CSS
   (Title left->right + Ocean wave underline)
   ========================= */

/* Title: slide in from left to right */
.heroBelow__title {
  font-size: clamp(32px, 4.5vw, 56px);
  font-weight: 600;
  line-height: 1.15;
  color: #0f172a;
  letter-spacing: -0.02em;

  opacity: 0;
  transform: translateX(-60px);
  animation: heroTitleSlideIn 1s ease forwards;
}

@keyframes heroTitleSlideIn {
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/* Decor wrapper */
.heroBelow__decor {
  position: relative;
  width: 100%;
  max-width: 520px;
  margin-top: 14px;
}

/* Ocean wave underline container */
.heroBelow__underline {
  position: relative;
  display: block;
  width: 100%;
  height: 10px;
  overflow: hidden;
}

/* Animated ocean wave stroke */
.heroBelow__underline::before {
  content: "";
  position: absolute;
  inset: 0;

  background: linear-gradient(90deg, #0ea5e9, #38bdf8, #0ea5e9);
  background-size: 240px 100%;

  /* wave mask */
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 120 10'%3E%3Cpath d='M0 5 Q 10 0 20 5 T 40 5 T 60 5 T 80 5 T 100 5 T 120 5' fill='none' stroke='white' stroke-width='2'/%3E%3C/svg%3E");
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 120 10'%3E%3Cpath d='M0 5 Q 10 0 20 5 T 40 5 T 60 5 T 80 5 T 100 5 T 120 5' fill='none' stroke='white' stroke-width='2'/%3E%3C/svg%3E");

  -webkit-mask-repeat: repeat-x;
  mask-repeat: repeat-x;

  -webkit-mask-size: 120px 10px;
  mask-size: 120px 10px;

  animation: oceanWaveMove 3s linear infinite;
}

@keyframes oceanWaveMove {
  from {
    background-position-x: 0;
  }

  to {
    background-position-x: 240px;
  }
}

/* Spark dot at end */
.heroBelow__spark {
  position: absolute;
  right: -6px;
  top: -6px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #38bdf8;
  box-shadow: 0 0 12px rgba(56, 189, 248, .85);
  animation: oceanSparkPulse 1.8s ease-in-out infinite;
}

@keyframes oceanSparkPulse {

  0%,
  100% {
    transform: scale(1);
    opacity: .7;
  }

  50% {
    transform: scale(1.4);
    opacity: 1;
  }
}

/* =========================
   Optional: reduce motion
   ========================= */
@media (prefers-reduced-motion: reduce) {
  .heroBelow__title {
    opacity: 1;
    transform: none;
    animation: none;
  }

  .heroBelow__underline::before,
  .heroBelow__spark {
    animation: none;
  }
}

/* =========================
   HERO BELOW CTA (PILL)
========================= */
.heroBelow__ctaWrap {
  margin-top: 18px;
  display: flex;
  justify-content: center;
}

/* Default: white pill like screenshot */
.heroBelow__ctaBtn {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 10px;

  height: 52px;
  padding: 0 28px;
  border-radius: 999px;
  text-decoration: none;

  font-weight: 700;
  font-size: 14px;

  background: #ffffff;
  /* white pill */
  color: #e11d1d;
  /* red text */

  border: none;
  box-shadow: 0 18px 40px rgba(0, 0, 0, .12);
  overflow: hidden;

  transition: color .45s ease, transform .15s ease, box-shadow .2s ease;
  z-index: 0;
}

/* Red fill layer (hidden at first) */
.heroBelow__ctaBtn::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, #e11d1d, #ff3b3b);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .45s ease;
  z-index: -1;
  /* keep behind text */
}

/* Hover: fill + black text */
.heroBelow__ctaBtn:hover::before {
  transform: scaleX(1);
}

.heroBelow__ctaBtn:hover {
  color: #000;
  /* text turns black */
  transform: translateY(-1px);
  box-shadow: 0 22px 48px rgba(0, 0, 0, .14);
}

.heroBelow__ctaBtn:active {
  transform: translateY(0);
}

/* Mobile */
@media (max-width: 520px) {
  .heroBelow__ctaBtn {
    height: 48px;
    padding: 0 20px;
    font-size: 13px;
    text-align: center;
  }
}


.heroBelow__desc {
  max-width: 760px;
  margin: 0 auto;
  /* center the block */
  text-align: center;
  /* center text */

  font-size: 16px;
  line-height: 1.7;
  color: #475569;
}

.heroBelow__desc .w {
  opacity: 0;
  transform: translateY(10px);
  display: inline-block;
  transition: opacity .35s ease, transform .35s ease;
}

.heroBelow__desc .w.show {
  opacity: 1;
  transform: translateY(0);
}

/* =========================
   CRM BANNER (Below Hero)
========================= */
.crmBanner {
  position: relative;
  z-index: 1;
  width: var(--container);
  margin: 22px auto 40px;
}

.crmBanner__wrap {
  position: relative;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1px solid rgba(229, 231, 235, .85);
  background: rgba(255, 255, 255, .65);
}

.crmBanner__img {
  width: 100%;
  display: block;
  aspect-ratio: 16 / 7;
  /* ✅ banner look */
  object-fit: cover;
  object-position: center;
}

/* CTA overlay bottom-right (optional) */
.crmBanner__cta {
  position: absolute;
  right: 18px;
  bottom: 18px;
  height: 44px;
  padding: 0 18px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  font-weight: 900;
  color: #fff;
  background: #ef4444;
  border: 1px solid rgba(255, 255, 255, .18);
  box-shadow: 0 16px 30px rgba(239, 68, 68, .22);
  transition: transform .15s ease, filter .15s ease;
}

.crmBanner__cta:hover {
  transform: translateY(-1px);
  filter: brightness(1.02);
}

.crmBanner__cta:active {
  transform: translateY(0);
}

/* Mobile */
@media (max-width: 860px) {
  .crmBanner {
    margin: 16px auto 28px;
  }

  .crmBanner__img {
    aspect-ratio: 16 / 9;
  }

  .crmBanner__cta {
    right: 12px;
    bottom: 12px;
    height: 40px;
    padding: 0 14px;
    font-size: 13px;
  }
}



/* =========================
   MOBILE BAR VISIBILITY
   ========================= */

/* Hide on desktop & tablet */
.mobileBarWrap {
  display: none;
}

/* Show only on mobile */
@media (max-width: 768px) {
  .mobileBarWrap {
    display: block;
    position: sticky;
    top: 0;
    z-index: 80;
    padding: 14px 0 10px;
    background: transparent;
  }
}

/* =========================
   MOBILE BAR
   ========================= */

.mobileBar {
  width: min(520px, 92vw);
  margin: 0 auto;
  height: 60px;
  border-radius: 14px;

  background: #ffffff;
  border: 1px solid rgba(17, 24, 39, .10);
  box-shadow: 0 14px 35px rgba(15, 23, 42, .10);

  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 12px;
}

/* =========================
   BRAND / LOGO
   ========================= */

.mobileBrand {
  display: flex;
  align-items: center;
  flex: 0 0 auto;
}

.mobileBrand img {
  height: 36px;
  width: auto;
  display: block;
  object-fit: contain;
}

/* =========================
   MENU BUTTON
   ========================= */

.mobileMenuBtn {
  margin-left: auto;
  /* push right */
  height: 42px;
  border-radius: 12px;

  border: 1px solid rgba(17, 24, 39, .12);
  background: rgba(17, 24, 39, .04);
  color: #111827;

  font-weight: 700;
  font-size: 14px;

  padding: 0 14px;
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;

  cursor: pointer;
  user-select: none;

  transition: background .2s ease,
    box-shadow .2s ease,
    transform .15s ease;
}

.mobileMenuBtn:hover {
  background: rgba(17, 24, 39, .06);
  box-shadow: 0 10px 22px rgba(15, 23, 42, .10);
  transform: translateY(-1px);
}

.mobileMenuBtn:active {
  transform: translateY(0);
}

/* =========================
   BURGER ICON
   ========================= */

.burger {
  width: 18px;
  height: 14px;
  display: inline-flex;
  flex-direction: column;
  justify-content: space-between;
}

.burger span {
  display: block;
  height: 2px;
  border-radius: 999px;
  background: #111827;
  transition: transform .2s ease, opacity .2s ease;
}

/* open state (JS toggle aria-expanded) */
.mobileMenuBtn[aria-expanded="true"] .burger span:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}

.mobileMenuBtn[aria-expanded="true"] .burger span:nth-child(2) {
  opacity: 0;
}

.mobileMenuBtn[aria-expanded="true"] .burger span:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

/* =========================
   RESPONSIVE TUNING
   ========================= */

@media (max-width: 420px) {
  .mobileBar {
    height: 56px;
    padding: 8px 10px;
    gap: 10px;
  }

  .mobileBrand img {
    height: 32px;
  }

  .mobileMenuBtn {
    height: 40px;
    padding: 0 12px;
    font-size: 13px;
  }
}

/* ultra small phones */
@media (max-width: 340px) {
  .mobileMenuBtn>span:first-child {
    display: none;
    /* hide "Menu" text */
  }
}


/* Burger (simple) */
.burger {
  width: 18px;
  height: 12px;
  position: relative;
}

.burger span {
  position: absolute;
  left: 0;
  right: 0;
  height: 2px;
  border-radius: 99px;
  background: rgba(17, 24, 39, .85);
}

.burger span:nth-child(1) {
  top: 0;
}

.burger span:nth-child(2) {
  top: 5px;
}

.burger span:nth-child(3) {
  top: 10px;
}

/* X icon */
.xIcon {
  width: 18px;
  height: 18px;
  position: relative;
  display: none;
}

.xIcon:before,
.xIcon:after {
  content: "";
  position: absolute;
  inset: 0;
  margin: auto;
  width: 18px;
  height: 2px;
  border-radius: 99px;
  top: 8px;
  background: rgba(17, 24, 39, .85);
}

.xIcon:before {
  transform: rotate(45deg);
}

.xIcon:after {
  transform: rotate(-45deg);
}

.mobileMenuBtn.open .burger {
  display: none;
}

.mobileMenuBtn.open .xIcon {
  display: block;
}

.badgeBtn {
  width: 44px;
  height: 40px;
  border-radius: 999px;
  border: 1px solid var(--mobileLine);
  background: rgba(17, 24, 39, .04);
  display: grid;
  place-items: center;
  position: relative;
  cursor: pointer;
}

.badgeBtn svg {
  width: 18px;
  height: 18px;
  fill: rgba(17, 24, 39, .85);
}

.badge {
  position: absolute;
  top: -4px;
  right: -4px;
  width: 18px;
  height: 18px;
  border-radius: 999px;
  background: #111;
  color: #fff;
  display: grid;
  place-items: center;
  font-size: 11px;
  font-weight: 900;
  border: 1px solid rgba(255, 255, 255, .18);
}

/* =========================
   MOBILE DROPDOWN PANEL
========================= */
.mPanelWrap {
  display: none;
  position: sticky;
  top: 84px;
  z-index: 79;
  height: 0;
  overflow: hidden;
}

.mPanel {
  width: min(420px, 92vw);
  margin: 10px auto 0;
  border-radius: 14px;
  background: var(--mobilePanelBg);
  border: 1px solid var(--mobileLine);
  box-shadow: var(--shadow2);
  overflow: hidden;
  opacity: 0;
  transform: translateY(-10px);
  /* scroll */
  max-height: calc(100vh - 110px);
  overflow: auto;
  -webkit-overflow-scrolling: touch;
}

.mPanel::-webkit-scrollbar {
  width: 8px;
}

.mPanel::-webkit-scrollbar-thumb {
  background: rgba(17, 24, 39, .25);
  border-radius: 999px;
}

.mStripe {
  height: 10px;
  background: repeating-linear-gradient(135deg,
      rgba(17, 24, 39, .20) 0px,
      rgba(17, 24, 39, .20) 10px,
      rgba(17, 24, 39, 0) 10px,
      rgba(17, 24, 39, 0) 20px);
  opacity: .35;
}

.mBody {
  padding: 50px;
  display: grid;
  gap: 12px;
}

.mCard {
  border: 1px solid var(--mobileLine);
  background: rgba(255, 255, 255, .35);
  border-radius: 14px;
  padding: 14px;
  color: var(--mobileText);
}

.mCard h4 {
  margin: 0 0 8px;
  font-size: 13px;
  letter-spacing: .06em;
  text-transform: uppercase;
}

.mList {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 10px;
}

.mList li {
  display: flex;
  gap: 10px;
  align-items: center;
  color: rgba(17, 24, 39, .78);
  font-weight: 700;
  font-size: 13px;
}

.mDot {
  width: 12px;
  height: 12px;
  border-radius: 999px;
  border: 2px solid rgba(239, 68, 68, .45);
  background: rgba(239, 68, 68, .10);
}

/* Mobile services dropdown */
.mLink {
  display: flex;
  align-items: center;
  gap: 10px;
}

.mServicesTrigger {
  justify-content: space-between;
  cursor: pointer;
  user-select: none;
}

.mChevron {
  width: 10px;
  height: 10px;
  border-right: 2px solid rgba(17, 24, 39, .65);
  border-bottom: 2px solid rgba(17, 24, 39, .65);
  transform: rotate(45deg);
  margin-left: auto;
  transition: transform .2s ease;
}

.mServicesTrigger[aria-expanded="true"] .mChevron {
  transform: rotate(-135deg);
}

.mServicesWrap {
  height: 0;
  overflow: hidden;
  margin: 0;
  padding: 0;
}

.mServicesPanel {
  margin-top: 10px;
  border: 1px solid var(--mobileLine);
  background: rgba(255, 255, 255, .35);
  border-radius: 14px;
  padding: 12px;
  opacity: 0;
  transform: translateY(-6px);
}

.mMegaGrid {
  display: grid;
  gap: 12px;
}

.mTile {
  border: 1px solid var(--mobileLine);
  background: rgba(255, 255, 255, .35);
  border-radius: 14px;
  padding: 12px;
}

.mTile h4 {
  margin: 0 0 8px;
  font-weight: 900;
}

.mTile ul {
  margin: 0;
  padding-left: 16px;
}

.mTile ul li {
  margin: 6px 0;
}

.mSocial {
  display: flex;
  gap: 14px;
  padding: 8px 14px 2px;
}

.mSocial a {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  border: 1px solid var(--mobileLine);
  background: rgba(255, 255, 255, .28);
  display: grid;
  place-items: center;
}

.mSocial svg {
  width: 18px;
  height: 18px;
  fill: rgba(17, 24, 39, .78);
}

.mCTArow {
  padding: 0 14px 14px;
  display: flex;
  justify-content: flex-end;
}

.mCTA {
  border: 1px solid var(--mobileLine);
  background: rgba(255, 255, 255, .35);
  color: var(--mobileText);
  font-weight: 900;
  padding: 12px 14px;
  border-radius: 999px;
  min-width: 160px;
  text-align: center;
  cursor: pointer;
}

.mBottomBar {
  margin-top: 10px;
  border-top: 1px solid var(--mobileLine);
  background: rgba(255, 255, 255, .28);
  color: var(--mobileText);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 14px;
  font-weight: 900;
  font-size: 13px;
}

.mBottomRight {
  display: flex;
  align-items: center;
  gap: 10px;
}

.mMode {
  letter-spacing: .06em;
}

.arrowBtn {
  width: 36px;
  height: 36px;
  border-radius: 12px;
  border: 1px solid var(--mobileLine);
  background: rgba(255, 255, 255, .22);
  display: grid;
  place-items: center;
  cursor: pointer;
}

.arrowBtn svg {
  width: 16px;
  height: 16px;
  fill: rgba(17, 24, 39, .78);
}

/* =========================
   RESPONSIVE VISIBILITY
========================= */
@media (max-width: 860px) {

  .navWrap,
  .panelWrap {
    display: none;
  }

  .mobileBarWrap {
    display: block;
  }

  .mPanelWrap {
    display: block;
  }
}

/* =========================
   DEMO CONTENT
========================= */
.page {
  width: var(--container);
  margin: 0 auto;
  padding: 18px 0 80px;
  position: relative;
  z-index: 1;
}

.placeholder {
  height: 900px;
  border-radius: 18px;
  border: 1px solid rgba(229, 231, 235, .8);
  background:
    radial-gradient(900px 260px at 20% 30%, rgba(0, 0, 0, .06), transparent 60%),
    linear-gradient(120deg, rgba(34, 197, 94, .08), rgba(59, 130, 246, .08)),
    rgba(255, 255, 255, .70);
}

/* =========================================================
   HERO SPLIT (Left Photo Slider + Right Content)
   (HTML e section add korlei style ready)
========================================================= */
.heroSplit {
  position: relative;
  z-index: 1;
  width: var(--container);
  margin: 26px auto 30px;
}

.heroSplit__wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  /* 50/50 */
  gap: 22px;
  align-items: stretch;
  min-height: 520px;
}

/* LEFT: Photo Slider */
.heroSplit__left {
  min-height: 520px;
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--bg);
  box-shadow: var(--shadow);
  border: 1px solid rgba(229, 231, 235, .75);
}

.heroSliderL {
  height: 100%;
  width: 100%;
  position: relative;
  overflow: hidden;
  background: var(--bg);
}

.heroSliderL__viewport,
.heroSliderL__slides {
  height: 100%;
  width: 100%;
  position: relative;
}

.heroSlideL {
  position: absolute;
  inset: 0;
  opacity: 0;
  transform: translateY(-10%);
  will-change: transform, opacity;
}

.heroSlideL.is-active {
  opacity: 1;
  transform: translateY(0);
}

.heroSlideL img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center;
  background: var(--bg);
}

.heroSlideL::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(900px 400px at 20% 20%, rgba(255, 255, 255, .18), transparent 55%),
    linear-gradient(180deg, rgba(0, 0, 0, .08), rgba(0, 0, 0, .26));
  pointer-events: none;
  opacity: .95;
}

.heroDotsL {
  position: absolute;
  left: 14px;
  bottom: 14px;
  display: flex;
  gap: 8px;
  z-index: 3;
  padding: 10px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, .18);
  border: 1px solid rgba(255, 255, 255, .22);
  backdrop-filter: blur(8px);
}

.heroDotL {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, .65);
  background: rgba(255, 255, 255, .25);
  cursor: pointer;
  padding: 0;
  outline: none;
}

.heroDotL.is-active {
  background: rgba(255, 255, 255, .95);
  border-color: rgba(255, 255, 255, .95);
}

.heroNavL {
  position: absolute;
  right: 14px;
  bottom: 14px;
  display: flex;
  gap: 10px;
  z-index: 3;
}

.heroBtnL {
  width: 42px;
  height: 42px;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, .28);
  background: rgba(255, 255, 255, .18);
  color: #fff;
  font-size: 22px;
  display: grid;
  place-items: center;
  cursor: pointer;
  backdrop-filter: blur(8px);
}

.heroBtnL:active {
  transform: translateY(1px);
}

/* RIGHT: Content */
.heroSplit__right {
  border-radius: var(--radius);
  background: rgba(255, 255, 255, .78);
  border: 1px solid rgba(229, 231, 235, .75);
  box-shadow: var(--shadow);
  padding: 26px 26px 22px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 520px;
}

.heroBadge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 12px;
  border-radius: 999px;
  border: 1px solid rgba(2, 6, 23, .10);
  background: rgba(255, 255, 255, .6);
  font-weight: 900;
  letter-spacing: .08em;
  font-size: 12px;
  width: fit-content;
}

.heroTitle {
  margin: 14px 0 10px;
  font-size: clamp(28px, 3.1vw, 46px);
  line-height: 1.05;
  letter-spacing: -.02em;
}

.heroTitle span {
  color: var(--accent);
}

.heroDesc {
  margin: 0 0 18px;
  color: rgba(17, 24, 39, .78);
  font-size: 15px;
  line-height: 1.65;
  max-width: 52ch;
}

.heroActions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 18px;
}

.heroBtnX {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 44px;
  padding: 0 16px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 900;
  letter-spacing: .02em;
  border: 1px solid rgba(2, 6, 23, .12);
  cursor: pointer;
}

.heroBtnX--primary {
  background: var(--accent);
  color: #fff;
  border-color: rgba(239, 68, 68, .35);
  box-shadow: 0 12px 26px rgba(239, 68, 68, .22);
}

.heroBtnX--ghost {
  background: rgba(255, 255, 255, .75);
  color: var(--text);
}

.heroStats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin-top: 4px;
}

.heroStat {
  border: 1px solid rgba(229, 231, 235, .9);
  background: rgba(255, 255, 255, .65);
  border-radius: 16px;
  padding: 12px 12px 10px;
}

.heroStat__num {
  font-weight: 900;
  font-size: 22px;
  letter-spacing: -.02em;
}

.heroStat__label {
  font-size: 12px;
  color: rgba(17, 24, 39, .62);
  font-weight: 800;
  margin-top: 3px;
  letter-spacing: .06em;
  text-transform: uppercase;
}

@media (prefers-reduced-motion: reduce) {
  .heroSlideL {
    transition: none !important;
  }
}

/* HERO MOBILE */
@media (max-width: 900px) {
  .heroSplit {
    margin-top: 18px;
  }

  .heroSplit__wrap {
    grid-template-columns: 1fr;
    min-height: unset;
  }

  .heroSplit__left,
  .heroSplit__right {
    min-height: 420px;
  }

  .heroSplit__right {
    padding: 20px 18px 18px;
  }

  .heroStats {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .heroStats .heroStat:nth-child(3) {
    grid-column: 1 / -1;
  }
}

@media (max-width: 420px) {

  .heroSplit__left,
  .heroSplit__right {
    min-height: 380px;
  }

  .heroTitle {
    font-size: 28px;
  }

  .heroDesc {
    font-size: 14px;
  }
}

/* ===== CRM Banner ===== */
.crmWrap {
  width: var(--container);
  margin: 22px auto 0;
}

.crmBanner {
  width: 100%;
  display: block;
  border-radius: 18px;
  box-shadow: var(--shadow);
}

/* ===== Trusted Logo Slider (Seamless + Edge Blur) ===== */
.trusted-wrap {
  width: var(--container);
  margin: 22px auto 0;
}

.trusted-title {
  font-weight: 800;
  font-size: 18px;
  margin: 0 0 12px 0;
  text-align: center;
}

.logo-marquee {
  --fade: 70px;
  /* edge size */
  --speed: 28s;
  /* scroll speed */
  --gap: 56px;
  /* logo gap */
  --logo-h: 34px;

  position: relative;
  overflow: hidden;
  border-radius: 18px;
  padding: 18px 0;
  background: #fff;
  border: 1px solid rgba(229, 231, 235, .8);
}

/* ✅ fade mask */
.logo-marquee {
  -webkit-mask-image: linear-gradient(90deg,
      transparent 0,
      #000 var(--fade),
      #000 calc(100% - var(--fade)),
      transparent 100%);
  mask-image: linear-gradient(90deg,
      transparent 0,
      #000 var(--fade),
      #000 calc(100% - var(--fade)),
      transparent 100%);
}

/* ✅ blur overlay on both edges */
.logo-marquee::before,
.logo-marquee::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  width: var(--fade);
  z-index: 2;
  /* keep below logos */
  pointer-events: none;
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}

.logo-marquee::before {
  left: 0;
  background: linear-gradient(to right, rgba(255, 255, 255, 1), rgba(255, 255, 255, 0));
}

.logo-marquee::after {
  right: 0;
  background: linear-gradient(to left, rgba(255, 255, 255, 1), rgba(255, 255, 255, 0));
}

/* ✅ main moving wrapper */
.marquee-inner {
  display: flex;
  width: max-content;
  will-change: transform;
  animation: marqueeMove var(--speed) linear infinite;
}

/* pause on hover */
.logo-marquee:hover .marquee-inner {
  animation-play-state: paused;
}

.track {
  position: relative;
  z-index: 5;
  /* ensure logos above blur */
  display: flex;
  align-items: center;
  gap: var(--gap);
  padding: 0 var(--gap);
}

/* =========================
   LOGOS (COLOR + CLARITY)
   ========================= */

.logo {
  height: var(--logo-h);
  width: auto;
  display: block;

  /* 🔥 color fix */
  filter: none !important;
  opacity: 1 !important;

  /* 🔥 sharpness fix */
  image-rendering: auto;
  image-rendering: -webkit-optimize-contrast;
  backface-visibility: hidden;
  transform: translateZ(0);

  transition: transform .2s ease;
  user-select: none;
  -webkit-user-drag: none;
}

.logo:hover {
  transform: translateY(-1px) scale(1.05);
}

/* ✅ seamless loop */
@keyframes marqueeMove {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

/* =========================
   RESPONSIVE
   ========================= */

@media (max-width: 600px) {
  .logo-marquee {
    --fade: 46px;
    --gap: 32px;
    --logo-h: 28px;
    --speed: 22s;
  }
}

/* ===== About / Leader section (below trusted slider) ===== */
.aboutLeader {
  width: var(--container);
  margin: 26px auto 0;
  position: relative;
  z-index: 1;
}

.aboutLeader__wrap {
  display: grid;
  grid-template-columns: 1.05fr 1.25fr;
  gap: 34px;
  align-items: center;
}

/* left media */
.aboutLeader__media {
  position: relative;
  border-radius: 18px;
  overflow: hidden;
  background: rgba(255, 255, 255, .75);
  border: 1px solid rgba(229, 231, 235, .9);
  box-shadow: var(--shadow);
}

.aboutLeader__media img {
  width: 100%;
  height: 520px;
  display: block;
  object-fit: cover;
  object-position: center;
}

/* caption overlay */
.aboutLeader__cap {
  position: absolute;
  left: 16px;
  right: 16px;
  bottom: 14px;
  padding: 12px 14px;
  border-radius: 14px;
  background: rgba(255, 255, 255, .75);
  border: 1px solid rgba(229, 231, 235, .9);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.aboutLeader__name {
  font-weight: 900;
  letter-spacing: .02em;
}

.aboutLeader__role {
  margin-top: 2px;
  color: rgba(17, 24, 39, .65);
  font-weight: 700;
  font-size: 13px;
}

/* right content */
.aboutLeader__title {
  margin: 0 0 14px 0;
  font-size: clamp(30px, 3.1vw, 52px);
  line-height: 1.05;
  letter-spacing: -.02em;

  /* ✅ underline only (no red spot/doodle) */
  text-decoration: underline;
  text-decoration-color: var(--accent);
  text-decoration-thickness: 3px;
  text-underline-offset: 10px;
}

.aboutLeader__desc {
  margin: 0 0 18px 0;
  color: rgba(17, 24, 39, .75);
  line-height: 1.75;
  font-size: 15px;
  max-width: 62ch;
}

.aboutLeader__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 44px;
  padding: 0 18px;
  border-radius: 999px;
  border: 1px solid rgba(17, 24, 39, .25);
  background: rgba(255, 255, 255, .8);
  color: #111827;
  font-weight: 900;
  text-decoration: none;
  box-shadow: 0 10px 22px rgba(2, 6, 23, .08);
}

.aboutLeader__btn:hover {
  transform: translateY(-1px);
}

/* stats row */
.aboutLeader__stats {
  margin-top: 22px;
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
}

.aboutLeader__stat {
  display: flex;
  align-items: baseline;
  gap: 12px;
}

.aboutLeader__num {
  font-weight: 900;
  font-size: 34px;
  letter-spacing: -.02em;
}

.aboutLeader__lbl {
  font-size: 13px;
  font-weight: 800;
  color: rgba(17, 24, 39, .7);
  line-height: 1.25;
}

.aboutLeader__divider {
  width: 1px;
  height: 34px;
  background: rgba(17, 24, 39, .15);
}

/* responsive */
@media (max-width: 900px) {
  .aboutLeader__wrap {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .aboutLeader__media img {
    height: 420px;
  }

  .aboutLeader__divider {
    display: none;
  }
}

/* ===== Section Heading (Recent Projects) ===== */
.secHead {
  width: var(--container);
  margin: 54px auto 0;
  text-align: center;
  position: relative;
  z-index: 1;
}

.secHead__title {
  margin: 0;
  font-weight: 800;
  font-size: clamp(28px, 3vw, 46px);
  line-height: 1.15;
  letter-spacing: -0.02em;

  /* clean underline (no red spot) */
  text-decoration: underline;
  text-decoration-color: var(--accent);
  text-decoration-thickness: 3px;
  text-underline-offset: 12px;
}

.secHead__desc {
  margin: 18px auto 0;
  max-width: 68ch;
  color: rgba(17, 24, 39, .72);
  line-height: 1.7;
  font-size: 15px;
}

@media (max-width: 520px) {
  .secHead {
    margin-top: 40px;
  }

  .secHead__desc {
    font-size: 14px;
  }
}

/* ===== Projects Grid (matches screenshot style) ===== */
.pGrid {
  width: var(--container);
  margin: 28px auto 70px;
  position: relative;
  z-index: 1;
}

.pGrid__wrap {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 26px;
}

/* card */
.pCard {
  display: grid;
  gap: 12px;
}

.pCard__media {
  display: block;
  border-radius: 18px;
  overflow: hidden;
  background: rgba(255, 255, 255, .7);
  border: 1px solid rgba(229, 231, 235, .85);
  box-shadow: 0 10px 22px rgba(2, 6, 23, .08);
}

.pCard__media img {
  width: 100%;
  height: 280px;
  display: block;
  object-fit: cover;
  object-position: center;
  transform: scale(1.001);
}

.pCard__meta {
  padding-left: 6px;
  /* screenshot like small inset */
}

.pDate {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: rgba(17, 24, 39, .72);
  font-weight: 600;
  font-size: 14px;
}

.pDate__icon {
  width: 22px;
  height: 22px;
  display: inline-grid;
  place-items: center;
  border-radius: 999px;
  border: 1px solid rgba(17, 24, 39, .14);
  background: rgba(255, 255, 255, .65);
  font-size: 12px;
}

.pCard__title {
  display: inline-block;
  margin-top: 4px;
  text-decoration: none;
  color: var(--text);
  font-weight: 800;
  letter-spacing: -0.01em;
  font-size: 22px;
  line-height: 1.25;
}

.pCard__title:hover {
  text-decoration: underline;
  text-decoration-color: rgba(239, 68, 68, .55);
  text-decoration-thickness: 2px;
  text-underline-offset: 6px;
}

/* tags */
.pTags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 10px;
}

.pTag {
  display: inline-flex;
  align-items: center;
  height: 30px;
  padding: 0 12px;
  border-radius: 999px;
  border: 1px solid rgba(17, 24, 39, .10);
  background: rgba(17, 24, 39, .04);
  color: rgba(17, 24, 39, .78);
  font-size: 13px;
  font-weight: 600;
  white-space: nowrap;
}

.pTag--pink {
  background: rgba(239, 68, 68, .08);
  border-color: rgba(239, 68, 68, .18);
}

.pTag--blue {
  background: rgba(59, 130, 246, .10);
  border-color: rgba(59, 130, 246, .18);
}

/* responsive */
@media (max-width: 980px) {
  .pGrid__wrap {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .pCard__media img {
    height: 260px;
  }
}

@media (max-width: 620px) {
  .pGrid__wrap {
    grid-template-columns: 1fr;
  }

  .pCard__media img {
    height: 240px;
  }

  .pCard__title {
    font-size: 20px;
  }

  .pTag {
    white-space: normal;
  }
}

/* ===== Recent projects (3 cards + view more) ===== */
.workSec {
  width: var(--container, min(1200px, 92vw));
  margin: 22px auto 60px;
  position: relative;
  z-index: 1;
}

.workGrid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 34px;
  align-items: start;
}

.workCard {
  background: transparent;
}

.workMedia {
  display: block;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 12px 26px rgba(2, 6, 23, .10);
  border: 1px solid rgba(229, 231, 235, .85);
}

.workMedia img {
  width: 100%;
  height: 320px;
  display: block;
  object-fit: cover;
  transform: scale(1.01);
  transition: transform .25s ease;
}

.workMedia:hover img {
  transform: scale(1.05);
}

.workBody {
  padding-top: 14px;
}

.workDate {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: rgba(17, 24, 39, .60);
  font-size: 14px;
  margin-bottom: 6px;
}

.workClock {
  width: 22px;
  height: 22px;
  display: inline-grid;
  place-items: center;
  color: rgba(17, 24, 39, .55);
}

.workClock svg {
  width: 22px;
  height: 22px;
}

.workTitle {
  display: inline-block;
  text-decoration: none;
  color: #111827;
  font-weight: 500;
  font-size: 22px;
  line-height: 1.25;
  letter-spacing: -.01em;
  margin: 2px 0 12px;
}

.workTitle:hover {
  text-decoration: underline;
}

.workTags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.tag {
  font-size: 13px;
  padding: 8px 12px;
  border-radius: 999px;
  border: 1px solid rgba(17, 24, 39, .08);
  background: rgba(17, 24, 39, .03);
  color: rgba(17, 24, 39, .78);
  line-height: 1;
}

.tag--gray {
  background: rgba(17, 24, 39, .05);
}

.tag--pink {
  background: rgba(239, 68, 68, .10);
  border-color: rgba(239, 68, 68, .16);
}

.tag--blue {
  background: rgba(59, 130, 246, .10);
  border-color: rgba(59, 130, 246, .16);
}

/* View more button center */
.workMore {
  display: flex;
  justify-content: center;
  margin-top: 34px;
}

.workMoreBtn {
  text-decoration: none;
  color: #111827;
  border: 1px solid rgba(17, 24, 39, .35);
  background: rgba(255, 255, 255, .70);
  padding: 12px 26px;
  border-radius: 999px;
  font-weight: 500;
  box-shadow: 0 10px 22px rgba(2, 6, 23, .08);
}

.workMoreBtn:hover {
  background: rgba(255, 255, 255, .90);
}

/* Scroll to top button (bottom-right) */
.toTop {
  position: fixed;
  right: 18px;
  bottom: 18px;
  width: 42px;
  height: 42px;
  border-radius: 999px;
  border: 1px solid rgba(239, 68, 68, .35);
  background: rgba(255, 255, 255, .85);
  color: #ef4444;
  display: grid;
  place-items: center;
  cursor: pointer;
  box-shadow: 0 12px 24px rgba(2, 6, 23, .10);
  opacity: 0;
  transform: translateY(10px);
  pointer-events: none;
  transition: opacity .2s ease, transform .2s ease;
  z-index: 99;
}

.toTop.show {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

/* Responsive */
@media (max-width: 980px) {
  .workGrid {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .workMedia img {
    height: 280px;
  }

  .workTitle {
    font-size: 20px;
  }
}

/* ===== Section heading (like screenshot) ===== */
.whyHead {
  width: var(--container, min(1200px, 92vw));
  margin: 64px auto 22px;
  position: relative;
  z-index: 1;
}

.whyHead__inner {
  max-width: 980px;
  margin: 0 auto;
  text-align: center;
}

.whyHead__title {
  margin: 0 auto 14px;
  font-size: clamp(26px, 3.4vw, 44px);
  line-height: 1.15;
  letter-spacing: -0.02em;
  font-weight: 500;
  /* screenshot এর মতো soft */
  position: relative;
  display: inline-block;
  /* doodle position ঠিক রাখতে */
}

/* small red doodle top-right */
.whyHead__doodle {
  position: absolute;
  right: -34px;
  top: -10px;
  width: 26px;
  height: 18px;
  background: no-repeat center / contain;
  /* simple svg scribble */
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='52' height='36' viewBox='0 0 52 36'%3E%3Cpath d='M6 28c9-5 13-14 25-16M10 34c10-7 17-19 34-24M22 34c8-10 13-18 24-26' fill='none' stroke='%23ef4444' stroke-width='3.2' stroke-linecap='round'/%3E%3C/svg%3E");
}

/* paragraph */
.whyHead__desc {
  margin: 0 auto;
  max-width: 72ch;
  color: rgba(17, 24, 39, .62);
  font-size: 16px;
  line-height: 1.75;
}

/* responsive doodle */
@media (max-width: 520px) {
  .whyHead {
    margin-top: 44px;
  }

  .whyHead__doodle {
    right: -18px;
    top: -8px;
    transform: scale(.9);
  }

  .whyHead__desc {
    font-size: 15px;
  }
}

/* ===== Why Split (left list + right image) ===== */
.whySplit {
  width: var(--container, min(1200px, 92vw));
  margin: 34px auto 70px;
  position: relative;
  z-index: 1;
}

.whySplit__wrap {
  display: grid;
  grid-template-columns: 1.15fr .95fr;
  gap: 26px;
  align-items: start;
}

.whySplit__left {
  padding-top: 8px;
}

/* Left list */
.whyList {
  background: rgba(255, 255, 255, .0);
}

.whyList__item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 18px 12px;
  border-bottom: 1px solid rgba(17, 24, 39, .10);
  color: rgba(17, 24, 39, .68);
  font-weight: 600;
}

.whyList__ico {
  width: 22px;
  height: 22px;
  color: rgba(239, 68, 68, .75);
  flex: 0 0 auto;
}

.whyList__ico svg {
  width: 22px;
  height: 22px;
  display: block;
}

.whyList__text {
  font-size: 18px;
  letter-spacing: -.01em;
}

/* Active highlight (last item) */
.whyList__item--active {
  border-bottom: none;
  margin-top: 8px;
  background: rgba(239, 68, 68, .06);
  border-radius: 14px;
  position: relative;
  padding: 18px 16px 18px 18px;
  color: rgba(17, 24, 39, .80);
}

.whyList__item--active::before {
  content: "";
  position: absolute;
  left: 0;
  top: 14px;
  bottom: 14px;
  width: 4px;
  border-radius: 999px;
  background: rgba(239, 68, 68, .85);
}

.whyList__ico--active {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  background: #ef4444;
  color: #fff;
  display: grid;
  place-items: center;
  margin-left: 10px;
}

.whyList__ico--active svg {
  width: 22px;
  height: 22px;
}

.whyList__activeText {
  padding-left: 4px;
}

.whyList__activeTitle {
  font-size: 18px;
  font-weight: 800;
  margin: 0 0 6px;
}

.whyList__activeDesc {
  font-size: 14px;
  line-height: 1.6;
  color: rgba(17, 24, 39, .62);
  max-width: 60ch;
}

/* Right image */
.whyShot {
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 18px 40px rgba(2, 6, 23, .12);
  background: #fff;
}

.whyShot img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  aspect-ratio: 4/3;
}

/* Responsive */
@media (max-width: 980px) {
  .whySplit__wrap {
    grid-template-columns: 1fr;
  }

  .whyShot img {
    aspect-ratio: 16/10;
  }

  .whyList__text {
    font-size: 16px;
  }
}

/* ===== TABBED SERVICES (scoped) ===== */
:root {
  --svc-stroke: #ead6d6;
  --svc-pink: #fdeeee;
  --svc-text: #0f172a;
  --svc-muted: #6b7280;
  --svc-badgeBG: #f7d9da;
  --svc-badgeStroke: #efc9cb;
  --svc-radius: 18px;
  --svc-shadow: 0 18px 42px rgba(2, 6, 23, .12);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  background: #fff;
  color: var(--svc-text);
  padding: 28px 14px 60px;
}

/* Card */
.svcCard {
  width: min(1100px, 96vw);
  margin: 48px auto;
  border: 1px solid var(--svc-stroke);
  border-radius: var(--svc-radius);
  overflow: hidden;
  box-shadow: var(--svc-shadow);
  background: #fff;
}

/* Tabs */
.svcTabs {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  background: #fff;
  border-bottom: 1px solid var(--svc-stroke);
  position: relative;
}

.svcTab {
  padding: 26px 26px 22px;
  min-height: 120px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  gap: 4px;
  border: 0;
  background: transparent;
  border-right: 1px solid var(--svc-stroke);
  cursor: pointer;
  user-select: none;
  text-align: left;
  position: relative;
  z-index: 1;
  color: var(--svc-text);
}

.svcTab:last-child {
  border-right: 0;
}

.svcTab h3 {
  margin: 0;
  font-size: 20px;
  letter-spacing: .02em;
  font-weight: 500;
}

.svcTab p {
  margin: 0;
  color: var(--svc-muted);
  font-weight: 500;
}

/* Desktop highlight pill */
.svcPill {
  position: absolute;
  top: 0;
  bottom: 0;
  width: 33.3333%;
  left: 33.3333%;
  /* default DEV */
  background: var(--svc-pink);
  border-left: 1px solid var(--svc-stroke);
  border-right: 1px solid var(--svc-stroke);
  z-index: 0;
}

/* Panel */
.svcPanelWrap {
  background: var(--svc-pink);
  padding: 26px;
  min-height: 360px;
  position: relative;
  overflow: hidden;
}

.svcPanel {
  display: none;
  opacity: 0;
  transform: translateY(10px);
}

.svcPanel.is-active {
  display: block;
}

.svcGrid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 36px 34px;
  align-items: start;
}

.svcItem {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 14px;
  align-items: start;
  padding: 8px 2px;
}

.svcBadge {
  width: 38px;
  height: 38px;
  border-radius: 12px;
  background: var(--svc-badgeBG);
  border: 1px solid var(--svc-badgeStroke);
  display: grid;
  place-items: center;
  font-weight: 600;
  color: #4b5563;
}

.svcTitle {
  margin: 0;
  font-size: 22px;
  font-weight: 500;
  letter-spacing: .01em;
  color: #0b1220;
}

.svcDesc {
  margin: 8px 0 0;
  color: var(--svc-muted);
  line-height: 1.7;
  font-size: 14px;
  max-width: 42ch;
}

@media (max-width: 980px) {
  .svcGrid {
    grid-template-columns: 1fr 1fr;
  }
}

/* ===== MOBILE: keep same highlight feel (active tab bg) ===== */
@media (max-width: 640px) {
  .svcTabs {
    grid-template-columns: 1fr;
  }

  .svcTab {
    border-right: 0;
    border-bottom: 1px solid var(--svc-stroke);
    min-height: auto;
    background: #fff;
    transition: background .2s ease;
  }

  .svcTab:last-child {
    border-bottom: 0;
  }

  /* hide pill on mobile */
  .svcPill {
    display: none;
  }

  /* ✅ active tab gets pink background (like desktop pill) */
  .svcTab.is-active {
    background: var(--svc-pink);
  }

  .svcGrid {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .svcPanelWrap {
    padding: 18px;
  }
}

/* ===== Process Wave Section ===== */
.proc {
  background: #fff;
  padding: 86px 0 96px;
}

.proc__wrap {
  width: min(1200px, 92vw);
  margin: 0 auto;
  text-align: center;
}

.proc__title {
  margin: 0;
  font-size: clamp(30px, 4.2vw, 56px);
  line-height: 1.08;
  font-weight: 500;
  color: #111827;
}

.proc__sub {
  margin: 16px auto 0;
  max-width: 68ch;
  font-size: 18px;
  line-height: 1.7;
  color: rgba(17, 24, 39, .70);
}

/* stage area */
.proc__stage {
  position: relative;
  margin-top: 44px;
  height: 320px;
}

/* wave svg */

/* nodes */
.proc__node {
  position: absolute;
  top: 126px;
  /* align with wave area */
  transform: translate(-50%, -50%);
  opacity: 0;
}

.proc__bubble {
  width: 62px;
  height: 62px;
  border-radius: 999px;
  background: rgba(255, 255, 255, .96);
  border: 1px solid rgba(225, 29, 29, .20);
  box-shadow: 0 18px 40px rgba(2, 6, 23, .10);
  display: grid;
  place-items: center;
}

.proc__bubble svg {
  width: 26px;
  height: 26px;
  fill: #e11d1d;
}

/* Node positions across the wave */
/* Straight line holder */
.proc__wave {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 240px;
  /* match viewBox height */
  pointer-events: none;
  z-index: 1;
}

/* Red straight line */
.proc__line {
  fill: none;
  stroke: #e11d1d;
  stroke-width: 6;
  stroke-linecap: round;
  stroke-linejoin: round;

  /* optional: slight depth */
  filter: drop-shadow(0 6px 14px rgba(225, 29, 29, .22));
}

/* ✅ nodes same straight row (line y=120) */
.proc__node.n1 {
  left: 8%;
  top: 120px;
}

.proc__node.n2 {
  left: 44%;
  top: 120px;
}

.proc__node.n3 {
  left: 62%;
  top: 120px;
}

.proc__node.n4 {
  left: 92%;
  top: 120px;
}

/* =========================
   TESTIMONIALS HEADING (What Clients Say...)
========================= */
.say {
  background: #fff;
  padding: 86px 0 90px;
}

.say__wrap {
  width: var(--container, min(1200px, 92vw));
  margin: 0 auto;
  text-align: center;
}

.say__title {
  margin: 0;
  font-size: clamp(30px, 4.2vw, 56px);
  line-height: 1.08;
  font-weight: 500;
  letter-spacing: -0.02em;
  color: #111827;
  display: inline-block;
  position: relative;
  /* doodle anchor */
}

.say__doodle {
  position: absolute;
  right: -42px;
  top: -12px;
  width: 34px;
  height: 22px;
  overflow: visible;
}

.say__doodle path {
  fill: none;
  stroke: #ef4444;
  stroke-width: 3.2;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-dasharray: 120;
  stroke-dashoffset: 120;
  /* GSAP will animate */
}

.say__sub {
  margin: 18px auto 0;
  max-width: 78ch;
  color: rgba(17, 24, 39, .68);
  font-size: 18px;
  line-height: 1.8;
}

@media (max-width: 520px) {
  .say {
    padding: 58px 0 62px;
  }

  .say__sub {
    font-size: 15px;
    line-height: 1.75;
  }

  .say__doodle {
    right: -20px;
    top: -10px;
    transform: scale(.9);
  }
}

/* =========================
   TESTIMONIALS (Section)
========================= */
.tSec {
  background: #fff;
  padding: 84px 0 90px;
}

.tSec__wrap {
  width: min(1200px, 92vw);
  margin: 0 auto;
}

.tHead {
  text-align: center;
}

.tHead__title {
  margin: 0 auto 14px;
  font-size: clamp(28px, 3.3vw, 52px);
  line-height: 1.15;
  letter-spacing: -0.02em;
  font-weight: 500;
  position: relative;
  display: inline-block;
  color: #111827;
}

.tHead__desc {
  margin: 0 auto;
  max-width: 78ch;
  color: rgba(17, 24, 39, .62);
  font-size: 16px;
  line-height: 1.8;
}

/* little red doodle top-right */
.tHead__spark {
  position: absolute;
  right: -34px;
  top: -10px;
  width: 26px;
  height: 18px;
  background: no-repeat center / contain;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='52' height='36' viewBox='0 0 52 36'%3E%3Cpath d='M6 28c9-5 13-14 25-16M10 34c10-7 17-19 34-24M22 34c8-10 13-18 24-26' fill='none' stroke='%23ef4444' stroke-width='3.2' stroke-linecap='round'/%3E%3C/svg%3E");
}

/* =========================
   TESTIMONIALS (Grid)
========================= */
.tGrid {
  margin-top: 40px;
  border: 1px solid rgba(17, 24, 39, .10);
  border-radius: 10px;
  overflow: hidden;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  background: #fff;
}

.tCard {
  padding: 24px 24px 18px;
  border-right: 1px solid rgba(17, 24, 39, .10);
  border-bottom: 1px solid rgba(17, 24, 39, .10);
  min-height: 240px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;

  opacity: 0;
  /* GSAP entry */
  transform: translateY(14px);
}

.tCard:nth-child(3n) {
  border-right: 0;
}

.tCard:nth-last-child(-n + 3) {
  border-bottom: 0;
}

.tCard__text {
  margin: 0;
  color: rgba(17, 24, 39, .72);
  font-size: 15px;
  line-height: 1.85;
}

.tCard__more {
  color: rgba(17, 24, 39, .65);
  text-decoration: none;
  font-weight: 600;
}

.tCard__more:hover {
  text-decoration: underline;
}

.tCard__foot {
  margin-top: 18px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.tCard__avatar {
  width: 42px;
  height: 42px;
  border-radius: 999px;
  object-fit: cover;
  border: 1px solid rgba(17, 24, 39, .12);
  background: #f3f4f6;
}

.tCard__name {
  font-weight: 800;
  color: #111827;
}

.tCard__role {
  margin-top: 3px;
  font-size: 13px;
  color: rgba(17, 24, 39, .55);
}

/* =========================
   Clutch card
========================= */
.tCard--clutch {
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
}

.tClutch__brand {
  font-weight: 900;
  font-size: 40px;
  letter-spacing: -0.03em;
  margin-bottom: 10px;
  color: #111827;
}

.tClutch__rating {
  color: rgba(17, 24, 39, .70);
  font-size: 14px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.tClutch__star {
  color: #f59e0b;
}

.tClutch__row {
  margin-top: 14px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.tClutch__avatars {
  display: flex;
  align-items: center;
}

.tClutch__avatars span {
  width: 28px;
  height: 28px;
  border-radius: 999px;
  border: 2px solid #fff;
  background: linear-gradient(135deg, rgba(239, 68, 68, .22), rgba(17, 24, 39, .10));
  margin-left: -8px;
}

.tClutch__avatars span:first-child {
  margin-left: 0;
}

.tClutch__reviews {
  font-size: 16px;
  color: rgba(17, 24, 39, .78);
}

.tClutch__btn {
  margin-top: 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 44px;
  padding: 0 18px;
  border-radius: 999px;
  border: 1px solid rgba(17, 24, 39, .30);
  background: rgba(255, 255, 255, .85);
  text-decoration: none;
  font-weight: 600;
  color: #111827;
}

/* Responsive */
@media (max-width: 980px) {
  .tGrid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .tCard:nth-child(3n) {
    border-right: 1px solid rgba(17, 24, 39, .10);
  }

  .tCard:nth-child(2n) {
    border-right: 0;
  }

  .tCard:nth-last-child(-n + 3) {
    border-bottom: 1px solid rgba(17, 24, 39, .10);
  }

  .tCard:nth-last-child(-n + 2) {
    border-bottom: 0;
  }
}

@media (max-width: 560px) {
  .tGrid {
    grid-template-columns: 1fr;
  }

  .tCard {
    border-right: 0 !important;
    border-bottom: 1px solid rgba(17, 24, 39, .10);
  }

  .tCard:last-child {
    border-bottom: 0;
  }

  .tHead__spark {
    right: -16px;
    top: -8px;
    transform: scale(.9);
  }
}

/* =========================
   MODAL (Read more popup)
========================= */
.tModal {
  position: fixed;
  inset: 0;
  z-index: 999;
  display: none;
}

.tModal.is-open {
  display: flex;
}

.tModal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(17, 24, 39, .55);
  backdrop-filter: blur(2px);
}

.tModal__dialog {
  position: relative;
  margin: auto;
  width: min(640px, 92vw);
  background: #fff;
  border-radius: 10px;
  border: 1px solid rgba(17, 24, 39, .10);
  box-shadow: 0 24px 70px rgba(2, 6, 23, .22);
  overflow: hidden;
}

.tModal__close {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 36px;
  height: 36px;
  border-radius: 10px;
  border: 1px solid rgba(17, 24, 39, .12);
  background: rgba(255, 255, 255, .9);
  font-size: 22px;
  line-height: 1;
  cursor: pointer;
}

.tModal__body {
  padding: 22px 22px 14px;
}

.tModal__text {
  margin: 0;
  color: rgba(17, 24, 39, .78);
  font-size: 15px;
  line-height: 1.8;
  white-space: pre-line;
}

.tModal__foot {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 22px 18px;
  border-top: 1px solid rgba(17, 24, 39, .10);
  background: #fff;
}

.tModal__avatar {
  width: 46px;
  height: 46px;
  border-radius: 999px;
  object-fit: cover;
  border: 1px solid rgba(17, 24, 39, .12);
  background: #f3f4f6;
}

.tModal__name {
  font-weight: 800;
  color: #111827;
  font-size: 16px;
}

.tModal__role {
  margin-top: 4px;
  font-size: 13px;
  color: rgba(17, 24, 39, .55);
}

body.modal-open {
  overflow: hidden;
}

/* ===== FAQ (scoped) ===== */
:root {
  --faq-accent: #e11d2e;
  --faq-bg: #ffffff;
  --faq-soft: #fff4f4;
  --faq-stroke: rgba(17, 24, 39, .10);
  --faq-text: #111827;
  --faq-muted: rgba(17, 24, 39, .62);
  --faq-radius: 12px;
  --faq-shadow: 0 18px 42px rgba(2, 6, 23, .10);
}

.faq {
  background: var(--faq-bg);
  padding: 84px 0 90px;
}

.faq__wrap {
  width: min(1100px, 92vw);
  margin: 0 auto;
}

.faq__head {
  text-align: center;
  margin-bottom: 34px;
}

.faq__title {
  margin: 0;
  font-size: clamp(34px, 4.2vw, 62px);
  font-weight: 500;
  letter-spacing: -0.02em;
  line-height: 1.08;
  display: inline-block;
  position: relative;
  color: var(--faq-text);
}

.faq__sub {
  margin: 16px auto 0;
  max-width: 70ch;
  font-size: 18px;
  line-height: 1.7;
  color: var(--faq-muted);
}

.faq__doodle {
  position: absolute;
  width: 34px;
  height: 26px;
  top: 6px;
  background: no-repeat center / contain;
  opacity: .95;
  pointer-events: none;
  /* scribble SVG */
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='68' height='52' viewBox='0 0 68 52'%3E%3Cpath d='M10 36c10-6 14-16 28-18M14 44c12-8 20-22 38-28M28 44c9-11 15-20 28-30' fill='none' stroke='%23e11d2e' stroke-width='4.2' stroke-linecap='round'/%3E%3C/svg%3E");
}

.faq__doodle--left {
  left: -48px;
  transform: rotate(-12deg);
}

.faq__doodle--right {
  right: -48px;
  transform: rotate(14deg);
}

.faq__list {
  border: 1px solid rgba(17, 24, 39, .08);
  border-radius: 10px;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 12px 28px rgba(2, 6, 23, .06);
}

/* row */
.faq__item {
  border-top: 1px solid rgba(17, 24, 39, .08);
  background: #fff;
}

.faq__item:first-child {
  border-top: 0;
}

.faq__q {
  width: 100%;
  border: 0;
  background: transparent;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 22px 22px;
  text-align: left;
}

.faq__num {
  min-width: 44px;
  font-weight: 500;
  color: rgba(225, 29, 46, .55);
}

.faq__text {
  flex: 1;
  font-size: 22px;
  font-weight: 500;
  color: var(--faq-text);
  line-height: 1.25;
}

.faq__icon {
  width: 20px;
  height: 20px;
  position: relative;
  opacity: .75;
}

.faq__icon::before,
.faq__icon::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  margin: auto;
  height: 2px;
  background: rgba(17, 24, 39, .65);
  border-radius: 999px;
}

.faq__icon::after {
  width: 2px;
  height: 100%;
}

/* answer area */
.faq__aWrap {
  height: 0;
  /* JS/GSAP animates this */
  overflow: hidden;
}

.faq__a {
  padding: 0 22px 22px 80px;
  /* aligns under question text */
  color: rgba(17, 24, 39, .62);
  font-size: 15px;
  line-height: 1.75;
}

/* open state style (pink row like screenshot) */
.faq__item.is-open {
  background: var(--faq-soft);
}

.faq__item.is-open .faq__q {
  background: var(--faq-soft);
}

.faq__item.is-open .faq__icon::after {
  opacity: 0;
}

/* turn + into - */

@media (max-width: 720px) {
  .faq {
    padding: 64px 0 70px;
  }

  .faq__sub {
    font-size: 16px;
  }

  .faq__text {
    font-size: 18px;
  }

  .faq__q {
    padding: 18px 16px;
  }

  .faq__a {
    padding: 0 16px 16px 60px;
  }

  .faq__doodle--left {
    left: -26px;
    top: -6px;
    transform: scale(.85) rotate(-12deg);
  }

  .faq__doodle--right {
    right: -26px;
    top: 0px;
    transform: scale(.85) rotate(14deg);
  }
}


:root {
  --blogText: #111827;
  --blogMuted: rgba(17, 24, 39, .65);
  --blogLine: rgba(17, 24, 39, .12);
  --blogAccent: #ef4444;

  --blogMax: min(1200px, 92vw);
  --blogRadius: 18px;
}

.blogSec {
  background: #fff;
  padding: 86px 0 86px;
}

/* remove underline from all project links */
.pCard a,
.pCard__title,
.pCard__media,
.filter-row .pill {
  text-decoration: none !important;
}


.blogSec__wrap {
  width: var(--blogMax);
  margin: 0 auto;
}

.blogSec__head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 26px;
}

.blogSec__title {
  margin: 0;
  font-size: clamp(28px, 3.4vw, 52px);
  line-height: 1.1;
  font-weight: 500;
  color: var(--blogText);
  letter-spacing: -.02em;
}

.blogSec__btn {
  flex: 0 0 auto;
  height: 44px;
  padding: 0 18px;
  border-radius: 999px;
  border: 1px solid rgba(17, 24, 39, .28);
  background: rgba(255, 255, 255, .9);
  color: var(--blogText);
  text-decoration: none;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 22px rgba(2, 6, 23, .06);
  transition: transform .15s ease, box-shadow .15s ease;
}

.blogSec__btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 14px 28px rgba(2, 6, 23, .08);
}

/* red underline like screenshot */
.uRed {
  position: relative;
  display: inline-block;
  padding: 0 2px;
}

.uRed::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -6px;
  height: 10px;
  border-radius: 999px;
  background: rgba(239, 68, 68, .18);
  border: 2px solid rgba(239, 68, 68, .40);
  transform: rotate(-1.5deg);
  z-index: -1;
}

.blogGrid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 34px;
  align-items: start;
}

.blogCard {
  display: grid;
  gap: 14px;
}

.blogCard__media {
  display: block;
  border-radius: var(--blogRadius);
  overflow: hidden;
  background: rgba(17, 24, 39, .04);
  box-shadow: 0 14px 30px rgba(2, 6, 23, .10);
}

.blogCard__media img {
  width: 100%;
  height: 240px;
  display: block;
  object-fit: cover;
  object-position: center;
  transform: scale(1.01);
  transition: transform .35s ease;
}

.blogCard__media:hover img {
  transform: scale(1.06);
}

.blogCard__title {
  text-decoration: none;
  color: var(--blogText);
  font-size: 22px;
  line-height: 1.25;
  font-weight: 500;
  letter-spacing: -.01em;
  max-width: 38ch;
}

.blogCard__title:hover {
  text-decoration: underline;
  text-decoration-color: rgba(239, 68, 68, .55);
  text-decoration-thickness: 2px;
  text-underline-offset: 8px;
}

.blogMeta {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  color: var(--blogMuted);
  font-size: 14px;
  align-items: center;
}

.blogMeta__item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.blogIco {
  width: 18px;
  height: 18px;
  display: inline-grid;
  place-items: center;
  color: rgba(17, 24, 39, .55);
}

.blogIco svg {
  width: 18px;
  height: 18px;
  display: block;
}

/* responsive */
@media (max-width: 980px) {
  .blogGrid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .blogCard__media img {
    height: 230px;
  }
}

@media (max-width: 640px) {
  .blogSec__head {
    flex-direction: column;
    align-items: flex-start;
  }

  .blogSec__btn {
    height: 42px;
  }

  .blogGrid {
    grid-template-columns: 1fr;
    gap: 26px;
  }

  .blogCard__media img {
    height: 220px;
  }

  .blogCard__title {
    font-size: 20px;
  }
}

:root {
  --ctaText: #111827;
  --ctaMuted: rgba(17, 24, 39, .70);
  --ctaAccent: #ef4444;
  --ctaMax: min(1200px, 92vw);
}

/* Section */
.ctaHero {
  background: #fff;
  padding: 88px 0 88px;
}

.ctaHero__wrap {
  width: var(--ctaMax);
  margin: 0 auto;
  text-align: center;
}

/* Title */
.ctaHero__title {
  margin: 0;
  font-size: clamp(34px, 4.0vw, 56px);
  line-height: 1.12;
  letter-spacing: -.02em;
  font-weight: 500;
  color: var(--ctaText);
  position: relative;
  display: inline-block;
  /* doodle positioning stable */
}

/* small red doodle at top-right like screenshot */
/* small red doodle at top-right like screenshot */
.ctaHero__doodle {
  position: absolute;
  right: -34px;
  top: -8px;
  width: 26px;
  height: 18px;
  background: no-repeat center / contain;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg' width='52' height='36' viewBox='0 0 52 36'%3E%3Cpath d='M8 24c8-3 12-10 22-12M12 30c9-5 16-15 30-19M24 30c6-7 10-12 18-18' fill='none' stroke='%23ef4444' stroke-width='3.2' stroke-linecap='round'/%3E%3C%2Fsvg%3E");
  opacity: .95;
}


/* Paragraph */
.ctaHero__desc {
  margin: 18px auto 0;
  max-width: 74ch;
  color: var(--ctaMuted);
  font-size: 18px;
  line-height: 1.75;
}

/* Responsive */
@media (max-width: 520px) {
  .ctaHero {
    padding: 64px 0 64px;
  }

  .ctaHero__doodle {
    right: -18px;
    top: -6px;
    transform: scale(.92);
  }

  .ctaHero__desc {
    font-size: 16px;
  }
}


/* =========================
   BOOK A MEETING (Button + Scheduler Wrapper)
========================= */

/* button row (centered) */
.meetingBtnRow {
  width: min(1200px, 92vw);
  margin: 26px auto 14px;
  display: flex;
  justify-content: center;
}

/* button */
.meetingBtn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;

  height: 48px;
  padding: 0 26px;

  border-radius: 999px;
  border: 1px solid rgba(220, 38, 38, .35);
  background: #dc2626;
  color: #fff;

  font-family: Inter, system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
  font-weight: 900;
  font-size: 14px;
  letter-spacing: .03em;
  text-transform: uppercase;
  text-decoration: none;

  box-shadow: 0 14px 30px rgba(220, 38, 38, .25);
  cursor: pointer;

  transition: transform .15s ease, box-shadow .15s ease, filter .15s ease;
}

.meetingBtn:hover {
  transform: translateY(-1px);
  box-shadow: 0 18px 38px rgba(220, 38, 38, .30);
  filter: brightness(1.03);
}

.meetingBtn:active {
  transform: translateY(0);
  box-shadow: 0 10px 20px rgba(220, 38, 38, .22);
}

/* scheduler outer section */
#scheduler {
  padding: 22px 0 54px;
}

/* ✅ center container */
#scheduler .wrap {
  width: min(1100px, 96vw);
  margin: 0 auto;
}

/* ✅ scheduler box/card look + animation base */
#scheduler .shell {
  opacity: 0;
  transform: translateY(-40px);
  transition: opacity .45s ease, transform .45s ease;

  background: #ffffff;
  border: 1px solid rgba(15, 23, 42, .12);
  border-radius: 14px;
  box-shadow: 0 18px 40px rgba(2, 6, 23, .10);
  overflow: hidden;

  color: #0f172a;
}

/* visible state */
#scheduler.is-visible .shell {
  opacity: 1;
  transform: translateY(0);
}

/* optional bounce */
@keyframes fallInBounce {
  0% {
    opacity: 0;
    transform: translateY(-42px);
  }

  60% {
    opacity: 1;
    transform: translateY(6px);
  }

  100% {
    transform: translateY(0);
  }
}

#scheduler.is-animated .shell {
  animation: fallInBounce .55s ease-out;
}

/* inside column separators soft */
#scheduler .col+.col {
  border-left: 1px solid rgba(15, 23, 42, .10);
}

/* small muted text soft */
#scheduler .name,
#scheduler .metaRow,
#scheduler .smallRow {
  color: rgba(15, 23, 42, .62);
}

/* headings stronger */
#scheduler .title,
#scheduler .month,
#scheduler .picked {
  color: #0f172a;
}

/* =========================
   RESPONSIVE
========================= */

@media (max-width: 1020px) {
  .meetingBtnRow {
    margin: 22px auto 12px;
  }

  /* button full width on mobile */
  .meetingBtn {
    width: 100%;
    max-width: 420px;
    height: 46px;
    font-size: 13px;
  }

  /* columns divider remove in mobile stacked layouts */
  #scheduler .col+.col {
    border-left: 0;
    border-top: 1px solid rgba(15, 23, 42, .10);
  }
}

@media (max-width: 520px) {
  #scheduler {
    padding: 16px 0 42px;
  }

  #scheduler .shell {
    border-radius: 12px;
  }
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  background: #ffffff;
  color: #111;
}

/* Center wrapper */
.filter-wrap {
  padding: 20px 24px;
  border-bottom: 1px solid #f0f0f0;

  display: flex;
  justify-content: center;
}

/* Pills container */
.filter-row {
  display: flex;
  gap: 14px;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}

/* Pill button */
.pill {
  border: 1px solid #e7e7e7;
  background: #fff;
  color: #111;

  padding: 10px 22px;
  border-radius: 999px;

  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  white-space: nowrap;

  transition: all .2s ease;
}

/* Hover */
.pill:hover {
  background: #fafafa;
  border-color: #d9d9d9;
}

/* Active */
.pill.is-active {
  background: #e11d2e;
  color: #ffffff;
  border-color: #e11d2e;
}

/* Click feel */
.pill:active {
  transform: translateY(1px);
}

/* Glassy CTA Button */
.cta-btn-glass {
  display: inline-flex;
  align-items: center;
  justify-content: center;

  height: 46px;
  padding: 0 26px;

  border-radius: 999px;

  /* glass effect */
  background: rgba(255, 255, 255, .35);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);

  border: 1px solid rgba(255, 255, 255, .45);
  color: #1f1b16;

  font-size: 14px;
  font-weight: 700;
  letter-spacing: .3px;
  text-decoration: none !important;

  cursor: pointer;

  box-shadow:
    0 12px 28px rgba(60, 50, 40, .22),
    inset 0 1px 0 rgba(255, 255, 255, .55);

  transition:
    transform .18s ease,
    box-shadow .18s ease,
    background .18s ease,
    color .18s ease;
}

/* Hover */
.cta-btn-glass:hover {
  background: rgba(255, 255, 255, .55);
  color: #1f1b16;
  transform: translateY(-1px);

  box-shadow:
    0 16px 36px rgba(60, 50, 40, .28),
    inset 0 1px 0 rgba(255, 255, 255, .7);
}

/* Active */
.cta-btn-glass:active {
  transform: translateY(0);
  box-shadow:
    0 10px 22px rgba(60, 50, 40, .22),
    inset 0 1px 0 rgba(255, 255, 255, .6);
}

/* Focus (accessibility) */
.cta-btn-glass:focus-visible {
  outline: none;
  box-shadow:
    0 0 0 3px rgba(139, 111, 78, .35),
    0 12px 28px rgba(60, 50, 40, .22);
}



/* ===============================
   FOOTER - Start
================================ */

#siteFooter.orbit-footer {
  width: 100vw !important;
  position: relative;
  left: 50%;
  right: 50%;
  margin-left: -50vw !important;
  margin-right: -50vw !important;

  max-width: none !important;
  overflow: hidden;

  /* 🌿 UPDATED off-white / cool neutral */
  background:
    radial-gradient(1100px 650px at 15% 10%, rgba(245, 249, 255, .75), transparent 62%),
    radial-gradient(900px 500px at 85% 35%, rgba(240, 246, 252, .55), transparent 60%),
    linear-gradient(135deg, #f4f8fd, #e9f0f7);
  color: #2b2b2b;
  padding-bottom: 28px;
}

/* subtle grid texture */
#siteFooter.orbit-footer::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(0, 0, 0, .05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 0, 0, .05) 1px, transparent 1px);
  background-size: 26px 26px;
  opacity: .15;
  pointer-events: none;
  z-index: 0;
}

/* decorative shapes */
#siteFooter.orbit-footer .orbit-shape {
  position: absolute;
  pointer-events: none;
  z-index: 0;
  filter: blur(.2px);
  opacity: .35;
}

#siteFooter.orbit-footer .orbit-shape--a {
  right: -140px;
  top: 60px;
  width: 520px;
  height: 520px;
  border: 2px solid rgba(80, 110, 150, .28);
  border-radius: 80px;
  transform: rotate(14deg);
}

#siteFooter.orbit-footer .orbit-shape--b {
  right: -220px;
  top: 220px;
  width: 520px;
  height: 520px;
  border: 2px solid rgba(80, 110, 150, .18);
  border-radius: 80px;
  transform: rotate(14deg);
  opacity: .25;
}

/* keep content above overlays */
#siteFooter.orbit-footer .orbit-strip,
#siteFooter.orbit-footer .orbit-cta,
#siteFooter.orbit-footer .orbit-wrap {
  position: relative;
  z-index: 1;
}

/* SAME container sizing */
#siteFooter.orbit-footer .orbit-wrap {
  width: min(1180px, 92vw);
  margin: 0 auto;
  padding-left: clamp(18px, 3vw, 48px);
  padding-right: clamp(18px, 3vw, 48px);
}

/* extra safety */
#siteFooter.orbit-footer * {
  max-width: 100%;
}

/* Top strip */
#siteFooter.orbit-footer .orbit-strip {
  border-bottom: 1px solid rgba(60, 70, 90, .25);
  padding: 10px 0;
}

#siteFooter.orbit-footer .orbit-stripList {
  margin: 0;
  padding: 0;
  list-style: none !important;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 14px;
  font-size: 13px;
  letter-spacing: .2px;
  color: rgba(45, 55, 70, .85);
  text-transform: uppercase;
  font-weight: 700;
  flex-wrap: wrap;
}

#siteFooter.orbit-footer .orbit-stripItem {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 6px 10px;
  border-left: 1px solid rgba(60, 70, 90, .22);
}

#siteFooter.orbit-footer .orbit-stripItem:first-child {
  border-left: 0;
}

#siteFooter.orbit-footer .orbit-stripItem i {
  opacity: .8;
}

/* CTA section */
#siteFooter.orbit-footer .orbit-cta {
  padding: 58px 0 22px;
}

#siteFooter.orbit-footer .orbit-ctaGrid {
  display: grid;
  grid-template-columns: 1.25fr .75fr;
  gap: 28px;
  align-items: start;
}

/* Title + copy */
#siteFooter.orbit-footer .orbit-title {
  margin: 0 0 14px;
  font-size: clamp(40px, 4.4vw, 64px);
  line-height: 1.06;
  font-weight: 900;
  letter-spacing: -.7px;
  color: #1f1b16;
}

#siteFooter.orbit-footer .orbit-subtitle {
  margin: 0 0 18px;
  max-width: 460px;
  color: rgba(60, 70, 90, .82);
  font-size: 15px;
  line-height: 1.65;
}

/* Buttons */
#siteFooter.orbit-footer .orbit-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 16px;
}

#siteFooter.orbit-footer .orbit-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border: 0;
  cursor: pointer;
  padding: 12px 18px;
  border-radius: 999px;
  font-weight: 800;
  letter-spacing: .2px;
  text-decoration: none !important;
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease, color .18s ease, border-color .18s ease;
  box-shadow: 0 10px 26px rgba(60, 70, 90, .18);
}

#siteFooter.orbit-footer .orbit-btn--primary {
  background: #2f2a24;
  color: #fff;
}

#siteFooter.orbit-footer .orbit-btn--ghost {
  background: rgba(255, 255, 255, .45);
  color: #2f2a24;
  border: 1px solid rgba(60, 70, 90, .25);
  box-shadow: none;
}

#siteFooter.orbit-footer .orbit-btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 14px 30px rgba(60, 70, 90, .24);
}

#siteFooter.orbit-footer .orbit-btn--ghost:hover {
  background: rgba(255, 255, 255, .75);
}

/* Pills */
#siteFooter.orbit-footer .orbit-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 10px;
}

#siteFooter.orbit-footer .orbit-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, .6);
  border: 1px solid rgba(60, 70, 90, .22);
  color: #2f2a24;
  font-size: 13px;
  font-weight: 700;
}

/* Right card */
#siteFooter.orbit-footer .orbit-card {
  background: rgba(255, 255, 255, .45);
  border: 1px solid rgba(60, 70, 90, .25);
  border-radius: 22px;
  padding: 16px;
  backdrop-filter: blur(10px);
}

#siteFooter.orbit-footer .orbit-cardHead {
  display: flex;
  gap: 12px;
  align-items: center;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(60, 70, 90, .22);
}

#siteFooter.orbit-footer .orbit-mark {
  width: 44px;
  height: 44px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  background: rgba(255, 255, 255, .65);
  border: 1px solid rgba(60, 70, 90, .25);
}

#siteFooter.orbit-footer .orbit-cardTitle {
  font-weight: 900;
  letter-spacing: .2px;
  color: #1f1b16;
}

#siteFooter.orbit-footer .orbit-cardMeta {
  margin-top: 2px;
  font-size: 13px;
  color: rgba(60, 70, 90, .75);
}

#siteFooter.orbit-footer .orbit-cardBody {
  display: grid;
  gap: 10px;
  padding: 14px 0;
}

#siteFooter.orbit-footer .orbit-contact {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  border-radius: 14px;
  background: rgba(255, 255, 255, .6);
  border: 1px solid rgba(60, 70, 90, .22);
  color: #2f2a24 !important;
  text-decoration: none !important;
  font-weight: 800;
}

#siteFooter.orbit-footer .orbit-contact:hover {
  background: rgba(255, 255, 255, .85);
  transform: translateY(-1px);
}

#siteFooter.orbit-footer .orbit-cardFoot {
  display: flex;
  align-items: center;
  gap: 10px;
  padding-top: 10px;
  border-top: 1px solid rgba(60, 70, 90, .22);
  color: rgba(60, 70, 90, .85);
  font-size: 13px;
  font-weight: 700;
}

#siteFooter.orbit-footer .orbit-dot {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: #6b8fbf;
  box-shadow: 0 0 0 4px rgba(107, 143, 191, .28);
}

/* Links grid */
#siteFooter.orbit-footer .orbit-grid {
  padding: 26px 0 18px;
  display: grid;
  grid-template-columns: 1.25fr 1fr 1fr 1fr;
  gap: 34px;
  align-items: start;
}

/* Brand block */
#siteFooter.orbit-footer .orbit-brand {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

#siteFooter.orbit-footer .orbit-brandRow {
  display: flex;
  gap: 12px;
  align-items: center;
}

#siteFooter.orbit-footer .orbit-brandIcon {
  width: 48px;
  height: 48px;
  border-radius: 16px;
  border: 1px solid rgba(60, 70, 90, .25);
  display: grid;
  place-items: center;
  background: rgba(255, 255, 255, .65);
}

#siteFooter.orbit-footer .orbit-brandIcon i {
  font-size: 20px;
}

#siteFooter.orbit-footer .orbit-brandName {
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 1px;
  line-height: 1.1;
  color: #1f1b16;
}

#siteFooter.orbit-footer .orbit-brandTag {
  font-weight: 700;
  opacity: .85;
  letter-spacing: 1.4px;
  font-size: 12px;
  margin-top: 2px;
  color: #4b5f7a;
}

#siteFooter.orbit-footer .orbit-about {
  margin: 0;
  max-width: 360px;
  color: rgba(60, 70, 90, .82);
  line-height: 1.65;
  font-size: 14px;
}

/* Social */
#siteFooter.orbit-footer .orbit-social {
  display: flex;
  gap: 10px;
  margin-top: 6px;
}

#siteFooter.orbit-footer .orbit-social a {
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  background: rgba(255, 255, 255, .55);
  border: 1px solid rgba(60, 70, 90, .22);
  color: #2f2a24 !important;
  text-decoration: none !important;
  transition: transform .15s ease, background .15s ease;
}

#siteFooter.orbit-footer .orbit-social a:hover {
  transform: translateY(-1px);
  background: rgba(255, 255, 255, .85);
}

/* Columns */
#siteFooter.orbit-footer .orbit-head {
  margin: 10px 0 12px;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: .9px;
  font-weight: 900;
  color: #1f1b16;
}

#siteFooter.orbit-footer .orbit-link {
  display: block;
  color: rgba(60, 70, 90, .82) !important;
  text-decoration: none !important;
  padding: 6px 0;
  font-size: 14px;
  width: max-content;
  border-bottom: 1px solid transparent;
  transition: border-color .15s ease, color .15s ease;
}

#siteFooter.orbit-footer .orbit-link:hover {
  color: #1f1b16 !important;
  border-color: rgba(60, 70, 90, .35);
}

/* Bottom row */
#siteFooter.orbit-footer .orbit-bottom {
  margin-top: 22px;
  padding-top: 18px;
  border-top: 1px solid rgba(60, 70, 90, .28);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
  color: rgba(60, 70, 90, .85);
  font-size: 13px;
}

#siteFooter.orbit-footer .orbit-bottomLinks {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}

#siteFooter.orbit-footer .orbit-bottomLinks a {
  color: rgba(60, 70, 90, .85) !important;
  text-decoration: none !important;
  padding: 6px 0;
  border-bottom: 1px solid transparent;
}

#siteFooter.orbit-footer .orbit-bottomLinks a:hover {
  border-color: rgba(60, 70, 90, .35);
  color: #1f1b16 !important;
}

/* Responsive */
@media (max-width: 980px) {
  #siteFooter.orbit-footer .orbit-ctaGrid {
    grid-template-columns: 1fr;
  }

  #siteFooter.orbit-footer .orbit-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 560px) {
  #siteFooter.orbit-footer .orbit-wrap {
    padding-left: 16px;
    padding-right: 16px;
  }

  #siteFooter.orbit-footer .orbit-stripList {
    justify-content: flex-start;
  }

  #siteFooter.orbit-footer .orbit-stripItem {
    border-left: 0;
    padding: 6px 0;
  }

  #siteFooter.orbit-footer .orbit-grid {
    grid-template-columns: 1fr;
  }

  #siteFooter.orbit-footer .orbit-cta {
    padding: 44px 0 22px;
  }
}
#siteFooter.orbit-footer .orbit-dot {
  background: #22c55e;
  box-shadow: 0 0 0 4px rgba(34, 197, 94, .28);
}

#siteFooter.orbit-footer .orbit-brandName img {
  height: 80px;              /* increased from 34px */
  width: auto;
  display: block;
  object-fit: contain;
  filter: brightness(.95);
}


/* Footer End */

.mLink{
  list-style: none;
  display: flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;



  color: #1f2937; /* text color */
  font-weight: 600;
}

/* DOT — exact round */
.mDot{
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: transparent;
  border: 2px solid #fc0000; /* yellow/orange ring */
  box-sizing: border-box;
}

/* hover effect (design break করবে না) */
.mLink:hover .mDot{
  background: #f59e0b;
}

.mLink:hover{
  opacity: 0.9;
}


/* make both link & button consistent */
.navWrap .navbar .links a,
.navWrap .navbar .links .dropdownInline {
  position: relative;
  text-decoration: none !important;
}

/* fix button baseline */
.navWrap .navbar .links .dropdownInline {
  background: transparent;
  border: 0;
  padding: 0;
  line-height: normal;
  cursor: pointer;
}

/* underline only when active */
.navWrap .navbar .links a.active::after,
.navWrap .navbar .links .dropdownInline.active::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -6px;

  height: 2px;
  background: currentColor;
}

.pDemoNote {
  margin: 8px 0 0;
  font-size: 14px;
  line-height: 1.5;
  opacity: .85;
}

.pDemoNote {
  margin-top: 10px;
  padding: 10px 14px;
  background: linear-gradient(135deg, #fee2e2, #fecaca);
  border-left: 4px solid #dc2626;
  color: #7f1d1d;
  font-size: 14px;
  line-height: 1.5;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(220, 38, 38, 0.15);
}

.pCard__title {
  color: #dc2626 !important;
  /* red */
}

.pCard__title:hover {
  color: #991b1b !important;
  /* darker red on hover */
}

:root{
  --radius: 18px;
}

*{ box-sizing:border-box }
body{
  margin:0;
  font-family: system-ui, -apple-system, Segoe UI, Roboto;
  background:#fff;
}

/* section */
.trustShowcase{
  padding: 34px 16px;
}

/* header */
.trustShowcase__header{
  text-align:center;
  margin-bottom: 26px;
}

.trustShowcase__title{
  margin:0;
  font-size: 22px;
  font-weight: 600;
  letter-spacing: .5px;
  color:#111827;
}

.trustShowcase__underline{
  margin-top: 10px;
  display:flex;
  justify-content:center;
  gap: 8px;
}
.trustShowcase__underline span{
  height: 3px;
  background: #ef4444;
  border-radius: 999px;
  display:inline-block;
  opacity: .95;
}
.trustShowcase__underline span:first-child{ width: 58px; }
.trustShowcase__underline span:last-child{ width: 28px; }

/* grid */
.trustShowcase__grid{
  max-width: 1200px;
  margin: 0 auto;
  display:grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 18px;
}

/* card */
.trustCard{
  --radius: 16px;
  position:relative;
  display:block;
  text-decoration:none;
  color:#111827;

  padding: 18px;
  border-radius: var(--radius);
  background: #ffffff;

  border: 1px solid #eef2f7;
  box-shadow: 0 10px 28px rgba(17, 24, 39, .08);

  overflow:hidden;
  min-height: 104px;

  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}

.trustCard:hover{
  transform: translateY(-3px);
  box-shadow: 0 14px 36px rgba(17, 24, 39, .12);
  border-color: rgba(239, 68, 68, .25);
}

/* glow / border accent */
.trustCard__glow{
  position:absolute;
  inset:-2px;
  border-radius: calc(var(--radius) + 2px);
  pointer-events:none;
  background:
    radial-gradient(500px 160px at 20% 0%, rgba(239,68,68,.22), transparent 60%),
    radial-gradient(420px 180px at 90% 30%, rgba(59,130,246,.18), transparent 60%);
  opacity: .75;
  filter: blur(10px);
  transition: opacity .2s ease;
}

.trustCard:hover .trustCard__glow{
  opacity: 1;
}

/* title */
.trustCard__title{
  margin: 0 0 12px;
  font-size: 20px;
  font-weight: 600;
  text-align:center;
  line-height: 1.2;
}

/* footer pill row */
.trustCard__footer{
  display:flex;
  align-items:center;
  justify-content:center;
  gap: 10px;
  padding: 8px 12px;

  border: 1px solid #e5e7eb;
  border-radius: 999px;
  width: fit-content;
  margin: 0 auto;

  background: rgba(255,255,255,.9);
  backdrop-filter: blur(6px);
}

/* missing earlier - now fixed */
.trustCard__pill{
  font-size: 12px;
  font-weight: 600;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(239,68,68,.08);
  color: #ef4444;
  border: 1px solid rgba(239,68,68,.18);
}

.trustCard__muted{
  font-size: 12px;
  color: #6b7280;
}

.trustCard__arrow{
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: 1px solid #e5e7eb;
  display:grid;
  place-items:center;
  font-size: 14px;
  background: #fff;
}

/* flags */
.trustCard__flags{
  display:flex;
  justify-content:center;
  align-items:center;
  gap: 12px;
  padding-top: 6px;
}

.trustCard__flags img{
  width: 30px;
  height: 30px;
  border-radius: 50%;
  object-fit: cover;
  border: 1px solid #e5e7eb;
  background: #fff;
}

/* responsive */
@media (max-width: 1024px){
  .trustShowcase__grid{ grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 720px){
  .trustShowcase__grid{ grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 480px){
  .trustShowcase__grid{ grid-template-columns: 1fr; }
}
/* wrapper */
.itSignature{
  text-align: center;
  margin-bottom: 48px;
}

/* title – professional IT signature look */
.itSignature__title{
  margin: 0;
  font-size: 28px;
  font-weight: 600;
  letter-spacing: 0.8px;
  color: #0b1220;

  font-family:
    "Inter",
    "Segoe UI",
    system-ui,
    -apple-system,
    BlinkMacSystemFont,
    sans-serif;

  position: relative;
}

/* slim signature stroke under title */
.itSignature__title::after{
  content: "";
  display: block;
  width: 64px;
  height: 2px;
  margin: 12px auto 0;
  border-radius: 999px;
  background: linear-gradient(
    90deg,
    #2563eb,
    #38bdf8
  );
}

/* meta text */
.itSignature__meta{
  display: block;
  margin-top: 8px;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #6b7280;
}

/* animated tech line */
.itSignature__line{
  position: relative;
  width: 200px;
  height: 2px;
  margin: 20px auto 0;
  background: rgba(37, 99, 235, 0.12);
  border-radius: 999px;
  overflow: hidden;
}

/* flowing data highlight */
.itSignature__line::before{
  content: "";
  position: absolute;
  inset: 0;
  width: 36%;
  background: linear-gradient(
    90deg,
    transparent,
    #2563eb,
    #38bdf8,
    transparent
  );
  transform: translateX(-120%);
  animation: dataFlow 2.6s cubic-bezier(.4,0,.2,1) infinite;
}

/* animation */
@keyframes dataFlow{
  0%{
    transform: translateX(-120%);
    opacity: 0;
  }
  30%{
    opacity: 1;
  }
  100%{
    transform: translateX(260%);
    opacity: 0;
  }
}

/* hover acceleration (subtle) */
.itSignature:hover .itSignature__line::before{
  animation-duration: 1.6s;
}

/* reduced motion support */
@media (prefers-reduced-motion: reduce){
  .itSignature__line::before{
    animation: none;
    opacity: 1;
    transform: translateX(0);
  }
}

/* =========================
   LIVE CHAT (NEW LIGHT UI)
   ========================= */
.livechat{
  position: fixed;
  left: 18px; /* changed */
  bottom: 18px;
  z-index: 9999;
  font-family: "Inter", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
}

.livechat__fab{
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  border: 1px solid rgba(15, 23, 42, 0.12);
  cursor: pointer;
  padding: 10px 12px;
  border-radius: 999px;
  background: rgba(255,255,255,0.92);
  color: #0f172a;
  box-shadow: 0 14px 34px rgba(2, 6, 23, 0.12);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  transition: transform .18s ease, box-shadow .18s ease;
}

.livechat__fab:hover{
  transform: translateY(-1px);
  box-shadow: 0 18px 44px rgba(2, 6, 23, 0.16);
}

.livechat__fabIcon{
  width: 44px;
  height: 44px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, rgba(37,99,235,.14), rgba(99,102,241,.10));
  color: #1d4ed8;
  font-size: 18px;
}

.livechat__fabText{
  display: grid;
  line-height: 1.05;
  text-align: left;
}
.livechat__fabTitle{
  font-weight: 900;
  font-size: 14px;
}
.livechat__fabMeta{
  font-weight: 600;
  font-size: 11px;
  color: rgba(15, 23, 42, 0.62);
  margin-top: 2px;
}

/* Pulse ring */
.livechat__ring{
  position: absolute;
  inset: -8px;
  border-radius: 999px;
  border: 1px solid rgba(37, 99, 235, 0.22);
  pointer-events: none;
  opacity: 0;
}

/* Backdrop */
.livechat__backdrop{
  position: fixed;
  inset: 0;
  background: rgba(2, 6, 23, 0.22);
  opacity: 0;
  pointer-events: none;
  transition: opacity .18s ease;
}
.livechat__backdrop.is-open{
  opacity: 1;
  pointer-events: auto;
}

/* Panel (desktop absolute above fab) */
.livechat__panel{
  position: absolute;
  left: 0; /* changed */
  bottom: 74px;
  width: 320px;
  background: rgba(255,255,255,0.97);
  color: #0f172a;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 26px 70px rgba(2, 6, 23, 0.16);
  border: 1px solid rgba(15, 23, 42, 0.10);
  transform-origin: 10% 100%; /* adjusted */
  opacity: 0;
  transform: translateY(10px) scale(.98);
  pointer-events: none;
}

.livechat__panel.is-open{
  pointer-events: auto;
}

.livechat__panelHead{
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 10px;
  padding: 14px 14px 10px;
  border-bottom: 1px solid rgba(15, 23, 42, 0.08);
}

.livechat__badge{
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(37, 99, 235, 0.10);
  color: #1d4ed8;
  font-weight: 800;
  font-size: 11px;
  width: fit-content;
}

.livechat__titleRow{
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 10px;
  font-weight: 900;
  font-size: 15px;
}
.livechat__titleRow i{
  color: #2563eb;
}

.livechat__sub{
  margin: 6px 0 0;
  font-size: 12px;
  color: rgba(15, 23, 42, 0.62);
  font-weight: 600;
}

.livechat__close{
  border: 1px solid rgba(15, 23, 42, 0.10);
  background: rgba(15, 23, 42, 0.04);
  color: #0f172a;
  width: 38px;
  height: 38px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  cursor: pointer;
  transition: background .18s ease, transform .18s ease;
}
.livechat__close:hover{
  background: rgba(15, 23, 42, 0.07);
  transform: translateY(-1px);
}

.livechat__options{
  padding: 10px;
  display: grid;
  gap: 8px;
}

.livechat__option{
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 12px;
  border-radius: 14px;
  text-decoration: none;
  color: #0f172a;
  border: 1px solid rgba(15, 23, 42, 0.08);
  background: rgba(255,255,255,0.90);
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease;
}

.livechat__option:hover{
  transform: translateY(-1px);
  background: rgba(2, 6, 23, 0.02);
  box-shadow: 0 10px 24px rgba(2, 6, 23, 0.10);
}

.livechat__icon{
  width: 48px;
  height: 48px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  font-size: 22px;
}

.livechat__option--wa .livechat__icon{
  background: rgba(37, 211, 102, 0.14);
  color: #128C7E;
}
.livechat__option--ms .livechat__icon{
  background: rgba(0, 132, 255, 0.14);
  color: #0084ff;
}

.livechat__text strong{
  display: block;
  font-size: 14px;
  font-weight: 900;
  line-height: 1.1;
}
.livechat__text small{
  display: block;
  font-size: 12px;
  color: rgba(15, 23, 42, 0.62);
  margin-top: 3px;
  font-weight: 700;
}

.livechat__arrow{
  margin-left: auto;
  color: rgba(15, 23, 42, 0.55);
}

.livechat__hint{
  padding: 10px 14px 14px;
  font-size: 12px;
  color: rgba(15, 23, 42, 0.62);
  font-weight: 700;
  display: flex;
  gap: 8px;
  align-items: center;
  border-top: 1px solid rgba(15, 23, 42, 0.06);
}

/* =========================
   MOBILE
   ========================= */
@media (max-width: 520px){
  .livechat{
    left: 14px; /* changed */
    bottom: 14px;
  }

  .livechat__fab{
    padding: 10px 10px;
    gap: 10px;
  }

  .livechat__fabText{
    display: none;
  }

  .livechat__panel{
    position: absolute;
    left: 0; /* changed */
    bottom: 68px;
    width: min(92vw, 340px);
  }

  .livechat__icon{
    width: 50px;
    height: 50px;
  }
}

@media (max-width: 360px){
  .livechat__panel{
    width: min(92vw, 320px);
  }
}
