:root {
  --navy: #0B1F33;
  --cyan: #1EC8FF;
  --cyan-soft: #6FDBFF;
  --dark: #111827;
  --white: #FFFFFF;
  --ink: #172033;
  --muted: #657084;
  --line: rgba(11, 31, 51, 0.12);
  --panel: #F7FAFC;
  --shadow: 0 24px 70px rgba(11, 31, 51, 0.14);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Inter", "Noto Sans Bengali", Arial, sans-serif;
  color: var(--ink);
  background: var(--white);
  line-height: 1.6;
}

body.is-bangla {
  line-height: 1.72;
}

body.is-video-modal-open {
  overflow: hidden;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

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

.section {
  padding: 96px 0;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(11, 31, 51, 0.08);
  transition: box-shadow 0.25s ease, background 0.25s ease;
}

.site-header.is-scrolled {
  box-shadow: 0 12px 30px rgba(11, 31, 51, 0.08);
}

.nav {
  min-height: 82px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand img {
  width: 182px;
  height: auto;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 20px;
  font-size: 0.94rem;
  font-weight: 700;
  color: #31425a;
}

.nav-links a {
  transition: color 0.2s ease;
}

.nav-links a:hover {
  color: var(--cyan);
}

.nav-cta {
  padding: 11px 18px;
  border-radius: 6px;
  color: var(--white) !important;
  background: var(--navy);
  box-shadow: 0 12px 26px rgba(30, 200, 255, 0.16);
}

.language-toggle {
  display: inline-flex;
  align-items: center;
  gap: 2px;
  height: 38px;
  padding: 3px;
  border: 1px solid rgba(11, 31, 51, 0.14);
  border-radius: 6px;
  color: #31425a;
  background: #F4F8FB;
  font: inherit;
  font-size: 0.82rem;
  font-weight: 800;
  cursor: pointer;
}

.language-toggle span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 48px;
  min-height: 30px;
  padding: 0 9px;
  border-radius: 5px;
  transition: color 0.2s ease, background 0.2s ease;
}

.language-toggle span.is-active {
  color: var(--white);
  background: var(--navy);
}

.menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: var(--white);
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  background: var(--navy);
}

.hero {
  min-height: calc(100vh - 82px);
  display: flex;
  align-items: center;
  overflow: hidden;
  background:
    radial-gradient(circle at 83% 18%, rgba(30, 200, 255, 0.18), transparent 32%),
    linear-gradient(135deg, #F8FBFD 0%, #FFFFFF 48%, #EEF8FC 100%);
}

.hero-grid {
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  gap: 60px;
  align-items: center;
}

.eyebrow {
  margin: 0 0 14px;
  color: #0b6684;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  margin-bottom: 22px;
  color: var(--navy);
  font-size: clamp(3rem, 5vw, 4rem);
  line-height: 1.06;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 20px;
  color: var(--navy);
  font-size: clamp(2rem, 4vw, 3.35rem);
  line-height: 1.08;
  letter-spacing: 0;
}

h3 {
  color: var(--navy);
  font-size: 1.05rem;
  line-height: 1.25;
}

.hero-subtitle {
  max-width: 650px;
  color: #46576d;
  font-size: 1.14rem;
}

.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin: 32px 0 26px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 22px;
  border: 1px solid transparent;
  border-radius: 6px;
  font-weight: 800;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  color: var(--white);
  background: linear-gradient(135deg, var(--navy), #123A5B);
  box-shadow: 0 16px 34px rgba(11, 31, 51, 0.22), 0 0 28px rgba(30, 200, 255, 0.16);
}

.btn-secondary {
  color: var(--navy);
  background: var(--white);
  border-color: rgba(11, 31, 51, 0.16);
}

.trust-row {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  color: #40536a;
  font-size: 0.86rem;
  font-weight: 700;
}

.trust-row span {
  padding: 8px 10px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.72);
}

.dashboard-shell {
  position: relative;
  width: 100%;
  max-width: 620px;
  margin-left: auto;
  padding: 22px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  background: linear-gradient(145deg, #0B1F33, #111827);
  box-shadow: var(--shadow), 0 0 38px rgba(30, 200, 255, 0.14);
}

.dashboard-topbar {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #C8D7E4;
  font-size: 0.86rem;
  font-weight: 800;
}

.dashboard-topbar span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(111, 219, 255, 0.7);
}

.dashboard-topbar strong {
  margin-left: auto;
}

.kpi-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin: 24px 0 16px;
}

.kpi-card,
.analytics-panel,
.workflow-stack div {
  border: 1px solid rgba(111, 219, 255, 0.16);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.06);
}

.kpi-card {
  padding: 18px;
  color: var(--white);
  min-width: 0;
}

.kpi-card small,
.workflow-stack small {
  display: block;
  color: #9FB4C8;
  font-size: 0.78rem;
}

.kpi-card strong {
  display: block;
  margin: 8px 0;
  font-size: 1.75rem;
  word-break: break-word;
}

.trend {
  color: var(--cyan-soft);
  font-size: 0.82rem;
  font-weight: 800;
}

.analytics-panel {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(190px, 0.9fr);
  gap: 18px;
  min-height: 310px;
  padding: 20px;
}

.chart-bars {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  align-items: end;
  gap: 12px;
  min-height: 248px;
  padding: 18px;
  border-radius: 8px;
  background:
    linear-gradient(rgba(255, 255, 255, 0.07) 1px, transparent 1px) 0 0 / 100% 25%,
    rgba(255, 255, 255, 0.04);
}

.chart-bars span {
  border-radius: 5px 5px 0 0;
  background: linear-gradient(180deg, var(--cyan-soft), var(--cyan));
  box-shadow: 0 0 18px rgba(30, 200, 255, 0.22);
  transition: height 0.5s ease;
}

.workflow-stack {
  display: grid;
  gap: 12px;
  align-content: center;
}

.workflow-stack div {
  padding: 16px;
}

.workflow-stack b {
  display: block;
  color: var(--white);
  font-size: 0.96rem;
}

.section-heading {
  max-width: 760px;
  margin-bottom: 42px;
}

.problem-section,
.demo-section,
.process-section {
  background: var(--panel);
}

.problem-grid,
.solution-grid,
.demo-grid,
.why-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.problem-card,
.solution-card,
.demo-card,
.why-list article,
.consultation-form,
.contact-method {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 16px 42px rgba(11, 31, 51, 0.06);
}

.problem-card,
.solution-card,
.why-list article {
  padding: 26px;
}

.problem-card span {
  color: var(--cyan);
  font-weight: 900;
}

.problem-card p,
.solution-card p,
.demo-card p,
.why-list p,
.timeline p,
.contact-copy p {
  color: var(--muted);
}

