  /* =========================
       GLOBAL SITE STYLES (Figtree)
    ========================= */
    :root{
      --container: 1318px;
      --colW: 650px;
      --colGap: 18px;         /* 650 + 650 + 18 = 1318 */
      --cardH: 514px;

      --bg: #f5f6f8;
      --card: #ffffff;
      --text: #0b0f1a;
      --muted: #667085;
      --line: #eef2f6;
      --accent: #ff5a2f;

      --mint: #a8f6c3;
      --panel: #f3f4f6;

      --radius: 28px;
      --shadow: 0 18px 40px rgba(16,24,40,.06);
    }

    *{ box-sizing:border-box; }
    body{
      margin:0;
      font-family:"Figtree", system-ui, -apple-system, Segoe UI, Roboto, Arial;
      background:#fff;
      color:var(--text);
    }
    img{ max-width:100%; height:auto; display:block; }

    .container{
      max-width: var(--container);
      margin: 0 auto;
      padding: 0 16px;
    }

	
	/* Header Part */
	/* ---------- Base header styles ---------- */

.site-header {
  position: sticky;          /* stays on top when scrolling */
  top: 0;
  z-index: 1000;
  background: #032324;
  color: #ffffff;
}

.header-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 8px 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.header-logo {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
}

.header-logo img {
  height: 36px;              /* adjust if needed */
  display: block;
}

/* Links */
.header-nav a {
  color: #ffffff;
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
}

.header-nav a:hover {
  opacity: 0.9;
}

/* CTA button */
.header-cta {
  padding: 8px 24px;
  border-radius: 999px;
  background: #f2661d;
  color: #ffffff;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  white-space: nowrap;
}

/* Desktop menu layout (general) */
.header-nav {
  display: flex;
  align-items: center;
  gap: 32px;
}

.header-menu {
  display: flex;
  align-items: center;
  gap: 32px;
  list-style: none;
  margin: 0;
  padding: 0;
}

/* Hamburger (hidden on desktop) */
.header-toggle {
  display: none;
  background: none;
  border: 0;
  padding: 8px;
  flex-direction: column;
  justify-content: center;
  gap: 4px;
  cursor: pointer;
}

.header-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: #ffffff;
}

/* Languages dropdown – desktop */
.has-dropdown {
  position: relative;
}

.lang-toggle {
  background: none;
  border: 0;
  color: #ffffff;
  font: inherit;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 0;
}

.lang-menu {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 140px;
  margin-top: 8px;
  padding: 6px 0;
  list-style: none;
  background: #ffffff;
  color: #062c2c;
  border-radius: 8px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.35);
  display: none;
  z-index: 1100;
}

.lang-menu li a {
  display: block;
  padding: 6px 12px;
  color: #062c2c;
  text-decoration: none;
  font-size: 13px;
}

.lang-menu li a:hover {
  background: #f2f2f2;
}

/* show dropdown when class is toggled in JS */
.has-dropdown.is-open .lang-menu {
  display: block;
}

/* optional: also open on hover for desktop 
@media (hover: hover) and (pointer: fine) {
  .has-dropdown:hover .lang-menu {
    display: block;
  }
}*/

/* ---------- Mobile layout ---------- */

@media (max-width: 768px) {
  .header-inner {
    padding-inline: 12px;
  }

  /* show hamburger */
  .header-toggle {
    display: flex;
  }

  /* mobile nav is hidden by default */
  .header-nav {
    position: absolute;
    left: 0;
    right: 0;
    top: 100%;
    background: #032324;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    padding: 10px 16px 16px;
    display: none;                 /* IMPORTANT: hide initially */
    flex-direction: column;
    gap: 12px;
  }

  /* when header has .nav-open (set by JS), show menu */
  .site-header.nav-open .header-nav {
    display: flex;
  }

  .header-menu {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }

  .header-menu li a {
    font-size: 15px;
  }

  /* Languages dropdown inside mobile menu */
  .has-dropdown {
    width: 100%;
  }

  .lang-toggle {
    width: 100%;
    justify-content: space-between;
  }

  .lang-menu {
    position: static;
    margin-top: 4px;
    background: transparent;
    box-shadow: none;
    padding-left: 12px;
  }

  .lang-menu li a {
    color: #ffffff;
    padding: 3px 0;
  }

  .lang-menu li a:hover {
    background: none;
    text-decoration: underline;
  }

  /* CTA inside menu below links */
  .header-cta {
    align-self: flex-start;
    margin-top: 8px;
  }
}

/* ---------- Desktop override (>= 769px) ---------- */