.solution-card {
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.solution-card:hover,
.demo-card:hover {
  transform: translateY(-5px);
  border-color: rgba(30, 200, 255, 0.42);
  box-shadow: 0 22px 60px rgba(11, 31, 51, 0.12);
}

.icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  margin-bottom: 18px;
  border-radius: 6px;
  color: var(--navy);
  background: rgba(30, 200, 255, 0.12);
  font-weight: 900;
}

.industries {
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(11, 31, 51, 0.94), rgba(17, 24, 39, 0.96)),
    linear-gradient(90deg, rgba(30, 200, 255, 0.2), transparent);
}

.industries h2,
.industries .eyebrow {
  color: var(--white);
}

.industry-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 48px;
  align-items: center;
}

.industry-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}

.industry-list span {
  padding: 18px 20px;
  border: 1px solid rgba(111, 219, 255, 0.18);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.06);
  font-weight: 800;
}

.demo-card {
  padding: 18px;
}

.mini-ui {
  position: relative;
  height: 190px;
  margin-bottom: 22px;
  border-radius: 8px;
  overflow: hidden;
  background: #0B1F33;
}

.mini-ui::before {
  content: "";
  position: absolute;
  inset: 16px;
  border: 1px solid rgba(111, 219, 255, 0.18);
  border-radius: 8px;
}

.mini-ui span {
  position: absolute;
  left: 32px;
  right: 32px;
  height: 16px;
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.1);
}

.mini-ui span:nth-child(1) { top: 36px; width: 42%; }
.mini-ui span:nth-child(2) { top: 72px; width: 68%; }
.mini-ui span:nth-child(3) { top: 108px; width: 56%; }

.mini-ui div {
  position: absolute;
  right: 32px;
  bottom: 32px;
  width: 92px;
  height: 92px;
  border-radius: 50%;
  background: conic-gradient(var(--cyan) 72%, rgba(255, 255, 255, 0.12) 0);
  box-shadow: 0 0 24px rgba(30, 200, 255, 0.18);
}

.demo-video-preview {
  display: block;
  width: 100%;
  height: 190px;
  margin: 0 0 22px;
  padding: 0;
  border: 0;
  border-radius: 8px;
  overflow: hidden;
  background: #0B1F33;
  cursor: pointer;
}

.demo-video-preview video {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.demo-watch-button {
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
  font: inherit;
}

.sales-ui div {
  border-radius: 8px;
  background: linear-gradient(180deg, var(--cyan-soft), var(--cyan));
}

.lead-ui div {
  border-radius: 8px;
  background:
    linear-gradient(90deg, transparent 46%, var(--cyan) 46% 54%, transparent 54%),
    linear-gradient(180deg, transparent 46%, var(--cyan) 46% 54%, transparent 54%);
}

.text-link {
  display: inline-flex;
  margin-top: 6px;
  color: #075f7a;
  font-weight: 900;
}

.why-grid {
  display: grid;
  grid-template-columns: 0.72fr 1.28fr;
  gap: 46px;
}

.why-list {
  grid-template-columns: repeat(2, 1fr);
}

.timeline {
  position: relative;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.timeline li {
  position: relative;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

.timeline span {
  display: inline-flex;
  margin-bottom: 30px;
  color: var(--cyan);
  font-weight: 900;
}

.contact-section {
  background:
    radial-gradient(circle at 10% 10%, rgba(30, 200, 255, 0.12), transparent 28%),
    var(--white);
}

.contact-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 48px;
  align-items: start;
}

.contact-methods {
  display: grid;
  gap: 12px;
  margin-top: 22px;
}

.consultation-note {
  display: inline-flex;
  margin: 10px 0 18px;
  padding: 10px 12px;
  border: 1px solid rgba(30, 200, 255, 0.28);
  border-radius: 6px;
  color: var(--navy) !important;
  background: rgba(30, 200, 255, 0.08);
  font-weight: 800;
}

.whatsapp-hero-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 20px;
  border-radius: 6px;
  color: var(--white);
  background: var(--navy);
  font-weight: 900;
  box-shadow: 0 16px 34px rgba(11, 31, 51, 0.2), 0 0 24px rgba(30, 200, 255, 0.16);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.whatsapp-hero-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 40px rgba(11, 31, 51, 0.24), 0 0 26px rgba(30, 200, 255, 0.2);
}

.contact-method {
  display: block;
  padding: 18px;
}

.contact-method strong,
.contact-method span {
  display: block;
}

.contact-method span {
  color: var(--muted);
}

.consultation-form {
  display: grid;
  gap: 16px;
  padding: 28px;
}

.consultation-form label {
  display: grid;
  gap: 8px;
  color: #31425a;
  font-size: 0.9rem;
  font-weight: 800;
}

input,
textarea {
  width: 100%;
  border: 1px solid rgba(11, 31, 51, 0.16);
  border-radius: 6px;
  padding: 14px 15px;
  font: inherit;
  color: var(--ink);
  background: #FBFCFE;
}

input:focus,
textarea:focus {
  outline: 3px solid rgba(30, 200, 255, 0.18);
  border-color: var(--cyan);
}

.site-footer {
  padding: 42px 0;
  color: #C9D7E5;
  background: var(--dark);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 22px;
  align-items: center;
}

.site-footer h2 {
  margin-bottom: 6px;
  color: var(--white);
  font-size: 1.35rem;
}

.site-footer p {
  margin-bottom: 0;
}

.socials {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  font-size: 0.9rem;
  font-weight: 800;
}

.socials a:hover {
  color: var(--cyan-soft);
}

.copyright {
  grid-column: 1 / -1;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 0.9rem;
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 980px) {
  .section {
    padding: 76px 0;
  }

  .hero-grid,
  .industry-grid,
  .why-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  h1 {
    font-size: clamp(2.75rem, 6vw, 3rem);
    line-height: 1.08;
  }

  .hero {
    min-height: auto;
    padding-top: 50px;
  }

  .dashboard-shell {
    max-width: 100%;
    margin-left: 0;
  }

  .problem-grid,
  .solution-grid,
  .demo-grid,
  .timeline {
    grid-template-columns: repeat(2, 1fr);
  }

  .nav-links {
    position: absolute;
    top: 82px;
    left: 20px;
    right: 20px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 18px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: var(--white);
    box-shadow: var(--shadow);
  }

  .nav-links.is-open {
    display: flex;
  }

  .menu-toggle {
    display: block;
  }

  .language-toggle {
    justify-content: center;
    width: 100%;
  }
}

@media (max-width: 680px) {
  .container {
    width: min(100% - 28px, 1140px);
  }

  .nav {
    min-height: 74px;
  }

  .brand img {
    width: 154px;
  }

  h1 {
    font-size: clamp(2.125rem, 10vw, 2.375rem);
    line-height: 1.12;
    margin-bottom: 18px;
  }

  h2 {
    font-size: clamp(1.75rem, 8vw, 2.25rem);
    line-height: 1.14;
  }

  .hero-subtitle {
    font-size: 1rem;
  }

  .hero-actions,
  .hero-actions .btn {
    width: 100%;
  }

  .btn,
  .whatsapp-hero-cta {
    min-height: 52px;
    width: 100%;
  }

  .kpi-grid,
  .analytics-panel,
  .problem-grid,
  .solution-grid,
  .demo-grid,
  .industry-list,
  .why-list,
  .timeline,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .dashboard-shell {
    padding: 14px;
    overflow: hidden;
  }

  .kpi-card strong {
    font-size: 1.45rem;
  }

  .chart-bars {
    min-height: 180px;
    gap: 8px;
    padding: 14px;
  }

  .nav-links {
    top: 74px;
  }

  .section {
    padding: 56px 0;
  }

  .problem-card,
  .solution-card,
  .why-list article,
  .timeline li,
  .consultation-form {
    padding: 22px;
  }
}

/* Final ERP-inspired refinement */
body {
  background:
    radial-gradient(circle at 8% 8%, rgba(30, 200, 255, 0.14), transparent 28%),
    radial-gradient(circle at 92% 18%, rgba(111, 219, 255, 0.18), transparent 30%),
    linear-gradient(180deg, #FFFFFF 0%, #F6FBFF 42%, #FFFFFF 100%);
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background-image: radial-gradient(rgba(11, 31, 51, 0.07) 1px, transparent 1px);
  background-size: 28px 28px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.5), transparent 58%);
}