@media (min-width: 769px) {
  .site-header {
    position: sticky;
  }
  .header-nav {
    position: static;
    display: flex !important;   /* always visible on desktop */
    flex-direction: row;
  }
}

	

    /* shared bullet dot */
    .dot{
      width: 9px;
      height: 9px;
      border-radius: 999px;
      background: var(--accent);
      margin-top: 8px;
      flex: 0 0 auto;
      box-shadow: 0 10px 18px rgba(255,90,47,.22);
    }

    /* =========================
       SECTION 1 (Hero)
    ========================= */
    .hero-copy{
      background: var(--bg);
      padding: clamp(44px, 7vw, 80px) 0;
    }
    .hero-inner{
      max-width: 1050px;
      margin: 0 auto;
      text-align:center;
      padding: 0 16px;
    }
    .hero-copy h1{
      margin: 0 0 18px;
      font-weight: 600;
      letter-spacing: -0.02em;
      line-height: 1.06;
      font-size: clamp(28px, 4.2vw, 46px);
    }
    .hero-copy p{
      margin: 0 auto;
      color: var(--muted);
      font-weight: 500;
      line-height: 1.5;
      font-size: clamp(14px, 1.4vw, 18px);
      max-width: 880px;
    }

    /* =========================
       SECTION 2 (2 cards)
    ========================= */
    .sec2{
      background: var(--bg);
      padding: 28px 0 64px;
    }
    .sec2-grid{
      display:grid;
      gap: var(--colGap);
      grid-template-columns: 1fr 1fr;
      align-items: stretch;
    }
    @media (min-width: 1340px){
      .sec2-grid{
        grid-template-columns: var(--colW) var(--colW);
        justify-content: center;
      }
      .sec2-card{ height: var(--cardH); }
    }
    .sec2-card{
      width: 100%;
      background: var(--card);
      border: 1px solid var(--line);
      border-radius: var(--radius);
      box-shadow: var(--shadow);
      overflow:hidden;
    }
    .sec2-left{
      background: var(--mint);
      padding: 28px;
      display:flex;
      align-items:center;
      justify-content:center;
    }
    .sec2-media{
      width: 100%;
      height: 100%;
      border-radius: 18px;
      overflow:hidden;
      display:grid;
      place-items:center;
    }
    .sec2-media img{
      width:100%;
      height:100%;
      object-fit: contain;
    }
    .sec2-right{
      padding: 34px;
      display:flex;
      flex-direction:column;
      justify-content:center;
    }
    .sec2-right h2{
      margin: 0 0 14px;
      font-size: clamp(26px, 2.8vw, 40px);
      line-height: 1.08;
      letter-spacing: -0.02em;
      font-weight: 600;
    }
    .sec2-lead{
      margin: 0 0 24px;
      color: var(--muted);
      font-weight: 500;
      font-size: 15.5px;
      max-width: 52ch;
      line-height: 1.5;
    }
    .sec2-subhead{
      margin: 0 0 12px;
      font-weight: 600;
      font-size: 18px;
    }
    .sec2-list{
      list-style:none;
      padding:0;
      margin:0;
      display:grid;
      gap: 14px;
    }
    .sec2-list li{
      display:flex;
      gap: 12px;
      align-items:flex-start;
      color: var(--muted);
      font-weight: 500;
      line-height: 1.45;
    }
    .sec2-list strong{
      color: var(--text);
      font-weight: 850;
    }
    @media (max-width: 980px){
      .sec2-grid{ grid-template-columns: 1fr; }
      .sec2-card{ height:auto; }
      .sec2-left{ padding: 18px; }

      .sec2-media{ height: 360px; }
      .sec2-right{ padding: 24px; }
    }
    @media (max-width: 520px){
      .sec2-media{ height: 260px; }
      .sec2-right{ padding: 18px; }
    }

    /* =========================
       SECTION 3 (Human Service)
    ========================= */
    .sec3{
      background:#fff;
      padding: 64px 0;
    }
    .sec3-grid{
      display:grid;
      gap: var(--colGap);
      grid-template-columns: 1fr 1fr;
      align-items:start;
    }
    @media (min-width: 1340px){
      .sec3-grid{
        grid-template-columns: var(--colW) var(--colW);
        justify-content:center;
      }
    }
    .sec3-title{
      font-size: clamp(28px, 3.1vw, 44px);
      line-height: 1.08;
      letter-spacing: -0.02em;
      font-weight: 600;
      margin: 0 0 14px;
    }
    .sec3-lead{
      margin: 0 0 26px;
      color: var(--muted);
      font-weight: 500;
      font-size: 15.5px;
      max-width: 52ch;
      line-height: 1.55;
    }
    .sec3-photo{
      border-radius: var(--radius);
      overflow:hidden;
      background:#000;
    }
    .sec3-photo img{
      width:100%;
      object-fit:cover;
    }
    .sec3-benefits{
      background: var(--panel);
      border-radius: var(--radius);
      padding: 75px 28px;
    }
    .sec3-benefits ul{
      list-style:none;
      padding:0;
      margin:0;
      display:grid;
      gap: 14px;
    }
    .sec3-benefits li{
      display:grid;
      grid-template-columns: 18px 1fr;
      gap: 12px;
      align-items:start;
      font-size: 22px;
      line-height: 1.25;
      font-weight: 500;
    }
    .sec3-benefits .dot{ margin-top: 10px; box-shadow:none; }
    .sec3-benefits strong{ font-weight: 600; }
    .sec3-benefits span{
      color: var(--muted);
      font-weight: 500;
      font-size: 16px;
      margin-left: 6px;
    }
    .sec3-copy{
      margin-top: 50px;
      font-size: 20px;
      line-height: 1.35;
      color: var(--text);
      font-weight: 500;
      max-width: 54ch;
    }
    .sec3-copy p{ margin: 0 0 20px; }
    @media (max-width: 980px){
      .sec3-grid{ grid-template-columns: 1fr; gap: 22px; }
      .sec3-benefits li{ font-size: 18px; }
      .sec3-copy{ font-size: 18px; }
    }

    /* =========================
       SECTION 4 (Security + GDPR)
    ========================= */
    .sec4{
      background: var(--bg);
      padding: 84px 0 86px;
    }
    .sec4-top{ text-align:center; }
    .sec4-title{
      margin: 0 0 10px;
      font-size: clamp(28px, 3.2vw, 44px);
      line-height: 1.1;
      letter-spacing: -0.02em;
      font-weight: 600;
    }
    .sec4-sub{
      margin: 0 auto;
      max-width: 820px;
      color: var(--muted);
      font-weight: 500;
      font-size: 15.5px;
      line-height: 1.5;
    }
    .sec4-icons{
      margin-top: 40px;
      display:flex;
      justify-content:center;
      gap: 120px;
      flex-wrap: wrap;
    }
    .sec4-iconItem{
      display:flex;
      flex-direction:column;
      align-items:center;
      gap: 18px;
    }
    .sec4-iconCircle{
      width: 280px;
      height: 280px;
      border-radius: 999px;
      background: #eaf0ff;
      display:grid;
      place-items:center;
    }
    .sec4-iconCircle img{
      width: 210px;
      height: 210px;
      object-fit: contain;
    }
    .sec4-iconLabel{
      font-weight: 600;
      font-size: 18px;
    }

    .sec4-gdpr{
      margin-top: 72px;
      display:grid;
      grid-template-columns: 1fr 1.25fr;
      gap: 60px;
      align-items:start;
    }
    .sec4-gdprTitle{
      margin: 0 0 14px;
      font-size: clamp(24px, 2.4vw, 34px);
      line-height: 1.15;
      letter-spacing: -0.02em;
      font-weight: 600;
    }
    .sec4-gdprText{
      margin: 0;
      color: var(--muted);
      font-weight: 500;
      font-size: 16px;
      line-height: 1.55;
      max-width: 46ch;
    }
    .sec4-gdprRight{ padding-top: 8px; }
    .sec4-row{
      padding: 22px 0;
      border-bottom: 1px solid #dfe5ee;
      font-size: 18px;
      line-height: 1.35;
    }
    .sec4-row strong{ font-weight: 600; }
    .sec4-row span{
      color: var(--muted);
      font-weight: 500;
      margin-left: 6px;
    }
    @media (max-width: 980px){
      .sec4-icons{ gap: 42px; }
      .sec4-iconCircle{ width: 240px; height: 240px; }
      .sec4-iconCircle img{ width: 180px; height: 180px; }
      .sec4-gdpr{ grid-template-columns: 1fr; gap: 26px; }
    }

    /* =========================
       SECTION 5 (Integrations + API)
    ========================= */
    .sec5{
      background:#fff;
      padding: 86px 0;
    }
    .sec5-grid{
      display:grid;
      gap: 64px;
      grid-template-columns: 1fr 1fr;
      align-items:start;
    }
    @media (min-width: 1340px){
      .sec5-grid{
        grid-template-columns: var(--colW) var(--colW);
        justify-content:center;
        gap: var(--colGap);
      }
    }
    .sec5-title{
      margin: 0 0 18px;
      font-size: clamp(28px, 3.2vw, 46px);
      line-height: 1.05;
      letter-spacing: -0.02em;
      font-weight: 600;
    }
    .sec5-lead{
      margin: 0 0 26px;
      color: var(--muted);
      font-weight: 500;
      font-size: 16px;
      line-height: 1.65;
      max-width: 62ch;
    }
    .sec5-list{
      list-style:none;
      padding:0;
      margin: 0 0 28px;
      display:grid;
      gap: 22px;
    }
    .sec5-list li{
      display:flex;
      align-items:flex-start;
      gap: 14px;
      font-size: 20px;
      line-height: 1.25;
    }
    .sec5-list strong{ font-weight: 600; }
    .sec5-check{
      width: 22px;
      height: 22px;
      border-radius: 999px;
      background: var(--accent);
      display:grid;
      place-items:center;
      margin-top: 4px;
      flex: 0 0 auto;
      box-shadow: 0 10px 18px rgba(255,90,47,.22);
    }
    .sec5-foot{
      margin: 0;
      color: var(--muted);
      font-weight: 500;
      font-size: 15.5px;
      line-height: 1.65;
      max-width: 62ch;
    }
    .sec5-right{
      display:flex;
      justify-content:center;
      align-items:flex-start;
    }
    .sec5-illustration{
      width: 100%;
      max-width: 640px;
      height: auto;
    }
    @media (max-width: 980px){
      .sec5-grid{ grid-template-columns: 1fr; gap: 34px; }
      .sec5-right{ justify-content:flex-start; }
      .sec5-list li{ font-size: 18px; }
    }

    /* =========================
       SECTION 6 (Modular)
    ========================= */
    .sec6{
      background: var(--bg);
      padding: 86px 0;
    }
    .sec6-grid{
      display:grid;
      gap: 64px;
      grid-template-columns: 1fr 1fr;
      align-items:start;
    }
    @media (min-width: 1340px){
      .sec6-grid{
        grid-template-columns: var(--colW) var(--colW);
        justify-content:center;
        gap: var(--colGap);
      }
    }
    .sec6-card{
      background: #fff;
      border-radius: var(--radius);
      border: 1px solid var(--line);
      box-shadow: var(--shadow);
      overflow:hidden;
      padding: 34px;
      display:flex;
      align-items:center;
      justify-content:center;
      min-height: 560px;
    }
    .sec6-card img{
      width: 100%;
      max-width: 520px;
      object-fit: contain;
    }
    .sec6-title{
      margin: 0 0 18px;
      font-size: clamp(28px, 3.2vw, 46px);
      line-height: 1.05;
      letter-spacing: -0.02em;
      font-weight: 600;
    }
    .sec6-lead{
      margin: 0 0 30px;
      color: var(--muted);
      font-weight: 500;
      font-size: 16px;
      line-height: 1.7;
      max-width: 64ch;
    }
    .sec6-features{
      display:grid;
      grid-template-columns: 1fr 1fr;
      gap: 28px 40px;
      margin-bottom: 26px;
    }
    .sec6-feature{
      display:flex;
      gap: 14px;
      align-items:flex-start;
    }
    .sec6-ico{
      width: 34px;
      height: 34px;
      border-radius: 10px;
      display:grid;
      place-items:center;
      color: var(--accent);
      border: 1px solid rgba(255,90,47,.25);
      background: rgba(255,90,47,.06);
      flex: 0 0 auto;
    }
    .sec6-ico svg{
      width: 18px;
      height: 18px;
      stroke: var(--accent);
    }
    .sec6-h{
      font-weight: 600;
      font-size: 20px;
      margin-bottom: 6px;
    }
    .sec6-p{
      color: var(--muted);
      font-weight: 500;
      font-size: 15.5px;
      line-height: 1.45;
      max-width: 28ch;
    }
    .sec6-foot{
      margin: 10px 0 0;
      color: var(--muted);
      font-weight: 500;
      font-size: 15.5px;
      line-height: 1.7;
      max-width: 70ch;
    }
    @media (max-width: 980px){
      .sec6-grid{ grid-template-columns: 1fr; gap: 34px; }
      .sec6-card{ min-height:auto; padding: 22px; }
      .sec6-features{ grid-template-columns: 1fr; gap: 18px; }
    }

    /* =========================
       SECTION 7 (CTA)
    ========================= */
    .sec7{
      background:#fff;
      padding: 74px 0 86px;
    }
    .cta7{
      position: relative;
      border-radius: 30px;
      overflow: hidden;
      min-height: 420px;
      background-size: cover;
      background-position: center;
      background-repeat: no-repeat;
      display: grid;
      place-items: center;
    }
    .cta7::before{
      content:"";
      position:absolute;
      inset:0;
      background: linear-gradient(
        180deg,
        rgba(9, 25, 30, 0.35) 0%,
        rgba(9, 25, 30, 0.55) 45%,
        rgba(9, 25, 30, 0.75) 100%
      );
    }
    .cta7-inner{
      position: relative;
      z-index: 1;
      text-align: center;
      padding: 52px 22px;
      max-width: 860px;
    }
    .cta7-inner h2{
      margin: 0 0 10px;
      font-size: clamp(28px, 3.4vw, 46px);
      line-height: 1.1;
      letter-spacing: -0.02em;
      font-weight: 600;
      color: #fff;
    }
    .cta7-sub{
      margin: 0 auto 22px;
      color: rgba(255,255,255,0.86);
      font-weight: 500;
      font-size: 15.5px;
      line-height: 1.55;
      max-width: 70ch;
    }
    .cta7-btn{
      display: inline-flex;
      align-items: center;
      gap: 18px;
      background: var(--accent);
      color: #fff;
      border-radius: 999px;
      height: 56px;
      padding: 0 18px 0 26px;
      text-decoration: none;
      font-weight: 600;
      letter-spacing: 0.02em;
      box-shadow: 0 16px 32px rgba(255,90,47,.25);
      transition: transform .15s ease;
    }
    .cta7-btn-ico{
      width: 40px;
      height: 40px;
      border-radius: 999px;
      background: #fff;
      color: var(--accent);
      display: grid;
      place-items: center;
      font-size: 18px;
      font-weight: 600;
    }
    .cta7-btn:hover{ transform: translateY(-1px); }
    .cta7-btn:active{ transform: translateY(0); }

    @media (max-width: 980px){
      .cta7{ min-height: 360px; }
      .cta7-inner{ padding: 44px 18px; }
    }
    @media (max-width: 520px){
      .cta7{ min-height: 320px; border-radius: 24px; }
      .cta7-btn{ height: 52px; padding-left: 22px; }
      .cta7-btn-ico{ width: 38px; height: 38px; }
    }

    /* =========================
       SAAS MATRIX (scoped so it doesn't break site)
    ========================= */
    .tp-matrix{
      /* matrix-only variables (scoped, no conflict with site :root) */
      --tile-size: 200px;
      --tile-gap: 16px;

      --idle-bg: #ffffff;
      --hover-bg: #000000;
      --text-idle: #333333;
      --text-active: #ffffff;
      --outline-color: #c8a45a;
      --card-radius: 24px;
      --transition-fast: 120ms;

      background: #f5f1e9;
      padding: 70px 0;
    }
	.tp-matrix h2{
		margin: 0 0 10px;
      font-size: clamp(28px, 3.4vw, 46px);
      line-height: 1.1;
      letter-spacing: -0.02em;
      font-weight: 600;
      color: #000;
	  text-align:center;
	}
	
    .tp-matrix *{ box-sizing:border-box; }

    .tp-matrix .page{
      width: 100%;
      max-width: 1400px;
      margin: 0 auto;
      padding: 20px;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: flex-start;
      gap: 20px;
      font-family: "Roboto", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
      color: var(--text-idle);
    }

    .tp-matrix .matrix{
      display: flex;
      justify-content: center;
      gap: 16px;
      flex-wrap: nowrap;
      width: 100%;
    }

    .tp-matrix .category-column{
      display: grid;
      grid-template-rows: auto repeat(5, var(--tile-size));
      row-gap: var(--tile-gap);
      justify-items: center;
    }

    .tp-matrix .category-title{
      font-family: "Roboto", sans-serif;
      font-size: 19px;
      font-weight: 600;
      padding-top: 8px;
      border-top: 4px solid #000;
      width: var(--tile-size);
      text-align: center;
    }

    .tp-matrix .status-card{
      width: var(--tile-size);
      height: var(--tile-size);
      border-radius: var(--card-radius);
      background: var(--idle-bg);
      color: var(--text-idle);
      border: 2px solid transparent;
      box-shadow: 0 10px 20px rgba(0, 0, 0, 0.12);
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      gap: 14px;
      padding: 16px;
      cursor: pointer;
      text-align: center;
      transition:
        background var(--transition-fast) ease,
        color var(--transition-fast) ease,
        border-color var(--transition-fast) ease,
        box-shadow var(--transition-fast) ease,
        transform var(--transition-fast) ease;
    }

    .tp-matrix .status-card:hover{
      background: var(--hover-bg);
      color: var(--text-active);
      transform: translateY(-2px);
      box-shadow: 0 16px 30px rgba(0, 0, 0, 0.25);
    }

    .tp-matrix .status-card__icon{
      width: 60px;
      height: 60px;
      position: relative;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      transition: transform var(--transition-fast) ease;
    }

    .tp-matrix .status-card__icon img{
      max-width: 100%;
      max-height: 100%;
      position: absolute;
      inset: 0;
      margin: auto;
      transition: opacity var(--transition-fast) ease;
    }

    .tp-matrix .status-card__icon img.icon-idle{ opacity: 1; }
    .tp-matrix .status-card__icon img.icon-active{ opacity: 0; }

    .tp-matrix .status-card:hover .status-card__icon img.icon-idle{ opacity: 0; }
    .tp-matrix .status-card:hover .status-card__icon img.icon-active{ opacity: 1; }
    .tp-matrix .status-card:hover .status-card__icon{ transform: scale(1.05); }

    .tp-matrix .status-card__label{
      font-size: 20px;
      font-weight: 500;
      line-height: 1.2;
    }

    .tp-matrix .status-card.is-selected{
      background: var(--hover-bg);
      color: var(--text-active);
      border-color: var(--outline-color);
      box-shadow:
        0 0 0 2px rgba(0, 0, 0, 0.4),
        0 20px 34px rgba(0, 0, 0, 0.35);
    }
    .tp-matrix .status-card.is-selected .status-card__icon img.icon-idle{ opacity: 0; }
    .tp-matrix .status-card.is-selected .status-card__icon img.icon-active{ opacity: 1; }
    .tp-matrix .status-card.is-selected .status-card__icon{ transform: scale(1.05); }

    .tp-matrix .selection-panel{
      width: 100%;
      max-width: 900px;
      background: #fff;
      border-radius: 16px;
      padding: 14px 18px;
      box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
    }

    .tp-matrix .selection-panel h2{
      margin: 0 0 6px;
      font-size: 18px;
    }

    .tp-matrix .selection-panel small{
      color: #777;
      display: block;
      margin-bottom: 8px;
    }

    .tp-matrix #selectionList{
      list-style: none;
      padding: 0;
      margin: 0;
      display: flex;
      flex-wrap: wrap;
      gap: 12px;
      font-size: 14px;
    }

    .tp-matrix #selectionList li{ padding: 0; border-bottom: none; }

    .tp-matrix .selection-empty{
      color: #999;
      font-style: italic;
    }

    .tp-matrix .selection-tile{
      position: relative;
      width: calc(var(--tile-size) * 0.7);
      height: calc(var(--tile-size) * 0.7);
      border-radius: var(--card-radius);
      background: var(--hover-bg);
      color: var(--text-active);
      border: 2px solid var(--outline-color);
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      gap: 8px;
      padding: 12px;
      text-align: center;
      box-shadow: 0 10px 20px rgba(0, 0, 0, 0.18);
      font-size: 13px;
    }

    .tp-matrix .selection-tile__remove{
      position: absolute;
      top: 4px;
      right: 6px;
      border: none;
      background: none;
      color: #ffffff;
      font-size: 16px;
      cursor: pointer;
      line-height: 1;
    }

    .tp-matrix .selection-tile__icon{ width: 40px; height: 40px; }
    .tp-matrix .selection-tile__icon img{
      max-width: 100%;
      max-height: 100%;
      display: block;
      margin: 0 auto;
    }
    .tp-matrix .selection-tile__label{ line-height: 1.2; }

    .tp-matrix .hover-popup{
      position: absolute;
      max-width: 320px;
      background: #ffffff;
      color: #333333;
      border-radius: 14px;
      padding: 14px 16px;
      box-shadow: 0 18px 40px rgba(0, 0, 0, 0.35);
      z-index: 1000;
      opacity: 0;
      pointer-events: none;
      transform: translate(-50%, 4px);
      transition: opacity var(--transition-fast) ease;
      font-size: 14px;
      line-height: 1.5;
    }

    .tp-matrix .hover-popup.is-visible{
      opacity: 1;
      pointer-events: auto;
    }

    .tp-matrix .hover-popup__close{
      position: absolute;
      top: 6px;
      right: 10px;
      background: transparent;
      border: none;
      font-size: 20px;
      line-height: 1;
      cursor: pointer;
    }

    .tp-matrix .hover-popup__title{
      font-weight: 600;
      margin-bottom: 6px;
      font-size: 15px;
    }

    .tp-matrix .hover-popup__footer{ display: none; }
    .tp-matrix .hover-popup__action{ display: none; }
	
	/* Intro text above matrix */