.section {
  padding: 82px 0;
}

.hero {
  padding: 44px 0 58px;
}

h1 {
  font-size: clamp(3rem, 4.25vw, 3.55rem);
  line-height: 1.08;
}

h2 {
  max-width: 780px;
  font-size: clamp(2.35rem, 3.6vw, 3rem);
  line-height: 1.12;
}

.section-heading {
  max-width: 780px;
  margin-bottom: 34px;
}

.hero-subtitle {
  font-size: 1.06rem;
}

.trust-row span {
  color: var(--navy);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.94), rgba(230, 248, 255, 0.96));
}

.dashboard-shell {
  transform: translateZ(0);
}

.dashboard-status-row span::before {
  content: "";
  display: inline-block;
  width: 7px;
  height: 7px;
  margin-right: 7px;
  border-radius: 50%;
  background: var(--cyan);
  box-shadow: 0 0 12px rgba(30, 200, 255, 0.65);
}

.problem-card,
.solution-card,
.demo-card,
.why-list article,
.timeline li {
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}

.problem-card:hover,
.why-list article:hover,
.timeline li:hover {
  transform: translateY(-4px);
  border-color: rgba(30, 200, 255, 0.34);
  box-shadow: 0 24px 58px rgba(11, 31, 51, 0.12);
}

.icon {
  width: auto;
  min-width: 54px;
  padding: 0 12px;
  font-size: 0.78rem;
  letter-spacing: 0;
}

.seo-section {
  background:
    radial-gradient(circle at 88% 20%, rgba(30, 200, 255, 0.18), transparent 34%),
    linear-gradient(135deg, #0B1F33 0%, #111827 100%);
}

.seo-panel {
  max-width: 920px;
  padding: 38px;
  border: 1px solid rgba(111, 219, 255, 0.2);
  border-radius: 8px;
  color: #D8EAF5;
  background: rgba(255, 255, 255, 0.06);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.2), 0 0 34px rgba(30, 200, 255, 0.12);
}

.seo-panel h2,
.seo-panel .eyebrow {
  color: var(--white);
}

.seo-panel p:last-child {
  margin-bottom: 0;
  color: #C4D8E8;
}

.site-footer {
  padding: 58px 0 38px;
  background:
    radial-gradient(circle at 82% 18%, rgba(30, 200, 255, 0.16), transparent 32%),
    linear-gradient(135deg, #07192B, #111827);
}

.footer-grid-premium {
  grid-template-columns: 1.35fr 0.72fr 0.92fr 0.62fr;
  align-items: start;
}

.footer-brand-block img {
  width: 174px;
  margin-bottom: 16px;
  filter: drop-shadow(0 14px 28px rgba(30, 200, 255, 0.12));
}

.footer-brand-block h2 {
  margin-bottom: 4px;
}

.footer-positioning {
  color: var(--cyan-soft);
  font-weight: 800;
}

.footer-column {
  display: grid;
  gap: 10px;
}

.footer-column h3 {
  margin-bottom: 6px;
  color: var(--white);
}

.footer-column a,
.footer-column span,
.footer-brand-block p {
  color: #C9D7E5;
}

.footer-column a:hover {
  color: var(--cyan-soft);
}

.social-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(111, 219, 255, 0.22);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.06);
}

.social-icon svg {
  width: 20px;
  height: 20px;
  fill: currentColor;
}

.copyright {
  margin-top: 10px;
}

@media (max-width: 980px) {
  .section {
    padding: 68px 0;
  }

  .hero {
    padding: 34px 0 52px;
  }

  h1 {
    font-size: clamp(2.55rem, 5.2vw, 2.875rem);
  }

  h2 {
    font-size: clamp(2rem, 4.6vw, 2.375rem);
  }

  .footer-grid-premium {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 680px) {
  .section {
    padding: 52px 0;
  }

  .hero {
    padding: 24px 0 42px;
  }

  h1 {
    font-size: clamp(2rem, 8.8vw, 2.25rem);
    line-height: 1.15;
  }

  h2 {
    font-size: clamp(1.75rem, 7.4vw, 2rem);
    line-height: 1.18;
  }

  .trust-row {
    display: grid;
    grid-template-columns: 1fr;
  }

  .seo-panel {
    padding: 24px;
  }

  .footer-grid-premium {
    grid-template-columns: 1fr;
  }

  .site-footer {
    padding-bottom: 92px;
  }

  .nav-cta {
    padding: 9px 13px;
  }
}

/* Small safe patch: metric spacing, Bangla headline scale, logo visibility, mobile WhatsApp safety */
.kpi-card strong {
  margin-bottom: 12px;
}

body.is-bangla .hero h1 {
  font-size: clamp(2.75rem, 3.9vw, 3.25rem);
}

.site-header .brand img {
  width: 176px;
}

@media (max-width: 680px) {
  body.is-bangla .hero h1 {
    font-size: clamp(1.85rem, 8.1vw, 2.05rem);
  }

  .site-header .brand img {
    width: 150px;
  }

  .floating-whatsapp {
    right: 12px;
    bottom: 18px;
  }

  .floating-whatsapp__icon {
    width: 48px;
    height: 48px;
    font-size: 0.9rem;
  }
}

/* Premium visual upgrade */
:root {
  --blue-wash: #ECF8FF;
  --cyan-glow: rgba(30, 200, 255, 0.26);
  --card-border: rgba(30, 200, 255, 0.18);
}

body {
  background:
    radial-gradient(circle at 8% 10%, rgba(111, 219, 255, 0.14), transparent 30%),
    linear-gradient(180deg, #FFFFFF 0%, #F8FCFF 46%, #FFFFFF 100%);
}

.site-header {
  background: rgba(255, 255, 255, 0.86);
}

.nav {
  min-height: 74px;
}

.brand img {
  width: 168px;
}

.hero {
  min-height: auto;
  padding: 58px 0 72px;
  align-items: start;
  background:
    radial-gradient(circle at 78% 12%, rgba(30, 200, 255, 0.2), transparent 27%),
    radial-gradient(circle at 16% 26%, rgba(111, 219, 255, 0.18), transparent 28%),
    linear-gradient(135deg, #F7FCFF 0%, #FFFFFF 46%, #EAF8FF 100%);
}

.hero-grid {
  gap: 46px;
}

h1 {
  max-width: 720px;
  font-size: clamp(3rem, 4.5vw, 3.625rem);
  line-height: 1.08;
}

.hero-subtitle {
  max-width: 620px;
}

.trust-row {
  gap: 12px;
  margin-top: 4px;
}

.trust-row span {
  border-color: rgba(30, 200, 255, 0.22);
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.88), rgba(236, 248, 255, 0.92));
  box-shadow: 0 10px 24px rgba(11, 31, 51, 0.06);
}

.dashboard-shell {
  max-width: 610px;
  padding: 18px;
  border-color: rgba(111, 219, 255, 0.24);
  background:
    radial-gradient(circle at 72% 14%, rgba(30, 200, 255, 0.2), transparent 34%),
    linear-gradient(145deg, #07192B 0%, #0B1F33 52%, #111827 100%);
  box-shadow: 0 28px 76px rgba(11, 31, 51, 0.22), 0 0 42px var(--cyan-glow);
}

.dashboard-topbar {
  min-height: 48px;
  padding: 0 14px;
  border: 1px solid rgba(111, 219, 255, 0.14);
  border-radius: 8px;
  background: linear-gradient(90deg, rgba(30, 200, 255, 0.16), rgba(255, 255, 255, 0.06));
}

.window-dots {
  display: inline-flex;
  gap: 7px;
}

.dashboard-topbar .window-dots span {
  width: 9px;
  height: 9px;
}

.dashboard-topbar em {
  margin-left: 8px;
  padding: 5px 9px;
  border-radius: 999px;
  color: var(--cyan-soft);
  background: rgba(30, 200, 255, 0.1);
  font-style: normal;
  font-size: 0.72rem;
}

.dashboard-status-row {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin: 14px 0 0;
}

.dashboard-status-row span {
  padding: 7px 10px;
  border: 1px solid rgba(111, 219, 255, 0.16);
  border-radius: 999px;
  color: #C7EFFC;
  background: rgba(255, 255, 255, 0.06);
  font-size: 0.74rem;
  font-weight: 800;
}

.kpi-grid {
  gap: 12px;
  margin: 14px 0;
}

.kpi-card {
  padding: 16px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.11), rgba(255, 255, 255, 0.045));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.kpi-card strong {
  font-size: 1.58rem;
}

.analytics-panel {
  min-height: 270px;
  padding: 14px;
  gap: 14px;
  background: rgba(255, 255, 255, 0.045);
}

.chart-card {
  display: grid;
  grid-template-rows: auto 1fr;
  min-width: 0;
  border-radius: 8px;
}

.chart-heading {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 12px;
  color: #A9C6DA;
  font-size: 0.78rem;
  font-weight: 800;
}

.chart-heading b {
  color: var(--cyan-soft);
}

.chart-bars {
  min-height: 210px;
  background:
    linear-gradient(rgba(255, 255, 255, 0.07) 1px, transparent 1px) 0 0 / 100% 25%,
    linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.025));
}

.chart-bars span {
  background: linear-gradient(180deg, #9BE8FF 0%, #1EC8FF 55%, #0EA5D8 100%);
}

.workflow-stack div {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.095), rgba(255, 255, 255, 0.04));
}

.problem-section,
.demo-section,
.process-section {
  background:
    radial-gradient(circle at 85% 0%, rgba(30, 200, 255, 0.12), transparent 30%),
    var(--blue-wash);
}