.matrix-intro {
  max-width: 900px;
  margin: 0 auto 28px;
  text-align: center;
}

.matrix-intro h2 {
  margin: 0 0 10px;
  font-size: 36px;
  font-weight: 700;
  line-height: 1.15;
  color: #111827;
}

.matrix-intro p {
  margin: 0;
  font-size: 15px;
  color: #6b7280;
}

.matrix-intro p strong {
  font-weight: 700;
}

/* mobile tweak */
@media (max-width: 768px) {
  .matrix-intro h2 {
    font-size: 24px;
  }
  .matrix-intro p {
    font-size: 14px;
  }
}

/* Intro text above matrix */
.matrix-intro {
  max-width: 900px;
  margin: 0 auto 28px;
  text-align: center;
}

.matrix-intro h2 {
  margin: 0 0 10px;
  font-size: 36px;
  font-weight: 700;
  line-height: 1.15;
  color: #111827;
}

.matrix-intro p {
  margin: 0;
  font-size: 15px;
  color: #6b7280;
}

.matrix-intro p strong {
  font-weight: 700;
}

/* mobile tweak */
@media (max-width: 768px) {
  .matrix-intro h2 {
    font-size: 24px;
  }
  .matrix-intro p {
    font-size: 14px;
  }
}

/* Lead capture card under matrix */
.lead-card {
  width: 100%;
  max-width: 900px;
  margin: 8px auto 0;
  background: #ffffff;
  border-radius: 26px;
  padding: 22px 28px;
  box-shadow: 0 18px 45px rgba(15, 23, 42, 0.12);
  display: flex;
  justify-content: center;
}