.solutions-section,
.why-section,
.contact-section {
  background:
    radial-gradient(circle at 12% 8%, rgba(111, 219, 255, 0.13), transparent 26%),
    linear-gradient(180deg, #FFFFFF 0%, #F8FCFF 100%);
}

.problem-card,
.solution-card,
.demo-card,
.why-list article,
.timeline li,
.consultation-form,
.contact-method {
  border-color: var(--card-border);
  background: linear-gradient(180deg, #FFFFFF 0%, #F9FDFF 100%);
  box-shadow: 0 18px 46px rgba(11, 31, 51, 0.08);
}

.problem-card,
.solution-card,
.why-list article {
  position: relative;
  overflow: hidden;
}

.team-section {
  background:
    radial-gradient(circle at 86% 12%, rgba(30, 200, 255, 0.13), transparent 30%),
    linear-gradient(180deg, #FFFFFF 0%, #F8FCFF 100%);
}

.team-section .section-heading p:last-child {
  max-width: 620px;
  color: var(--muted);
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.team-card {
  display: grid;
  grid-template-columns: 138px 1fr;
  gap: 22px;
  align-items: center;
  padding: 24px;
  border: 1px solid var(--card-border);
  border-radius: 8px;
  background: linear-gradient(180deg, #FFFFFF 0%, #F9FDFF 100%);
  box-shadow: 0 18px 46px rgba(11, 31, 51, 0.08);
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.team-card:hover {
  transform: translateY(-4px);
  border-color: rgba(30, 200, 255, 0.34);
  box-shadow: 0 24px 58px rgba(11, 31, 51, 0.12);
}

.team-card img {
  width: 138px;
  height: 138px;
  border: 3px solid rgba(111, 219, 255, 0.32);
  border-radius: 50%;
  object-fit: cover;
  background: var(--navy);
  box-shadow: 0 16px 34px rgba(30, 200, 255, 0.16);
}

.team-card h3 {
  margin-bottom: 6px;
}

.team-role {
  margin-bottom: 10px;
  color: #0b6684;
  font-weight: 900;
}

.team-card p:last-child {
  margin-bottom: 0;
  color: var(--muted);
}

.problem-card::before,
.solution-card::before,
.why-list article::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 3px;
  background: linear-gradient(90deg, var(--cyan), var(--cyan-soft));
  opacity: 0.75;
}

.problem-card span,
.timeline span {
  padding: 4px 9px;
  border-radius: 999px;
  background: rgba(30, 200, 255, 0.11);
}

.icon {
  color: var(--white);
  background: linear-gradient(135deg, var(--navy), var(--cyan));
  box-shadow: 0 12px 26px rgba(30, 200, 255, 0.18);
}

.industries {
  background:
    radial-gradient(circle at 12% 20%, rgba(30, 200, 255, 0.22), transparent 32%),
    linear-gradient(135deg, rgba(11, 31, 51, 0.98), rgba(17, 24, 39, 0.97));
}

.industry-list span {
  border-color: rgba(111, 219, 255, 0.24);
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.095), rgba(255, 255, 255, 0.045));
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.12);
}

.demo-card {
  overflow: hidden;
}

.mini-ui {
  background:
    radial-gradient(circle at 75% 20%, rgba(30, 200, 255, 0.24), transparent 34%),
    linear-gradient(145deg, #07192B, #0B1F33);
}

.contact-section {
  background:
    radial-gradient(circle at 86% 18%, rgba(30, 200, 255, 0.16), transparent 30%),
    linear-gradient(135deg, #FFFFFF 0%, #EFFAFF 100%);
}

.contact-copy {
  padding: 4px 0;
}

.consultation-note {
  box-shadow: 0 12px 28px rgba(30, 200, 255, 0.12);
}

.whatsapp-hero-cta {
  margin-bottom: 4px;
  background: linear-gradient(135deg, var(--navy), #0F3B5E);
}

.floating-whatsapp {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 30;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--white);
}

.floating-whatsapp__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--navy), var(--cyan));
  box-shadow: 0 18px 40px rgba(11, 31, 51, 0.26), 0 0 28px rgba(30, 200, 255, 0.36);
  font-weight: 900;
  animation: pulseGlow 2.4s infinite;
}

.floating-whatsapp__tooltip {
  max-width: 210px;
  padding: 10px 12px;
  border: 1px solid rgba(30, 200, 255, 0.2);
  border-radius: 8px;
  color: var(--navy);
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 16px 34px rgba(11, 31, 51, 0.14);
  font-size: 0.82rem;
  font-weight: 900;
}

.whatsapp-popup {
  position: fixed;
  right: 22px;
  bottom: 96px;
  z-index: 29;
  width: min(380px, calc(100vw - 32px));
  padding: 22px;
  border: 1px solid rgba(30, 200, 255, 0.22);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(18px);
  box-shadow: 0 26px 70px rgba(11, 31, 51, 0.18), 0 0 28px rgba(30, 200, 255, 0.12);
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.25s ease, transform 0.25s ease;
}

.whatsapp-popup.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.video-modal {
  position: fixed;
  inset: 0;
  z-index: 60;
  display: grid;
  place-items: center;
  padding: 22px;
}

.video-modal[hidden] {
  display: none;
}

.video-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(4, 12, 24, 0.82);
  backdrop-filter: blur(10px);
}

.video-modal__panel {
  position: relative;
  z-index: 1;
  width: min(960px, 100%);
  border: 1px solid rgba(111, 219, 255, 0.2);
  border-radius: 8px;
  overflow: hidden;
  background: #06111F;
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.42), 0 0 32px rgba(30, 200, 255, 0.16);
}

.video-modal__panel video {
  display: block;
  width: 100%;
  max-height: min(72vh, 720px);
  background: #06111F;
  object-fit: contain;
}

.video-modal__close {
  position: absolute;
  top: 12px;
  right: 12px;
  z-index: 2;
  width: 38px;
  height: 38px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 50%;
  color: var(--white);
  background: rgba(11, 31, 51, 0.82);
  font-size: 1.35rem;
  line-height: 1;
  cursor: pointer;
}

.whatsapp-popup h3 {
  margin-bottom: 10px;
  font-size: 1.25rem;
}

.whatsapp-popup p:not(.eyebrow) {
  color: var(--muted);
}

.popup-close {
  position: absolute;
  top: 10px;
  right: 10px;
  width: 32px;
  height: 32px;
  border: 1px solid rgba(11, 31, 51, 0.12);
  border-radius: 50%;
  background: #FFFFFF;
  color: var(--navy);
  font-size: 1.2rem;
  cursor: pointer;
}

.popup-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.popup-actions .btn {
  min-height: 44px;
}

@keyframes pulseGlow {
  0%, 100% {
    transform: scale(1);
    box-shadow: 0 18px 40px rgba(11, 31, 51, 0.26), 0 0 22px rgba(30, 200, 255, 0.28);
  }
  50% {
    transform: scale(1.045);
    box-shadow: 0 20px 46px rgba(11, 31, 51, 0.3), 0 0 34px rgba(30, 200, 255, 0.44);
  }
}