.lead-form {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
  justify-content: center;
}

.lead-form__field {
  flex: 1 1 10px;
}

.lead-form__field input {
  width: 100%;
  padding: 11px 14px;
  border-radius: 8px;
  border: 1px solid #e5e7eb;
  font-size: 14px;
  outline: none;
  background: #f9fafb;
}

.lead-form__field input:focus {
  border-color: #f97316;
  box-shadow: 0 0 0 1px rgba(249, 115, 22, 0.25);
  background: #ffffff;
}

.lead-form__submit {
  padding: 11px 34px;
  border-radius: 999px;
  border: none;
  background: #f97316; /* match Try For Free */
  color: #ffffff;
  font-weight: 600;
  font-size: 14px;
  cursor: pointer;
  white-space: nowrap;
}

.lead-form__submit:hover {
  filter: brightness(0.95);
}

/* mobile layout */
@media (max-width: 768px) {
  .lead-card {
    max-width: 100%;
    padding: 18px 16px;
  }
  .lead-form {
    flex-direction: column;
    align-items: stretch;
  }
  .lead-form__submit {
    width: 100%;
    text-align: center;
  }
}


    @media (max-width: 768px){
      .tp-matrix{
        --tile-size: 150px;
        --tile-gap: 12px;
      }

      .tp-matrix .page{
        align-items: center;
        justify-content: flex-start;
        gap: 16px;
        padding: 16px 12px 220px;
      }

      .tp-matrix .matrix{
        flex-direction: column;
        align-items: stretch;
        gap: 12px;
      }

      .tp-matrix .category-column{
        width: 100%;
        max-width: 420px;
        margin: 0 auto;
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        grid-template-rows: auto;
        grid-auto-rows: var(--tile-size);
        column-gap: var(--tile-gap);
        row-gap: var(--tile-gap);
        justify-items: center;
      }

      .tp-matrix .category-title{
        grid-column: 1 / -1;
        width: 100%;
        text-align: left;
        padding: 10px 16px;
        border-radius: 12px;
        border-top: none;
        border-bottom: 1px solid #ddd;
        background: #ffffff;
        display: flex;
        align-items: center;
        justify-content: space-between;
        cursor: pointer;
      }

      .tp-matrix .category-title::after{ content: "▾"; font-size: 18px; }
      .tp-matrix .category-column.is-collapsed .category-title::after{ content: "▸"; }

      .tp-matrix .category-column.is-collapsed .status-card{ display: none; }
      .tp-matrix .category-column > .status-card{ width: 100%; }
      .tp-matrix .category-column > .status-card:nth-child(6){
        grid-column: 1 / -1;
        justify-self: center;
      }

      .tp-matrix .selection-panel{
        position: fixed;
        left: 0;
        right: 0;
        bottom: 0;
        width: 100%;
        max-width: none;
        border-radius: 16px 16px 0 0;
        padding: 10px 12px calc(10px + env(safe-area-inset-bottom, 0px));
        z-index: 900;
        box-shadow: 0 -10px 30px rgba(0, 0, 0, 0.18);
      }

      .tp-matrix .selection-panel small{ display: none; }

      .tp-matrix .selection-panel h2{
        margin: 0 0 8px;
        font-size: 16px;
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 10px;
      }

      .tp-matrix #selectionList{ justify-content: center; gap: 8px; }

      .tp-matrix .selection-tile{
        width: 64px;
        height: 64px;
        border-radius: 16px;
        padding: 6px;
        gap: 6px;
        font-size: 10px;
      }

      .tp-matrix .selection-tile__icon{ width: 28px; height: 28px; }

      .tp-matrix .selection-tile__label{
        font-size: 10px;
        max-width: 100%;
        overflow: hidden;
        text-overflow: ellipsis;
        white-space: nowrap;
      }

      .tp-matrix .selection-tile__remove{
        top: -2px;
        right: 4px;
        font-size: 18px;
      }

      .tp-matrix .hover-popup{
        width: 90vw;
        max-width: 90vw;
        max-height: 45vh;
        overflow: hidden;
        display: flex;
        flex-direction: column;
        padding: 14px 16px 12px;
      }

      .tp-matrix .hover-popup__scroll{
        overflow-y: auto;
        padding-right: 2px;
      }

      .tp-matrix .hover-popup__footer{
        display: block;
        margin-top: 12px;
      }

      .tp-matrix .hover-popup__action{
        display: inline-flex;
        align-items: center;
        justify-content: center;
        width: 100%;
        border: none;
        background: #000;
        color: #fff;
        padding: 14px 12px;
        border-radius: 12px;
        font-weight: 700;
        letter-spacing: 0.2px;
        cursor: pointer;
      }

      .tp-matrix .hover-popup__action.is-added{
        background: #111;
        opacity: 0.92;
      }
    }

    @media (max-height: 900px){
      .tp-matrix{ --tile-size: 150px; --tile-gap: 12px; }
      .tp-matrix .status-card__label{ font-size: 18px; }
    }

    @media (max-height: 800px){
      .tp-matrix{ --tile-size: 140px; --tile-gap: 8px; }
      .tp-matrix .status-card__label{ font-size: 16px; }
      .tp-matrix .selection-panel{ padding: 10px 14px; }
      .tp-matrix .selection-panel h2{ font-size: 16px; }
      .tp-matrix .selection-panel small{ font-size: 12px; }
    }


/* ===== Footer ===== */
.site-footer {
  background: #f9f9fb;
  border-top: 1px solid #e2e2ea;
  padding: 24px 20px;
  font-family: "Roboto", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 14px;
  color: #444;
}

.site-footer .footer-inner {
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}

.footer-left {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.footer-logo img {
  height: 40px;           /* adjust if needed */
  display: block;
}

.footer-left p {
  margin: 0;
  line-height: 1.4;
}

.footer-right {
  display: flex;
  flex-direction: column;
  gap: 6px;
  text-align: right;
}

.footer-copy {
  margin: 0;
}

.footer-nav {
  display: flex;
  gap: 16px;
  justify-content: flex-end;
  flex-wrap: wrap;
}

.footer-nav a {
  text-decoration: none;
  color: #2653a6;
  font-weight: 500;
}

.footer-nav a:hover {
  text-decoration: underline;
}

/* Mobile layout */
@media (max-width: 768px) {
  .site-footer .footer-inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .footer-right {
    text-align: left;
    align-items: flex-start;
  }
}


/* ===== Thank-you modal ===== */
.thankyou-modal {
  position: fixed;
  inset: 0;
  background: rgba(15, 23, 42, 0.55);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 2000; /* above header & matrix popup */
}

.thankyou-modal.is-visible {
  display: flex;
}

.thankyou-modal__inner {
  background: #ffffff;
  border-radius: 20px;
  padding: 24px 28px;
  max-width: 420px;
  width: calc(100% - 40px);
  text-align: center;
  box-shadow: 0 20px 45px rgba(15, 23, 42, 0.25);
}

.thankyou-modal__inner h3 {
  margin: 0 0 8px;
  font-size: 20px;
  font-weight: 600;
}

.thankyou-modal__inner p {
  margin: 0 0 16px;
  font-size: 14px;
  color: #4b5563;
}

.thankyou-modal__close {
  border: none;
  border-radius: 999px;
  padding: 10px 22px;
  font-weight: 600;
  font-size: 14px;
  cursor: pointer;
  background: #f97316; /* same orange as Try For Free */
  color: #ffffff;
}

.thankyou-modal__close:hover {
  filter: brightness(0.95);
}


/* ===== Footer Legal dropdown ===== */

.footer-legal {
  position: relative;
}

.footer-legal-toggle {
  background: none;
  border: 0;
  padding: 0;
  font: inherit;
  color: #2653a6;
  font-weight: 500;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  text-decoration: none;
}

.footer-legal-toggle:hover {
  text-decoration: underline;
}

.footer-legal-caret {
  font-size: 10px;
}

/* Dropdown menu */
.footer-legal-menu {
  position: absolute;
  right: 0;
  bottom: 100%;
  margin-bottom: 6px;
  list-style: none;
  padding: 6px 0;
  min-width: 180px;
  background: #ffffff;
  border-radius: 10px;
  box-shadow: 0 12px 26px rgba(15, 23, 42, 0.25);
  display: none;
  z-index: 20;
}

.footer-legal-menu li a {
  display: block;
  padding: 7px 12px;
  color: #111827;
  text-decoration: none;
  font-size: 13px;
}

.footer-legal-menu li a:hover {
  background: #f3f4f6;
}

/* When open */
.footer-legal.is-open .footer-legal-menu {
  display: block;
}

/* Mobile: keep it usable */
@media (max-width: 768px) {
  .footer-legal-menu {
    right: auto;
    left: 0;
  }
}

* Request demo POPUP */
.req_demo_popup { position:fixed; left:0; top:0; display:none; z-index:9999; padding:15px 20px; background-color:#0b4e9a; border:7px solid #e1e1e1; border-radius:15px; -moz-border-radius:15px; -webkit-border-radius:15px; khtml-border-radius:15px; width: 450px; height: auto;}

.req_demo_popup .req_demo_close { font-size: 20px; font-weight: bold; color: #ff0000; float: right; cursor: pointer; margin: 0; }
.req_demo_popup .req_demo_content { padding: 10px; color:#FFFFFF;}
.req_demo_popup .req_demo_content input { margin-bottom: 10px; width: 100%; height: 40px; border:none; padding: 3px 10px;;  border-radius:5px; -moz-border-radius:5px; -webkit-border-radius:5px; color: #000; font-size: 14px; margin-top:5px;}
.req_demo_popup .req_demo_content input:focus{outline:none;}
.req_demo_popup .req_demo_content .button {font-size:20px!important; width:100%; display:block; padding: 10px 20px; text-align: center; margin: 12px 5px 0 0; color: #ffffff; background: #ed7d31; cursor: pointer; font-size: 12px; border-radius:5px; -moz-border-radius:5px; -webkit-border-radius:5px;}


@media screen and (min-width:100px) and (max-width:767px){
.req_demo_popup{max-width: 300px!important; left: 0!important; right: 0!important; margin: auto!important;}
}

#imgLoader, #imgLoaderCon, #imgLoaderReq, #imgLoader1, #imgLoader2, #imgLoader22 {display: none;}


#msg_common {
top: 5px;
    left: 559.391px;
    display: none;     
    
    position: fixed;
    font-family: Verdana, Geneva, sans-serif;
    color: #ffffff;
    font-size: 16px;
    padding: 10px;
    background: #E46F11;
    z-index: 10000;
    border-radius: 5px;
    -moz-border-radius: 5px;
    -webkit-border-radius: 5px;    
}
 #msg_common #msg_common_title {
    font-size: 22px;
    font-weight: bold;
    text-align: center;
}

.video-modal {
      position: fixed;
      inset: 0;
      background: rgba(0, 0, 0, 0.75);
      display: none;
      align-items: center;
      justify-content: center;
      z-index: 9999;
    }
    .video-modal.is-visible {
      display: flex;
    }
    .video-modal__inner {
      background: #000;
      max-width: 960px;
      width: 90%;
      border-radius: 12px;
      padding: 16px;
      box-shadow: 0 18px 45px rgba(0, 0, 0, 0.35);
    }
    .video-modal__body {
      position: relative;
      padding-top: 56.25%; /* 16:9 */
    }
    .video-modal__frame {
      position: absolute;
      inset: 0;
    }
    .video-modal__frame iframe {
      width: 100%;
      height: 100%;
      border: 0;
    }
    .video-modal__close {
      border: none;
      background: transparent;
      color: #fff;
      font-size: 24px;
      cursor: pointer;
      margin-left: auto;
      display: block;
      line-height: 1;
    }