@media (max-width: 980px) {
  .hero {
    padding: 44px 0 62px;
  }

  h1 {
    font-size: clamp(2.625rem, 5.4vw, 2.875rem);
  }

  .analytics-panel {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 680px) {
  .site-header {
    position: sticky;
  }

  .nav {
    min-height: 70px;
  }

  .brand img {
    width: 146px;
  }

  .hero {
    padding: 30px 0 48px;
  }

  .hero-grid {
    gap: 28px;
  }

  h1 {
    font-size: clamp(2rem, 9vw, 2.25rem);
    line-height: 1.14;
  }

  .dashboard-shell {
    padding: 12px;
  }

  .dashboard-topbar {
    align-items: flex-start;
    flex-direction: column;
    gap: 8px;
    padding: 12px;
  }

  .dashboard-topbar strong {
    margin-left: 0;
  }

  .kpi-grid,
  .analytics-panel {
    gap: 10px;
  }

  .kpi-card {
    padding: 14px;
  }

  .chart-bars {
    min-height: 150px;
  }

  .floating-whatsapp {
    right: 14px;
    bottom: 14px;
  }

  .floating-whatsapp__tooltip {
    display: none;
  }

  .floating-whatsapp__icon {
    width: 54px;
    height: 54px;
  }

  .whatsapp-popup {
    right: 14px;
    bottom: 82px;
    width: calc(100vw - 28px);
    padding: 20px;
  }

  .video-modal {
    padding: 14px;
  }

  .video-modal__panel video {
    max-height: 76vh;
  }

  .popup-actions .btn {
    width: 100%;
  }
}

@media (max-width: 680px) {
  .floating-whatsapp {
    right: 12px;
    bottom: 18px;
  }

  .floating-whatsapp__icon {
    width: 48px;
    height: 48px;
    font-size: 0.9rem;
  }
}

/* Content/UI upgrade: packages, service icons, and footer polish */
.nav-links {
  gap: 18px;
}

.solution-card .icon {
  width: 48px;
  min-width: 48px;
  height: 48px;
  padding: 0;
  color: var(--white);
  background: linear-gradient(135deg, var(--navy), var(--cyan));
  box-shadow: 0 14px 30px rgba(30, 200, 255, 0.2);
}

.solution-card .icon svg {
  width: 24px;
  height: 24px;
  fill: currentColor;
}

.packages-section {
  background:
    radial-gradient(circle at 12% 12%, rgba(30, 200, 255, 0.16), transparent 30%),
    linear-gradient(180deg, #F8FCFF 0%, #FFFFFF 100%);
}

.package-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  align-items: stretch;
}

.package-card {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 100%;
  padding: 26px;
  border: 1px solid var(--card-border);
  border-radius: 8px;
  background: linear-gradient(180deg, #FFFFFF 0%, #F9FDFF 100%);
  box-shadow: 0 18px 46px rgba(11, 31, 51, 0.08);
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.package-card:hover {
  transform: translateY(-4px);
  border-color: rgba(30, 200, 255, 0.36);
  box-shadow: 0 24px 58px rgba(11, 31, 51, 0.12);
}

.package-card-featured {
  border-color: rgba(30, 200, 255, 0.45);
  box-shadow: 0 22px 58px rgba(30, 200, 255, 0.14);
}

.package-badge {
  align-self: flex-start;
  margin-bottom: 14px;
  padding: 5px 10px;
  border-radius: 999px;
  color: var(--navy);
  background: rgba(30, 200, 255, 0.14);
  font-size: 0.72rem;
  font-weight: 900;
}

.package-card h3 {
  margin-bottom: 12px;
  font-size: 1.12rem;
}

.package-card h4 {
  margin: 14px 0 8px;
  color: var(--navy);
  font-size: 0.88rem;
}

.package-price {
  margin-bottom: 14px;
  color: #43546A;
  font-weight: 800;
}

.package-price strong {
  display: block;
  margin-top: 4px;
  color: var(--navy);
  font-size: 1.35rem;
}

.package-card p,
.package-card li {
  color: var(--muted);
}

.package-card ul {
  display: grid;
  gap: 8px;
  margin: 0 0 22px;
  padding-left: 18px;
}

.package-card .btn {
  width: 100%;
  margin-top: auto;
  justify-content: center;
}

.package-note {
  max-width: 780px;
  margin: 22px auto 0;
  color: var(--muted);
  text-align: center;
  font-weight: 700;
}

.footer-brand-block {
  display: grid;
  justify-items: start;
  gap: 8px;
}

.footer-brand-block .footer-logo {
  width: 224px;
  margin-bottom: 8px;
  padding: 8px 10px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
  filter: brightness(1.28) contrast(1.12) drop-shadow(0 0 20px rgba(111, 219, 255, 0.22));
}

.footer-brand-block h2,
.footer-brand-block .footer-positioning {
  margin-bottom: 0;
}

.socials {
  gap: 12px;
}

.social-icon {
  color: #D8EAF5;
  transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease, color 0.2s ease, background 0.2s ease;
}

.social-icon:hover {
  color: var(--cyan-soft);
  border-color: rgba(111, 219, 255, 0.62);
  background: rgba(30, 200, 255, 0.12);
  box-shadow: 0 0 22px rgba(30, 200, 255, 0.22);
  transform: translateY(-2px);
}

@media (max-width: 1100px) {
  .package-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 980px) {
  .nav-links {
    gap: 14px;
  }

  .team-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 680px) {
  .team-card {
    grid-template-columns: 1fr;
    justify-items: start;
    padding: 22px;
  }

  .team-card img {
    width: 124px;
    height: 124px;
  }

  .package-grid {
    grid-template-columns: 1fr;
  }

  .package-card {
    padding: 22px;
  }

  .footer-brand-block .footer-logo {
    width: 190px;
  }

  .footer-brand-block {
    justify-items: start;
  }
}

/* Safe content upgrade: typography rhythm plus journey and use-case sections */
h1,
h2,
h3,
.section-heading h2,
.contact-copy h2,
.demo-card h3,
.use-case-card h3,
.eyebrow,
.btn,
.text-link {
  text-wrap: balance;
}

p,
li,
.hero-subtitle,
.section-heading p:not(.eyebrow),
.solution-card p,
.demo-card p,
.package-card p,
.package-card li,
.seo-panel p,
.contact-copy p {
  text-wrap: pretty;
}

.hero-subtitle,
.section-heading p:not(.eyebrow),
.contact-copy > p:not(.eyebrow):not(.consultation-note) {
  max-width: 640px;
  line-height: 1.74;
}

.solution-card p,
.demo-card p,
.journey-detail,
.use-case-card p,
.package-card p,
.package-card li {
  line-height: 1.72;
}

.seo-panel p,
.footer-brand-block p {
  max-width: 680px;
  line-height: 1.72;
}

.trust-row {
  align-items: center;
}

.trust-row span {
  line-height: 1.32;
  text-wrap: balance;
  transition: transform 0.28s ease, border-color 0.28s ease, box-shadow 0.28s ease;
}

.trust-row span:hover {
  transform: translateY(-3px);
  border-color: rgba(30, 200, 255, 0.34);
  box-shadow: 0 16px 34px rgba(11, 31, 51, 0.1), 0 0 18px rgba(30, 200, 255, 0.12);
}

.demo-kicker {
  display: inline-flex;
  margin: 0 0 12px;
  padding: 6px 10px;
  border: 1px solid rgba(30, 200, 255, 0.22);
  border-radius: 999px;
  color: #0b6684;
  background: rgba(30, 200, 255, 0.08);
  font-size: 0.74rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  line-height: 1.2;
  text-transform: uppercase;
}

.journey-section {
  background:
    radial-gradient(circle at 88% 12%, rgba(30, 200, 255, 0.13), transparent 30%),
    linear-gradient(180deg, #FFFFFF 0%, #F8FCFF 100%);
}

.use-cases-section {
  background:
    radial-gradient(circle at 12% 10%, rgba(111, 219, 255, 0.14), transparent 28%),
    var(--blue-wash);
}

.journey-flow {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 14px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.journey-flow li,
.use-case-card {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--card-border);
  border-radius: 8px;
  background: linear-gradient(180deg, #FFFFFF 0%, #F9FDFF 100%);
  box-shadow: 0 18px 46px rgba(11, 31, 51, 0.08);
  transition: transform 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease;
}

.journey-flow li {
  min-height: 228px;
  padding: 22px 18px;
}

.journey-step {
  cursor: pointer;
}

.journey-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  margin: 0 0 18px;
  border: 1px solid rgba(30, 200, 255, 0.24);
  border-radius: 8px;
  color: #0b6684;
  background: rgba(30, 200, 255, 0.07);
  transition: color 0.28s ease, border-color 0.28s ease, box-shadow 0.28s ease, background 0.28s ease;
}

.journey-icon svg {
  width: 21px;
  height: 21px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.75;
}

.journey-step:focus-visible,
.demo-video-preview:focus-visible,
.demo-watch-button:focus-visible {
  outline: 3px solid rgba(30, 200, 255, 0.34);
  outline-offset: 4px;
}

.journey-flow li::before,
.use-case-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 3px;
  background: linear-gradient(90deg, var(--cyan), var(--cyan-soft));
  opacity: 0.75;
}

.journey-flow span,
.use-case-card span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 38px;
  height: 30px;
  margin-bottom: 28px;
  padding: 0 10px;
  border-radius: 999px;
  color: var(--navy);
  background: rgba(30, 200, 255, 0.12);
  font-size: 0.8rem;
  font-weight: 900;
}

.journey-flow h3 {
  margin-bottom: 0;
  font-size: 1rem;
}

.journey-detail {
  max-height: 0;
  margin: 0;
  overflow: hidden;
  color: var(--muted);
  opacity: 0;
  transition: max-height 0.22s ease, margin-top 0.22s ease, opacity 0.22s ease;
}

.journey-step.is-active {
  border-color: rgba(30, 200, 255, 0.46);
  box-shadow: 0 24px 60px rgba(11, 31, 51, 0.12), 0 0 26px rgba(30, 200, 255, 0.14);
}

.journey-step:hover .journey-icon,
.journey-step.is-active .journey-icon {
  color: var(--navy);
  border-color: rgba(30, 200, 255, 0.46);
  background: rgba(30, 200, 255, 0.12);
  box-shadow: 0 0 20px rgba(30, 200, 255, 0.18);
}

.journey-step.is-active .journey-detail {
  max-height: 110px;
  margin-top: 14px;
  opacity: 1;
}

.journey-hint {
  display: inline-flex;
  margin: 6px 0 0;
  padding: 7px 10px;
  border: 1px solid rgba(30, 200, 255, 0.22);
  border-radius: 999px;
  color: #0b6684;
  background: rgba(30, 200, 255, 0.08);
  font-size: 0.84rem;
  font-weight: 800;
}

.journey-flow li:hover,
.use-case-card:hover {
  transform: translateY(-4px);
  border-color: rgba(30, 200, 255, 0.34);
  box-shadow: 0 26px 64px rgba(11, 31, 51, 0.13), 0 0 20px rgba(30, 200, 255, 0.1);
}

.demo-card {
  cursor: pointer;
  transition: transform 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease;
}

.demo-card:hover {
  transform: translateY(-4px);
  border-color: rgba(30, 200, 255, 0.4);
  box-shadow: 0 26px 66px rgba(11, 31, 51, 0.13), 0 0 20px rgba(30, 200, 255, 0.1);
}

.demo-video-preview video {
  transition: transform 0.34s ease;
}

.demo-card:hover .demo-video-preview video {
  transform: scale(1.018);
}

.btn,
.whatsapp-hero-cta,
.text-link {
  transition: transform 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease, background 0.28s ease, color 0.28s ease;
}

.btn:hover,
.whatsapp-hero-cta:hover {
  transform: translateY(-2px);
}

.btn-primary:hover {
  background: linear-gradient(135deg, #07192B, #0E3454);
  box-shadow: 0 18px 42px rgba(11, 31, 51, 0.26), 0 0 26px rgba(30, 200, 255, 0.18);
}

.btn-secondary:hover {
  border-color: rgba(30, 200, 255, 0.38);
  box-shadow: 0 14px 30px rgba(11, 31, 51, 0.1), 0 0 18px rgba(30, 200, 255, 0.1);
}

.text-link:hover {
  color: var(--navy);
  text-shadow: 0 0 16px rgba(30, 200, 255, 0.22);
}

.use-case-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 16px;
}

.use-case-card {
  display: flex;
  flex-direction: column;
  padding: 24px;
}

.use-case-card h3 {
  margin-bottom: 10px;
}

.use-case-card p {
  max-width: 28rem;
  margin-bottom: 0;
  color: var(--muted);
}

@media (max-width: 1100px) {
  .journey-flow {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .use-case-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 680px) {
  .hero-subtitle,
  .section-heading p:not(.eyebrow),
  .contact-copy > p:not(.eyebrow):not(.consultation-note) {
    max-width: 32rem;
    line-height: 1.68;
  }

  .trust-row {
    gap: 8px;
  }

  .trust-row span {
    padding: 8px 10px;
  }

  .journey-flow,
  .use-case-grid {
    grid-template-columns: 1fr;
  }

  .journey-flow li,
  .use-case-card {
    padding: 22px;
  }

  .journey-flow li {
    min-height: 0;
  }

  .journey-step {
    touch-action: manipulation;
  }

  .journey-detail {
    line-height: 1.66;
  }
}

/* Minor UI polish: compact mobile dashboard, boxed footer links, and office map card */
.location-card {
  display: grid;
  grid-template-columns: 118px 1fr;
  gap: 16px;
  align-items: center;
  margin-top: 16px;
  padding: 18px;
  border: 1px solid var(--card-border);
  border-radius: 8px;
  background: linear-gradient(180deg, #FFFFFF 0%, #F9FDFF 100%);
  box-shadow: 0 18px 46px rgba(11, 31, 51, 0.08);
}

.location-card__preview {
  position: relative;
  min-height: 112px;
  overflow: hidden;
  border: 1px solid rgba(30, 200, 255, 0.2);
  border-radius: 8px;
  background:
    linear-gradient(90deg, rgba(11, 31, 51, 0.08) 1px, transparent 1px) 0 0 / 28px 28px,
    linear-gradient(rgba(11, 31, 51, 0.08) 1px, transparent 1px) 0 0 / 28px 28px,
    radial-gradient(circle at 54% 46%, rgba(30, 200, 255, 0.2), transparent 30%),
    #EFFAFF;
}

.location-card__preview::before,
.location-card__preview::after {
  content: "";
  position: absolute;
  background: rgba(11, 31, 51, 0.12);
}

.location-card__preview::before {
  inset: 52px -10px auto;
  height: 16px;
  transform: rotate(-10deg);
}

.location-card__preview::after {
  inset: -10px auto -10px 48px;
  width: 14px;
  transform: rotate(18deg);
}

.location-card__preview span {
  position: absolute;
  left: 50%;
  top: 44%;
  z-index: 1;
  width: 28px;
  height: 28px;
  border: 6px solid var(--cyan);
  border-radius: 50% 50% 50% 0;
  background: var(--navy);
  box-shadow: 0 0 24px rgba(30, 200, 255, 0.28);
  transform: translate(-50%, -50%) rotate(-45deg);
}

.location-card__label {
  margin-bottom: 6px;
  color: var(--navy) !important;
  font-weight: 900;
}

.location-card p:not(.location-card__label) {
  margin-bottom: 12px;
  color: var(--muted);
  line-height: 1.62;
}

.map-button,
.footer-location-card a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 42px;
  padding: 0 14px;
  border: 1px solid rgba(30, 200, 255, 0.3);
  border-radius: 6px;
  color: var(--navy);
  background: rgba(30, 200, 255, 0.1);
  font-weight: 900;
  transition: transform 0.24s ease, border-color 0.24s ease, box-shadow 0.24s ease, background 0.24s ease;
}

.map-button svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}

.map-button:hover,
.footer-location-card a:hover {
  transform: translateY(-2px);
  border-color: rgba(30, 200, 255, 0.52);
  background: rgba(30, 200, 255, 0.15);
  box-shadow: 0 14px 30px rgba(11, 31, 51, 0.1), 0 0 18px rgba(30, 200, 255, 0.12);
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 9px;
}

.footer-links a {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  min-height: 42px;
  padding: 9px 10px;
  border: 1px solid rgba(111, 219, 255, 0.18);
  border-radius: 8px;
  color: #D8EAF5;
  background: rgba(255, 255, 255, 0.055);
  font-size: 0.88rem;
  font-weight: 800;
  transition: transform 0.24s ease, border-color 0.24s ease, box-shadow 0.24s ease, background 0.24s ease, color 0.24s ease;
}

.footer-links a svg {
  flex: 0 0 auto;
  width: 18px;
  height: 18px;
  fill: currentColor;
}

.footer-links a:hover,
.footer-links a:focus-visible,
.map-button:focus-visible,
.footer-location-card a:focus-visible {
  color: var(--cyan-soft);
  border-color: rgba(111, 219, 255, 0.52);
  background: rgba(30, 200, 255, 0.1);
  box-shadow: 0 0 20px rgba(30, 200, 255, 0.16);
  outline: none;
  transform: translateY(-2px);
}

.footer-location-card {
  display: grid;
  gap: 8px;
  margin-top: 4px;
  padding: 14px;
  border: 1px solid rgba(111, 219, 255, 0.18);
  border-radius: 8px;
  background:
    radial-gradient(circle at 16% 18%, rgba(30, 200, 255, 0.12), transparent 30%),
    rgba(255, 255, 255, 0.055);
}

.footer-location-card strong {
  color: var(--white);
}

.footer-location-card span {
  color: #C9D7E5;
  line-height: 1.55;
}

.footer-location-card a {
  justify-self: start;
  min-height: 38px;
  color: var(--white);
  background: rgba(30, 200, 255, 0.12);
}

@media (max-width: 680px) {
  .dashboard-shell {
    padding: 10px;
    border-radius: 8px;
  }

  .dashboard-topbar {
    min-height: 40px;
    padding: 10px;
    gap: 6px;
  }

  .dashboard-topbar em {
    padding: 4px 8px;
    font-size: 0.68rem;
  }

  .dashboard-status-row {
    gap: 7px;
    margin-top: 10px;
  }

  .dashboard-status-row span {
    padding: 5px 8px;
    font-size: 0.68rem;
  }

  .kpi-grid {
    gap: 8px;
    margin: 10px 0;
  }

  .kpi-card {
    padding: 10px;
  }

  .kpi-card small,
  .workflow-stack small {
    font-size: 0.7rem;
  }

  .kpi-card strong {
    margin: 5px 0 8px;
    font-size: 1.24rem;
  }

  .trend {
    font-size: 0.72rem;
  }

  .analytics-panel {
    min-height: 0;
    padding: 10px;
    gap: 10px;
  }

  .chart-heading {
    margin-bottom: 8px;
    font-size: 0.72rem;
  }

  .chart-bars {
    min-height: 132px;
    max-height: 180px;
    gap: 7px;
    padding: 10px;
  }

  .workflow-stack {
    gap: 8px;
  }

  .workflow-stack div {
    padding: 10px;
  }

  .workflow-stack b {
    font-size: 0.86rem;
  }

  .location-card {
    grid-template-columns: 1fr;
    gap: 12px;
    padding: 15px;
  }

  .location-card__preview {
    min-height: 86px;
  }

  .map-button {
    width: 100%;
  }

  .footer-links {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
  }

  .footer-links a {
    min-height: 44px;
    padding: 9px;
  }

  .footer-location-card {
    margin-top: 8px;
  }
}

@media (max-width: 420px) {
  .kpi-card strong {
    font-size: 1.08rem;
  }

  .chart-bars {
    min-height: 112px;
  }
}

/* Safe mobile text polish: let card copy use the available screen width cleanly */
@media (max-width: 768px) {
  .problem-card,
  .solution-card,
  .use-case-card,
  .journey-step,
  .demo-card,
  .package-card,
  .contact-copy,
  .seo-content {
    width: 100%;
  }

  .problem-card,
  .solution-card,
  .use-case-card,
  .journey-flow li,
  .demo-card,
  .package-card {
    padding-right: clamp(18px, 5vw, 26px);
    padding-left: clamp(18px, 5vw, 26px);
  }

  .problem-card h3,
  .solution-card h3,
  .use-case-card h3,
  .journey-flow h3,
  .demo-card h3,
  .package-card h3,
  .section-heading h2 {
    max-width: none;
    text-align: left;
    text-wrap: balance;
  }

  .problem-card p,
  .solution-card p,
  .use-case-card p,
  .journey-detail,
  .demo-card p,
  .package-card p,
  .package-card li,
  .contact-copy p,
  .seo-content p,
  .section-heading p {
    max-width: none;
    width: 100%;
    text-align: left;
    line-height: 1.64;
    text-wrap: pretty;
  }

  .problem-grid,
  .solution-grid,
  .use-case-grid,
  .journey-flow,
  .demo-grid,
  .package-grid {
    align-items: stretch;
  }
}
