@media (min-width: 1921px) {

  /* Page CSS */
  * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }

  .mobile {
    display: none !important;
  }

  html,
  body {
    font-family: "IBM Plex Sans", monospace;
    height: auto;
    overflow-x: hidden;
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
    text-size-adjust: 100%;
    line-height: 1.5;
    letter-spacing: -2%;
    
  }

  section {
    height: 100vh;
    background-size: cover;
    background-position: center;
    display: flex;
    justify-content: center;
    align-items: center;
    color: black;
    font-size: 18px;
  }

  h1 {
    font-size: 60px;
    font-weight: 500;
  }

  h2 {
    font-size: 30px;
    font-weight: 500;
  }

  h3 {
    font-size: 24px;
    font-weight: 400;
  }

  b {
    font-weight: 500;
  }

  p,
  li,
  th,
  details,
  summary {
    font-size: 22px;
    font-weight: 400;
  }

  a {
    width: 400px;
    height: 60px;
    border-radius: 9px;
    box-shadow: 0 4px 4px 2px rgba(0, 0, 0, 0.4);
    text-align: center;
    line-height: 60px;
    font-size: 20px;
    cursor: pointer;
    transition: ease-out 0.1s;

    color: black;
    text-decoration: none;
  }

  a:hover {
    transform: scale(1.04);
    filter: brightness(0.7);
  }

  a:active {
    filter: brightness(0.4);
    transform: scale(0.95);
  }

  /* Top Nav CSS*/
  .top-nav {
    z-index: 999999;
    backdrop-filter: blur(20px);
    display: flex;
    position: fixed;
    width: 100%;
    height: 72px;
    justify-content: space-between;
    align-items: center;
    padding: 0 40px;
  }

  .top-nav a {
    font-size: 20px !important;
  }

  /* Hero Section CSS */
  .left {
    display: flex;
    gap: 30px;
    align-items: center;
  }

  .login {
    display: block;
    box-shadow: none;
    border-radius: 12px;
    border: 1px solid black;
    text-align: center;
    width: 110px;
    height: 50px;
    line-height: 50px;
    font-size: 24px;
  }

  .right {
    display: flex;
    gap: 0px;
    justify-content: flex-end;
    align-items: center;
    gap: 20px;
  }

  .right a {
    width: auto;
    box-shadow: none;
    font-size: 24px;
    opacity: 0.5;
  }

  .demo-button {
    background-color: #222223;
    color: white;
  }

  .hero-section>div {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 271px;
  }

  .hero-section>div>div {
    display: flex;
    width: 35%;
    flex-direction: column;
    justify-content: flex-end;
    align-items: flex-start;
    gap: 14px;
  }

  .hero-section>div>div p {
    margin: 30px 0;
  }

  .hero-section video {
    width: 400px;
    height: 650px;
  }

  video {
    box-shadow: 0 8px 8px 0 rgba(0, 0, 0, 0.25);
    border-radius: 12px;
    object-fit: cover;
  }

  /* Clients Slider CSS */
  .clients {
    height: 360px;
  }

  .logo-slider {
    overflow: hidden;
    width: 100%;
    white-space: nowrap;
    background: #fff;
    padding: 20px 0;
  }

  .logo-track {
    display: flex;
    gap: 80px;
    animation: scroll 30s linear infinite;
  }

  .logo-track img {
    height: 150px;
    opacity: 0.7;
    filter: grayscale(100%);
    transition: opacity 0.3s;
  }

  .logo-track img:hover {
    opacity: 1;
    filter: grayscale(0%);
  }

  @keyframes scroll {
    0% {
      transform: translateX(0);
    }

    100% {
      transform: translateX(-50%);
    }
  }

  /* Problem page CSS */
  .problem {
    background-color: #fafafa;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 200px;
  }

  .problem span {
    font-size: 40px;
    opacity: 0.5;
  }

  .problem p {
    font-size: 24px;
  }

  .problem>div {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 136px;
  }

  .problem>div>div {
    width: 50%;
  }

  .problem-icons {
    width: 100% !important;
    height: 200px;
    display: flex;
    justify-content: space-between;
    text-align: center;
  }

  /* Data Page CSS */
  .data {
    padding: 84px;
    display: flex;
    flex-direction: column;
    gap: 91px;
    align-items: flex-start;
    justify-content: center;
  }

  .data>div {
    width: 50%;
  }

  .data-graphs {
    display: flex;
    flex-direction: column;
    gap: 67px;
    width: 100% !important;
    align-items: center;
    justify-content: center;
  }

  .data-graphs>p {
    width: 40%;
    text-align: center;
  }

  .data-graphs p {
    font-size: 22px;
  }

  .data-graphs>div {
    display: flex;
    gap: 132px;
  }

  .data-graphs>div>div {
    display: flex;
    flex-direction: column;
    text-align: center;
    gap: 10px;
  }

  .data-graphs img {
    width: 700px;

    border-radius: 4px;
    box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.25);
    background-color: #d9d9d9;

    cursor: default;
    transition: 0.3s ease;
    filter: grayscale(50%);
  }

  .data-graphs img:hover {
    width: 700px;
    border-radius: 4px;
    box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.5);
    transform: scale(1.5);
    filter: grayscale(0%);
    z-index: 9999;
  }

  /* Solution Page CSS */
  .solution {
    margin-top: 160px;
    padding: 0 200px;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    flex-direction: column;
    gap: 128px;
  }

  .solution p {
    width: 100%;
  }

  .solution-text {
    width: 50%;
  }

  .solution-main {
    display: flex;
    flex-direction: column;
    gap: 16px;
  }

  .solution-main>div {
    display: flex;
    gap: 60px;
    align-items: center;
  }

  .solution-main>div>div {
    width: 400px;
    height: 120px;
  }

  .solution-main video {
    width: 100%;
    height: 100%;

    opacity: 0.8;
    filter: grayscale(85%);
    transition: opacity 0.2s;
  }

  .solution-main video:hover {
    opacity: 1;
    filter: grayscale(0%);
  }

  /* Why It Matters Page CSS */
  .whyitmatters {
    background-color: #fafafa;
    padding: 0 440px;
    text-align: center;
    margin: 120px 0px;
  }

  .whyitmatters>div {
    display: flex;
    flex-direction: column;
    gap: 90px;
  }

  .whyitmatters-bottom,
  .whyitmatters-top {
    text-align: center !important;
  }

  .whyitmatters>div>div {
    display: flex;
    text-align: left;
    gap: 120px;
    justify-content: space-between;
    align-content: space-between;
  }

  .whyitmatters>div>div>div {
    display: flex;
    flex-direction: column;
    text-align: left;
    justify-content: flex-start;
    gap: 60px;
  }

  /* Case Study Page CSS */
  .casestudy {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
  }

  #slider-container {
    width: 100%;
    min-height: 100%;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .slide {
    position: absolute;
    width: 100%;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.4s ease;
    padding: 0 300px !important;
    /* fade transition */
  }

  /* Active slide is visible */
  .slide.active {
    opacity: 1 !important;
    visibility: visible !important;
    pointer-events: auto;
  }

  #rightbutton,
  #leftbutton {
    position: absolute;
    top: 50%;
    cursor: pointer;
    opacity: 0.5;
    transition: 0.15s ease-out;
    z-index: 10;
  }

  #rightbutton {
    right: 160px;
  }

  #leftbutton {
    left: 160px;
  }

  #rightbutton:hover,
  #leftbutton:hover {
    transform: scale(1.2);
    filter: brightness(0.7);
    opacity: 0.7;
  }

  #rightbutton:active,
  #leftbutton:active {
    transform: scale(0.95);
    filter: brightness(0.4);
    opacity: 1;
  }

  .casestudy video {
    filter: saturate(0.65);
    transition: 0.3s;
  }

  .casestudy video:hover {
    filter: saturate(1);
  }

  /* Easy Install Page CSS */
  .easyinstall {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 200px 100px;
  }

  .easyinstall>div {
    width: 100%;
    height: 100%;
    background-color: #f8f8f8;
    box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.25);
    display: flex;
    padding: 80px 460px;
    flex-direction: column;
    align-items: flex-start;
    justify-content: space-between;
  }

  /* Pricing Page CSS */
  .pricing {
    padding: 160px 110px;
    height: 180%;
  }

  .pricing div {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
  }

  .pricing div {
    width: 100%;
    height: auto;
  }

  .pricing-table {
    width: 100%;
    margin: 120px 0;
  }

  .pricing-table table {
    width: 100%;
    border-collapse: collapse;
    table-layout: fixed;
  }

  .pricing-table th {
    text-align: left;
    padding: 2px 20px;
    color: rgba(0, 0, 0, 0.8);
    font-size: 18px !important;
    vertical-align: middle;
    font-style: italic;
  }

  .pricing-table td {
    text-align: left;
    padding: 2px 20px;
    color: rgba(0, 0, 0, 0.8);
    font-size: 18px !important;
    vertical-align: middle;
    font-style: italic;
  }

  .pricing-table td {
    text-align: center;
  }

  .pricing-table tr:first-child th {
    background: white;
    font-size: 22px;
    font-style: normal;
    font-weight: 600;
  }

  .pricing-table tr:nth-child(2) th {
    background: white;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    color: rgba(0, 0, 0, 0.6);
  }

  .pricing-table tr:first-child td {
    background: white;
    font-size: 22px;
    font-style: normal;
    font-weight: 600;
  }

  .pricing-table tr:nth-child(2) td {
    background: white;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    color: rgba(0, 0, 0, 0.6);
  }

  .pricing-table .material-symbols-outlined {
    font-size: 22px;
    vertical-align: middle;
  }

  .pricing-table table tr>*:nth-child(3) {
    position: relative;
  }

  /* Add subtle hover row effect if desired */
  .pricing-table tr:hover {
    background-color: #ededed;
  }

  .pricing-table tr:nth-child(odd) {
    background-color: #e1e1e1;
  }

  .pricing-table tr:last-child th {
    background: white;
    color: rgba(0, 0, 0, 0.7);
    font-weight: 400;
  }

  .pricing-table tr:last-child td {
    background: white;
    color: rgba(0, 0, 0, 0.7);
    font-weight: 400;
  }

  /* Final CTA Page CSS */
  .finalcta {
    background-image: url("attached_assets/finalctabg.png");
    background-repeat: no-repeat;
    background-size: cover;
  }

  .finalcta {
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
  }

  .finalcta>div {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    gap: 70px;
  }

  .finalcta>div>div {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }

  /* Footer CSS */
  .footer {
    background-color: black;
    padding: 50px 300px;
    height: 50%;
    color: rgba(255, 255, 255, 0.8);
  }

  .footer a {
    color: white;
  }

  .footer>div {
    width: 100%;
    height: 100%;
    gap: 200px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
  }

  .footer>div>div {
    width: 100%;
    height: 100%;
    display: flex;
  }

  .footer-2 {
    justify-content: flex-end;
    align-items: flex-end;
    gap: 38px;
  }

  .footer-2 p,
  .footer-2 a {
    font-size: 14px !important;
    width: auto;
    cursor: pointer;
    line-height: 20px;
  }

  .footer-2 a {
    line-height: 100px;
  }

  .footer>div>div>div {
    width: 100%;
    height: 100%;
  }

  .footer-3 p {
    font-size: 20px;
    line-height: 30px;
  }

  .footer-4 {
    display: flex;
    justify-content: right;
    gap: 80px;
  }

  .footer-4 p,
  .footer-4 a {
    font-size: 20px;

    text-align: left;
    width: auto;
  }

  .footer-4 p {
    font-weight: 600;
  }

  .footer-4 div {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    height: 80px;
  }
}

@media (max-width: 1920px) {

  /* Page CSS */
  * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }

  .mobile {
    display: none !important;
  }

  html,
  body {
    font-family: "IBM Plex Sans", monospace;
    height: auto;
    overflow-x: hidden;
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
    text-size-adjust: 100%;
    line-height: 1.5;
    letter-spacing: -2%;
    
  }

  section {
    height: 100vh;
    background-size: cover;
    background-position: center;
    display: flex;
    justify-content: center;
    align-items: center;
    color: black;
    font-size: 18px;
  }

  h1 {
    font-size: 60px;
    font-weight: 500;
  }

  h2 {
    font-size: 30px;
    font-weight: 500;
  }

  h3 {
    font-size: 24px;
    font-weight: 400;
  }

  b {
    font-weight: 500;
  }

  p,
  li,
  th,
  details,
  summary {
    font-size: 22px;
    font-weight: 400;
  }

  a {
    width: 400px;
    height: 60px;
    border-radius: 9px;
    box-shadow: 0 4px 4px 2px rgba(0, 0, 0, 0.4);
    text-align: center;
    line-height: 60px;
    font-size: 20px;
    cursor: pointer;
    transition: ease-out 0.1s;

    color: black;
    text-decoration: none;
  }

  a:hover {
    transform: scale(1.04);
    filter: brightness(0.7);
  }

  a:active {
    filter: brightness(0.4);
    transform: scale(0.95);
  }

  /* Top Nav CSS*/
  .top-nav {
    z-index: 999999;
    backdrop-filter: blur(20px);
    display: flex;
    position: fixed;
    width: 100%;
    height: 72px;
    justify-content: space-between;
    align-items: center;
    padding: 0 40px;
  }

  .top-nav a {
    font-size: 20px !important;
  }

  /* Hero Section CSS */
  .left {
    display: flex;
    gap: 30px;
    align-items: center;
  }

  .login {
    display: block;
    box-shadow: none;
    border-radius: 12px;
    border: 1px solid black;
    text-align: center;
    width: 110px;
    height: 50px;
    line-height: 50px;
    font-size: 24px;
  }

  .right {
    display: flex;
    gap: 0px;
    justify-content: flex-end;
    align-items: center;
    gap: 20px;
  }

  .right a {
    width: auto;
    box-shadow: none;
    font-size: 24px;
    opacity: 0.5;
  }

  .demo-button {
    background-color: #222223;
    color: white;
  }

  .hero-section>div {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 271px;
  }

  .hero-section>div>div {
    display: flex;
    width: 35%;
    flex-direction: column;
    justify-content: flex-end;
    align-items: flex-start;
    gap: 14px;
  }

  .hero-section>div>div p {
    margin: 30px 0;
  }

  .hero-section video {
    width: 400px;
    height: 650px;
  }

  video {
    box-shadow: 0 8px 8px 0 rgba(0, 0, 0, 0.25);
    border-radius: 12px;
    object-fit: cover;
  }

  /* Clients Slider CSS */
  .clients {
    height: 360px;
  }

  .logo-slider {
    overflow: hidden;
    width: 100%;
    white-space: nowrap;
    background: #fff;
    padding: 20px 0;
  }

  .logo-track {
    display: flex;
    gap: 80px;
    animation: scroll 30s linear infinite;
  }

  .logo-track img {
    height: 150px;
    opacity: 0.7;
    filter: grayscale(100%);
    transition: opacity 0.3s;
  }

  .logo-track img:hover {
    opacity: 1;
    filter: grayscale(0%);
  }

  @keyframes scroll {
    0% {
      transform: translateX(0);
    }

    100% {
      transform: translateX(-50%);
    }
  }

  /* Problem page CSS */
  .problem {
    background-color: #fafafa;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 200px;
  }

  .problem span {
    font-size: 40px;
    opacity: 0.5;
  }

  .problem p {
    font-size: 24px;
  }

  .problem>div {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 136px;
  }

  .problem>div>div {
    width: 50%;
  }

  .problem-icons {
    width: 100% !important;
    height: 200px;
    display: flex;
    justify-content: space-between;
    text-align: center;
  }

  /* Data Page CSS */
  .data {
    padding: 84px;
    display: flex;
    flex-direction: column;
    gap: 91px;
    align-items: flex-start;
    justify-content: center;
  }

  .data>div {
    width: 50%;
  }

  .data-graphs {
    display: flex;
    flex-direction: column;
    gap: 67px;
    width: 100% !important;
    align-items: center;
    justify-content: center;
  }

  .data-graphs>p {
    width: 40%;
    text-align: center;
  }

  .data-graphs p {
    font-size: 22px;
  }

  .data-graphs>div {
    display: flex;
    gap: 132px;
  }

  .data-graphs>div>div {
    display: flex;
    flex-direction: column;
    text-align: center;
    gap: 10px;
  }

  .data-graphs img {
    width: 700px;

    border-radius: 4px;
    box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.25);
    background-color: #d9d9d9;

    cursor: default;
    transition: 0.3s ease;
    filter: grayscale(50%);
  }

  .data-graphs img:hover {
    width: 700px;
    border-radius: 4px;
    box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.5);
    transform: scale(1.5);
    filter: grayscale(0%);
    z-index: 9999;
  }

  /* Solution Page CSS */
  .solution {
    margin-top: 160px;
    padding: 0 200px;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    flex-direction: column;
    gap: 128px;
  }

  .solution p {
    width: 100%;
  }

  .solution-text {
    width: 50%;
  }

  .solution-main {
    display: flex;
    flex-direction: column;
    gap: 16px;
  }

  .solution-main>div {
    display: flex;
    gap: 60px;
    align-items: center;
  }

  .solution-main>div>div {
    width: 400px;
    height: 120px;
  }

  .solution-main video {
    width: 100%;
    height: 100%;

    opacity: 0.8;
    filter: grayscale(85%);
    transition: opacity 0.2s;
  }

  .solution-main video:hover {
    opacity: 1;
    filter: grayscale(0%);
  }

  /* Why It Matters Page CSS */
  .whyitmatters {
    background-color: #fafafa;
    padding: 0 440px;
    text-align: center;
    margin: 120px 0px;
  }

  .whyitmatters>div {
    display: flex;
    flex-direction: column;
    gap: 90px;
  }

  .whyitmatters-bottom,
  .whyitmatters-top {
    text-align: center !important;
  }

  .whyitmatters>div>div {
    display: flex;
    text-align: left;
    gap: 120px;
    justify-content: space-between;
    align-content: space-between;
  }

  .whyitmatters>div>div>div {
    display: flex;
    flex-direction: column;
    text-align: left;
    justify-content: flex-start;
    gap: 60px;
  }

  /* Case Study Page CSS */
  .casestudy {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
  }

  #slider-container {
    width: 100%;
    min-height: 100%;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .slide {
    position: absolute;
    width: 100%;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.4s ease;
    padding: 0 300px !important;
    /* fade transition */
  }

  /* Active slide is visible */
  .slide.active {
    opacity: 1 !important;
    visibility: visible !important;
    pointer-events: auto;
  }

  #rightbutton,
  #leftbutton {
    position: absolute;
    top: 50%;
    cursor: pointer;
    opacity: 0.5;
    transition: 0.15s ease-out;
    z-index: 10;
  }

  #rightbutton {
    right: 160px;
  }

  #leftbutton {
    left: 160px;
  }

  #rightbutton:hover,
  #leftbutton:hover {
    transform: scale(1.2);
    filter: brightness(0.7);
    opacity: 0.7;
  }

  #rightbutton:active,
  #leftbutton:active {
    transform: scale(0.95);
    filter: brightness(0.4);
    opacity: 1;
  }

  .casestudy video {
    filter: saturate(0.65);
    transition: 0.3s;
  }

  .casestudy video:hover {
    filter: saturate(1);
  }

  /* Easy Install Page CSS */
  .easyinstall {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 200px 100px;
  }

  .easyinstall>div {
    width: 100%;
    height: 100%;
    background-color: #f8f8f8;
    box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.25);
    display: flex;
    padding: 80px 460px;
    flex-direction: column;
    align-items: flex-start;
    justify-content: space-between;
  }

  /* Pricing Page CSS */
  .pricing {
    padding: 160px 110px;
    height: 180%;
  }

  .pricing div {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
  }

  .pricing div {
    width: 100%;
    height: auto;
  }

  .pricing-table {
    width: 100%;
    margin: 120px 0;
  }

  .pricing-table table {
    width: 100%;
    border-collapse: collapse;
    table-layout: fixed;
  }

  .pricing-table th {
    text-align: left;
    padding: 2px 20px;
    color: rgba(0, 0, 0, 0.8);
    font-size: 18px !important;
    vertical-align: middle;
    font-style: italic;
  }

  .pricing-table td {
    text-align: left;
    padding: 2px 20px;
    color: rgba(0, 0, 0, 0.8);
    font-size: 18px !important;
    vertical-align: middle;
    font-style: italic;
  }

  .pricing-table td {
    text-align: center;
  }

  .pricing-table tr:first-child th {
    background: white;
    font-size: 22px;
    font-style: normal;
    font-weight: 600;
  }

  .pricing-table tr:nth-child(2) th {
    background: white;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    color: rgba(0, 0, 0, 0.6);
  }

  .pricing-table tr:first-child td {
    background: white;
    font-size: 22px;
    font-style: normal;
    font-weight: 600;
  }

  .pricing-table tr:nth-child(2) td {
    background: white;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    color: rgba(0, 0, 0, 0.6);
  }

  .pricing-table .material-symbols-outlined {
    font-size: 22px;
    vertical-align: middle;
  }

  .pricing-table table tr>*:nth-child(3) {
    position: relative;
  }

  /* Add subtle hover row effect if desired */
  .pricing-table tr:hover {
    background-color: #ededed;
  }

  .pricing-table tr:nth-child(odd) {
    background-color: #e1e1e1;
  }

  .pricing-table tr:last-child th {
    background: white;
    color: rgba(0, 0, 0, 0.7);
    font-weight: 400;
  }

  .pricing-table tr:last-child td {
    background: white;
    color: rgba(0, 0, 0, 0.7);
    font-weight: 400;
  }

  /* Final CTA Page CSS */
  .finalcta {
    background-image: url("attached_assets/finalctabg.png");
    background-repeat: no-repeat;
    background-size: cover;
  }

  .finalcta {
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
  }

  .finalcta>div {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    gap: 70px;
  }

  .finalcta>div>div {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }

  /* Footer CSS */
  .footer {
    background-color: black;
    padding: 50px 150px;
    height: 50%;
    color: rgba(255, 255, 255, 0.8);
  }

  .footer a {
    color: white;
  }

  .footer>div {
    width: 100%;
    height: 100%;
    gap: 200px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
  }

  .footer>div>div {
    width: 100%;
    height: 100%;
    display: flex;
  }

  .footer-2 {
    justify-content: flex-end;
    align-items: flex-end;
    gap: 38px;
  }

  .footer-2 p,
  .footer-2 a {
    font-size: 14px !important;
    width: auto;
    cursor: pointer;
    line-height: 20px;
  }

  .footer-2 a {
    line-height: 100px;
  }

  .footer>div>div>div {
    width: 100%;
    height: 100%;
  }

  .footer-3 p {
    font-size: 20px;
    line-height: 30px;
  }

  .footer-4 {
    display: flex;
    justify-content: right;
    gap: 80px;
  }

  .footer-4 p,
  .footer-4 a {
    font-size: 20px;

    text-align: left;
    width: auto;
  }

  .footer-4 p {
    font-weight: 600;
  }

  .footer-4 div {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    height: 80px;
  }
}

@media (max-width: 1440px) {

  /* Page CSS */
  * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }


  .mobile {
    display: none !important;
  }

  html,
  body {
    font-family: "IBM Plex Sans", monospace;
    height: 100%;
    overflow-x: hidden;
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
    text-size-adjust: 100%;
    line-height: 1.5;
    letter-spacing: -2%;
  }

  section {
    height: 100vh;
    background-size: cover;
    background-position: center;
    display: flex;
    justify-content: center;
    align-items: center;
    color: black;
    font-size: 18px;
  }

  h1 {
    font-size: 44px;
    font-weight: 500;
  }

  h2 {
    font-size: 30px;
    font-weight: 500;
  }

  h3 {
    font-size: 24px;
    font-weight: 400;
  }

  b {
    font-weight: 500;
  }

  p,
  li,
  th,
  details,
  summary {
    font-size: 22px;
    font-weight: 400;
  }

  a {
    width: 400px;
    height: 60px;
    border-radius: 9px;
    box-shadow: 0 4px 4px 2px rgba(0, 0, 0, 0.4);
    text-align: center;
    line-height: 60px;
    font-size: 20px;
    cursor: pointer;
    transition: ease-out 0.1s;

    color: black;
    text-decoration: none;
  }

  a:hover {
    transform: scale(1.04);
    filter: brightness(0.7);
  }

  a:active {
    filter: brightness(0.4);
    transform: scale(0.95);
  }

  /* Top Nav CSS*/
  .top-nav {
    z-index: 999999;
    backdrop-filter: blur(20px);
    display: flex;
    position: fixed;
    width: 100%;
    height: 72px;
    justify-content: space-between;
    align-items: center;
    padding: 0 40px;
  }

  .top-nav a {
    font-size: 20px !important;
  }

  /* Hero Section CSS */
  .left {
    display: flex;
    gap: 30px;
    align-items: center;
  }

  .login {
    display: block;
    box-shadow: none;
    border-radius: 12px;
    border: 1px solid black;
    text-align: center;
    width: 110px;
    height: 50px;
    line-height: 50px;
    font-size: 24px;
  }

  .right {
    display: flex;
    gap: 0px;
    justify-content: flex-end;
    align-items: center;
    gap: 20px;
  }

  .right a {
    width: auto;
    box-shadow: none;
    font-size: 24px;
    opacity: 0.5;
  }

  .demo-button {
    background-color: #222223;
    color: white;
  }

  .hero-section>div {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 100px;
  }

  .hero-section>div>div {
    display: flex;
    width: 50%;
    flex-direction: column;
    justify-content: flex-end;
    align-items: flex-start;
    gap: 14px;
  }

  .hero-section>div>div p {
    margin: 30px 0;
  }

  .hero-section video {
    width: 350px;
    height: 650px;
  }

  video {
    box-shadow: 0 8px 8px 0 rgba(0, 0, 0, 0.25);
    border-radius: 12px;
    object-fit: cover;
  }

  /* Clients Slider CSS */
  .clients {
    height: 360px;
  }

  .logo-slider {
    overflow: hidden;
    width: 100%;
    white-space: nowrap;
    background: #fff;
    padding: 20px 0;
  }

  .logo-track {
    display: flex;
    gap: 80px;
    animation: scroll 30s linear infinite;
  }

  .logo-track img {
    height: 150px;
    opacity: 0.7;
    filter: grayscale(100%);
    transition: opacity 0.3s;
  }

  .logo-track img:hover {
    opacity: 1;
    filter: grayscale(0%);
  }

  @keyframes scroll {
    0% {
      transform: translateX(0);
    }

    100% {
      transform: translateX(-50%);
    }
  }

  /* Problem page CSS */
  .problem {
    background-color: #fafafa;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 200px;
  }

  .problem span {
    font-size: 40px;
    opacity: 0.5;
  }

  .problem p {
    font-size: 24px;
  }

  .problem>div {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 136px;
  }

  .problem>div>div {
    width: 70%;
  }

  .problem-icons {
    width: 100% !important;
    height: 200px;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    grid-template-rows: 1fr 1fr;
    justify-content: space-between;
    text-align: center;
    gap: 30px;
  }

  /* Data Page CSS */
  .data {
    padding: 84px;
    display: flex;
    flex-direction: column;
    gap: 91px;
    align-items: flex-start;
    justify-content: center;
  }

  .data>div {
    width: 60%;
  }

  .data-graphs {
    display: flex;
    flex-direction: column;
    gap: 67px;
    width: 100% !important;
    align-items: center;
    justify-content: center;
  }

  .data-graphs>p {
    width: 60%;
    text-align: center;
  }

  .data-graphs p {
    font-size: 22px;
  }

  .data-graphs>div {
    display: flex;
    gap: 132px;
  }

  .data-graphs>div>div {
    display: flex;
    flex-direction: column;
    text-align: center;
    gap: 10px;
  }

  .data-graphs img {
    width: 600px;

    border-radius: 4px;
    box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.25);
    background-color: #d9d9d9;

    cursor: default;
    transition: 0.3s ease;
    filter: grayscale(50%);
  }

  .data-graphs img:hover {
    width: 700px;
    border-radius: 4px;
    box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.5);
    transform: scale(1.5);
    filter: grayscale(0%);
    z-index: 9999;
  }

  /* Solution Page CSS */
  .solution {
    margin-top: 160px;
    padding: 0 200px;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    flex-direction: column;
    gap: 128px;
  }

  .solution p {
    width: 100%;
  }

  .solution-text {
    width: 60%;
  }

  .solution-main {
    display: flex;
    flex-direction: column;
    gap: 16px;
  }

  .solution-main>div {
    display: flex;
    gap: 60px;
    align-items: center;
  }

  .solution-main>div>div {
    width: 400px;
    height: 120px;
  }

  .solution-main video {
    width: 100%;
    height: 100%;

    opacity: 0.8;
    filter: grayscale(85%);
    transition: opacity 0.2s;
  }

  .solution-main video:hover {
    opacity: 1;
    filter: grayscale(0%);
  }

  /* Why It Matters Page CSS */
  .whyitmatters {
    background-color: #fafafa;
    padding: 0 240px;
    text-align: center;
    margin: 120px 0px;
  }

  .whyitmatters>div {
    display: flex;
    flex-direction: column;
    gap: 90px;
  }

  .whyitmatters-bottom,
  .whyitmatters-top {
    text-align: center !important;
  }

  .whyitmatters>div>div {
    display: flex;
    text-align: left;
    gap: 120px;
    justify-content: space-between;
    align-content: space-between;
  }

  .whyitmatters>div>div>div {
    display: flex;
    flex-direction: column;
    text-align: left;
    justify-content: flex-start;
    gap: 60px;
  }

  /* Case Study Page CSS */
  .casestudy {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
  }

  #slider-container {
    width: 100%;
    min-height: 100%;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
  }



  .slide {
    position: absolute;
    width: 100%;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.4s ease;
    padding: 0 200px !important;
    /* fade transition */
  }

  /* Active slide is visible */
  .slide.active {
    opacity: 1 !important;
    visibility: visible !important;
    pointer-events: auto;
  }

  #rightbutton,
  #leftbutton {
    position: absolute;
    top: 50%;
    cursor: pointer;
    opacity: 0.5;
    transition: 0.15s ease-out;
    z-index: 10;
  }

  #rightbutton {
    right: 160px;
  }

  #leftbutton {
    left: 160px;
  }

  #rightbutton:hover,
  #leftbutton:hover {
    transform: scale(1.2);
    filter: brightness(0.7);
    opacity: 0.7;
  }

  #rightbutton:active,
  #leftbutton:active {
    transform: scale(0.95);
    filter: brightness(0.4);
    opacity: 1;
  }

  .casestudy video {
    filter: saturate(0.65);
    transition: 0.3s;
  }

  .casestudy video:hover {
    filter: saturate(1);
  }

  /* Easy Install Page CSS */
  .easyinstall {
    display: flex;
    align-items: center;
    justify-content: center;
    height: auto;
    padding: 200px 100px;
  }

  .easyinstall>div {
    width: 100%;
    height: 100%;
    background-color: #f8f8f8;
    box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.25);
    display: flex;
    padding: 80px 260px;
    flex-direction: column;
    align-items: flex-start;
    justify-content: space-between;
    gap: 100px;
  }

  /* Pricing Page CSS */
  .pricing {
    padding: 160px 110px;
    height: 180%;
  }


  .pricing div {
    width: 100%;
    height: auto;
  }

  .pricing-table {
    width: 100%;
    margin: 120px 0;
  }

  .pricing-table table {
    width: 100%;
    border-collapse: collapse;
    table-layout: fixed;
  }

  .pricing-table th {
    text-align: left;
    padding: 2px 20px;
    color: rgba(0, 0, 0, 0.8);
    font-size: 18px !important;
    vertical-align: middle;
    font-style: italic;
  }

  .pricing-table td {
    text-align: left;
    padding: 2px 20px;
    color: rgba(0, 0, 0, 0.8);
    font-size: 18px !important;
    vertical-align: middle;
    font-style: italic;
  }

  .pricing-table td {
    text-align: center;
  }

  .pricing-table tr:first-child th {
    background: white;
    font-size: 22px;
    font-style: normal;
    font-weight: 600;
  }

  .pricing-table tr:nth-child(2) th {
    background: white;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    color: rgba(0, 0, 0, 0.6);
  }

  .pricing-table tr:first-child td {
    background: white;
    font-size: 22px;
    font-style: normal;
    font-weight: 600;
  }

  .pricing-table tr:nth-child(2) td {
    background: white;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    color: rgba(0, 0, 0, 0.6);
  }

  .pricing-table .material-symbols-outlined {
    font-size: 22px;
    vertical-align: middle;
  }

  .pricing-table table tr>*:nth-child(3) {
    position: relative;
  }

  /* Add subtle hover row effect if desired */
  .pricing-table tr:hover {
    background-color: #ededed;
  }

  .pricing-table tr:nth-child(odd) {
    background-color: #e1e1e1;
  }

  .pricing-table tr:last-child th {
    background: white;
    color: rgba(0, 0, 0, 0.7);
    font-weight: 400;
  }

  .pricing-table tr:last-child td {
    background: white;
    color: rgba(0, 0, 0, 0.7);
    font-weight: 400;
  }

  /* Final CTA Page CSS */
  .finalcta {
    background-image: url("attached_assets/finalctabg.png");
    background-repeat: no-repeat;
    background-size: cover;
  }

  .finalcta {
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
  }

  .finalcta>div {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    gap: 70px;
  }

  .finalcta>div>div {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }

  /* Footer CSS */
  .footer {
    background-color: black;
    padding: 50px 150px;
    height: 50%;
    color: rgba(255, 255, 255, 0.8);
  }

  .footer a {
    color: white;
  }

  .footer>div {
    width: 100%;
    height: 100%;

    display: flex;
    flex-direction: column;
    justify-content: space-between;
  }

  .footer>div>div {
    width: 100%;
    height: 100%;
    display: flex;
  }

  .footer-2 {
    justify-content: flex-end;
    align-items: flex-end;
    gap: 38px;
  }

  .footer-2 p,
  .footer-2 a {
    font-size: 14px !important;
    width: auto;
    cursor: pointer;
    line-height: 20px;
  }

  .footer-2 a {
    line-height: 100px;
  }

  .footer>div>div>div {
    width: 100%;
    height: 100%;
  }

  .footer-3 p {
    font-size: 20px;
    line-height: 30px;
  }

  .footer-4 {
    display: flex;
    justify-content: right;
    gap: 80px;
  }

  .footer-4 p,
  .footer-4 a {
    font-size: 20px;

    text-align: left;
    width: auto;
  }

  .footer-4 p {
    font-weight: 600;
  }

  .footer-4 div {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    height: 80px;
  }
}

@media (max-width: 1280px) {

  /* Page CSS */
  * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }

  .mobile {
    display: none !important;
  }

  html,
  body {
    font-family: "IBM Plex Sans", monospace;
    height: 100%;
    overflow-x: hidden;
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
    text-size-adjust: 100%;
    line-height: 1.5;
    letter-spacing: -2%;
  }

  section {
    height: 100vh;
    background-size: cover;
    background-position: center;
    display: flex;
    justify-content: center;
    align-items: center;
    color: black;
    font-size: 18px;
  }

  h1 {
    font-size: 44px;
    font-weight: 500;
  }

  h2 {
    font-size: 30px;
    font-weight: 500;
  }

  h3 {
    font-size: 24px;
    font-weight: 400;
  }

  b {
    font-weight: 500;
  }

  p,
  li,
  th,
  details,
  summary {
    font-size: 22px;
    font-weight: 400;
  }

  a {
    width: 400px;
    height: 60px;
    border-radius: 9px;
    box-shadow: 0 4px 4px 2px rgba(0, 0, 0, 0.4);
    text-align: center;
    line-height: 60px;
    font-size: 20px;
    cursor: pointer;
    transition: ease-out 0.1s;

    color: black;
    text-decoration: none;
  }

  a:hover {
    transform: scale(1.04);
    filter: brightness(0.7);
  }

  a:active {
    filter: brightness(0.4);
    transform: scale(0.95);
  }

  /* Top Nav CSS*/
  .top-nav {
    z-index: 999999;
    backdrop-filter: blur(20px);
    display: flex;
    position: fixed;
    width: 100%;
    height: 72px;
    justify-content: space-between;
    align-items: center;
    padding: 0 40px;
  }

  .top-nav a {
    font-size: 20px !important;
  }

  /* Hero Section CSS */
  .left {
    display: flex;
    gap: 30px;
    align-items: center;
  }

  .login {
    display: block;
    box-shadow: none;
    border-radius: 12px;
    border: 1px solid black;
    text-align: center;
    width: 110px;
    height: 50px;
    line-height: 50px;
    font-size: 24px;
  }

  .right {
    display: flex;
    gap: 0px;
    justify-content: flex-end;
    align-items: center;
    gap: 20px;
  }

  .right a {
    width: auto;
    box-shadow: none;
    font-size: 24px;
    opacity: 0.5;
  }

  .demo-button {
    background-color: #222223;
    color: white;
  }

  .hero-section>div {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 100px;
  }

  .hero-section>div>div {
    display: flex;
    width: 50%;
    flex-direction: column;
    justify-content: flex-end;
    align-items: flex-start;
    gap: 14px;
  }

  .hero-section>div>div p {
    margin: 30px 0;
  }

  .hero-section video {
    width: 350px;
    height: 650px;
  }

  video {
    box-shadow: 0 8px 8px 0 rgba(0, 0, 0, 0.25);
    border-radius: 12px;
    object-fit: cover;
  }

  /* Clients Slider CSS */
  .clients {
    height: 360px;
  }

  .logo-slider {
    overflow: hidden;
    width: 100%;
    white-space: nowrap;
    background: #fff;
    padding: 20px 0;
  }

  .logo-track {
    display: flex;
    gap: 80px;
    animation: scroll 30s linear infinite;
  }

  .logo-track img {
    height: 150px;
    opacity: 0.7;
    filter: grayscale(100%);
    transition: opacity 0.3s;
  }

  .logo-track img:hover {
    opacity: 1;
    filter: grayscale(0%);
  }

  @keyframes scroll {
    0% {
      transform: translateX(0);
    }

    100% {
      transform: translateX(-50%);
    }
  }

  /* Problem page CSS */
  .problem {
    background-color: #fafafa;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 200px;
  }

  .problem span {
    font-size: 40px;
    opacity: 0.5;
  }

  .problem p {
    font-size: 24px;
  }

  .problem>div {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 136px;
  }

  .problem>div>div {
    width: 70%;
  }

  .problem-icons {
    width: 100% !important;
    height: 200px;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    grid-template-rows: 1fr 1fr;
    justify-content: space-between;
    text-align: center;
    gap: 30px;
  }

  /* Data Page CSS */
  .data {
    padding: 84px;
    display: flex;
    flex-direction: column;
    gap: 91px;
    align-items: flex-start;
    justify-content: center;
  }

  .data>div {
    width: 60%;
  }

  .data-graphs {
    display: flex;
    flex-direction: column;
    gap: 67px;
    width: 100% !important;
    align-items: center;
    justify-content: center;
  }

  .data-graphs>p {
    width: 60%;
    text-align: center;
  }

  .data-graphs p {
    font-size: 22px;
  }

  .data-graphs>div {
    display: flex;
    gap: 30px;
  }

  .data-graphs>div>div {
    display: flex;
    flex-direction: column;
    text-align: center;
    gap: 10px;
  }

  .data-graphs img {
    width: 600px;

    border-radius: 4px;
    box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.25);
    background-color: #d9d9d9;

    cursor: default;
    transition: 0.3s ease;
    filter: grayscale(50%);
  }

  .data-graphs img:hover {
    width: 700px;
    border-radius: 4px;
    box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.5);
    transform: scale(1.5);
    filter: grayscale(0%);
    z-index: 9999;
  }

  /* Solution Page CSS */
  .solution {
    margin-top: 160px;
    padding: 0 100px;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    flex-direction: column;
    gap: 128px;
  }

  .solution p {
    width: 100%;
  }

  .solution-text {
    width: 60%;
  }

  .solution-main {
    display: flex;
    flex-direction: column;
    gap: 16px;
  }

  .solution-main p {
    width: 30%;
  }

  .solution-main>div {
    display: flex;
    justify-content: center;
    gap: 60px;
    align-items: center;
  }

  .solution-main>div>div {
    width: 300px;
    height: 120px;
  }

  .solution-main video {
    width: 100%;
    height: 100%;

    opacity: 0.8;
    filter: grayscale(85%);
    transition: opacity 0.2s;
  }

  .solution-main video:hover {
    opacity: 1;
    filter: grayscale(0%);
  }

  /* Why It Matters Page CSS */
  .whyitmatters {
    background-color: #fafafa;
    padding: 0 240px;
    text-align: center;
    margin: 120px 0px;
  }

  .whyitmatters>div {
    display: flex;
    flex-direction: column;
    gap: 90px;
  }

  .whyitmatters-bottom,
  .whyitmatters-top {
    text-align: center !important;
  }

  .whyitmatters>div>div {
    display: flex;
    text-align: left;
    gap: 120px;
    justify-content: space-between;
    align-content: space-between;
  }

  .whyitmatters>div>div>div {
    display: flex;
    flex-direction: column;
    text-align: left;
    justify-content: flex-start;
    gap: 60px;
  }

  /* Case Study Page CSS */
  .casestudy {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
  }

  #slider-container {
    width: 100%;
    min-height: 100%;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
  }



  .slide {
    position: absolute;
    width: 100%;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.4s ease;
    padding: 0 200px !important;
    /* fade transition */
  }

  /* Active slide is visible */
  .slide.active {
    opacity: 1 !important;
    visibility: visible !important;
    pointer-events: auto;
  }

  #rightbutton,
  #leftbutton {
    position: absolute;
    top: 50%;
    cursor: pointer;
    opacity: 0.5;
    transition: 0.15s ease-out;
    z-index: 10;
  }

  #rightbutton {
    right: 160px;
  }

  #leftbutton {
    left: 160px;
  }

  #rightbutton:hover,
  #leftbutton:hover {
    transform: scale(1.2);
    filter: brightness(0.7);
    opacity: 0.7;
  }

  #rightbutton:active,
  #leftbutton:active {
    transform: scale(0.95);
    filter: brightness(0.4);
    opacity: 1;
  }

  .casestudy video {
    filter: saturate(0.65);
    transition: 0.3s;
  }

  .casestudy video:hover {
    filter: saturate(1);
  }

  /* Easy Install Page CSS */
  .easyinstall {
    display: flex;
    align-items: center;
    justify-content: center;
    height: auto;
    padding: 200px 100px;
  }

  .easyinstall>div {
    width: 100%;
    height: 100%;
    background-color: #f8f8f8;
    box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.25);
    display: flex;
    padding: 80px 260px;
    flex-direction: column;
    align-items: flex-start;
    justify-content: space-between;
    gap: 100px;
  }

  /* Pricing Page CSS */
  .pricing {
    padding: 160px 110px;
    height: 180%;
  }


  .pricing div {
    width: 100%;
    height: auto;
  }

  .pricing-table {
    width: 100%;
    margin: 120px 0;
  }

  .pricing-table table {
    width: 100%;
    border-collapse: collapse;
    table-layout: fixed;
  }

  .pricing-table th {
    text-align: left;
    padding: 2px 20px;
    color: rgba(0, 0, 0, 0.8);
    font-size: 18px !important;
    vertical-align: middle;
    font-style: italic;
  }

  .pricing-table td {
    text-align: left;
    padding: 2px 20px;
    color: rgba(0, 0, 0, 0.8);
    font-size: 18px !important;
    vertical-align: middle;
    font-style: italic;
  }

  .pricing-table td {
    text-align: center;
  }

  .pricing-table tr:first-child th {
    background: white;
    font-size: 22px;
    font-style: normal;
    font-weight: 600;
  }

  .pricing-table tr:nth-child(2) th {
    background: white;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    color: rgba(0, 0, 0, 0.6);
  }

  .pricing-table tr:first-child td {
    background: white;
    font-size: 22px;
    font-style: normal;
    font-weight: 600;
  }

  .pricing-table tr:nth-child(2) td {
    background: white;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    color: rgba(0, 0, 0, 0.6);
  }

  .pricing-table .material-symbols-outlined {
    font-size: 22px;
    vertical-align: middle;
  }

  .pricing-table table tr>*:nth-child(3) {
    position: relative;
  }

  /* Add subtle hover row effect if desired */
  .pricing-table tr:hover {
    background-color: #ededed;
  }

  .pricing-table tr:nth-child(odd) {
    background-color: #e1e1e1;
  }

  .pricing-table tr:last-child th {
    background: white;
    color: rgba(0, 0, 0, 0.7);
    font-weight: 400;
  }

  .pricing-table tr:last-child td {
    background: white;
    color: rgba(0, 0, 0, 0.7);
    font-weight: 400;
  }

  /* Final CTA Page CSS */
  .finalcta {
    background-image: url("attached_assets/finalctabg.png");
    background-repeat: no-repeat;
    background-size: cover;
  }

  .finalcta {
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
  }

  .finalcta>div {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    gap: 70px;
  }

  .finalcta>div>div {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }

  /* Footer CSS */
  .footer {
    background-color: black;
    padding: 50px 150px;
    height: 50%;
    color: rgba(255, 255, 255, 0.8);
  }

  .footer a {
    color: white;
  }

  .footer>div {
    width: 100%;
    height: 100%;

    display: flex;
    flex-direction: column;
    justify-content: space-between;
  }

  .footer>div>div {
    width: 100%;
    height: 100%;
    display: flex;
  }

  .footer-2 {
    justify-content: flex-end;
    align-items: flex-end;
    gap: 38px;
  }

  .footer-2 p,
  .footer-2 a {
    font-size: 14px !important;
    width: auto;
    cursor: pointer;
    line-height: 20px;
  }

  .footer-2 a {
    line-height: 100px;
  }

  .footer>div>div>div {
    width: 100%;
    height: 100%;
  }

  .footer-3 p {
    font-size: 20px;
    line-height: 30px;
  }

  .footer-4 {
    display: flex;
    justify-content: right;
    gap: 80px;
  }

  .footer-4 p,
  .footer-4 a {
    font-size: 20px;

    text-align: left;
    width: auto;
  }

  .footer-4 p {
    font-weight: 600;
  }

  .footer-4 div {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    height: 80px;
  }
}

@media (max-width: 1100px) {

  /* Page CSS */
  * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }

  .mobile {
    display: none !important;
  }

  html,
  body {
    font-family: "IBM Plex Sans", monospace;
    height: 100%;
    overflow-x: hidden;
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
    text-size-adjust: 100%;
    line-height: 1.5;
    letter-spacing: -2%;
  }

  section {
    height: 100vh;
    background-size: cover;
    background-position: center;
    display: flex;
    justify-content: center;
    align-items: center;
    color: black;
    font-size: 18px;
  }

  h1 {
    font-size: 44px;
    font-weight: 500;
  }

  h2 {
    font-size: 30px;
    font-weight: 500;
  }

  h3 {
    font-size: 24px;
    font-weight: 400;
  }

  b {
    font-weight: 500;
  }

  p,
  li,
  th,
  details,
  summary {
    font-size: 22px;
    font-weight: 400;
  }

  a {
    width: 400px;
    height: 60px;
    border-radius: 9px;
    box-shadow: 0 4px 4px 2px rgba(0, 0, 0, 0.4);
    text-align: center;
    line-height: 60px;
    font-size: 20px;
    cursor: pointer;
    transition: ease-out 0.1s;

    color: black;
    text-decoration: none;
  }

  a:hover {
    transform: scale(1.04);
    filter: brightness(0.7);
  }

  a:active {
    filter: brightness(0.4);
    transform: scale(0.95);
  }

  /* Top Nav CSS*/
  .top-nav {
    z-index: 999999;
    backdrop-filter: blur(20px);
    display: flex;
    position: fixed;
    width: 100%;
    height: 72px;
    justify-content: space-between;
    align-items: center;
    padding: 0 40px;
  }

  .top-nav a {
    font-size: 20px !important;
  }

  /* Hero Section CSS */
  .left {
    display: flex;
    gap: 20px;
    align-items: center;
  }

  .login {
    display: block;
    box-shadow: none;
    border-radius: 12px;
    border: 1px solid black;
    text-align: center;
    width: 110px;
    height: 50px;
    line-height: 50px;
    font-size: 24px;
  }

  .right {
    display: flex;
    gap: 0px;
    justify-content: flex-end;
    align-items: center;
    gap: 10px;
  }

  .right a {
    width: auto;
    box-shadow: none;
    font-size: 24px;
    opacity: 0.5;
  }

  .demo-button {
    background-color: #222223;
    color: white;
  }

  .hero-section>div {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 100px;
  }

  .hero-section>div>div {
    display: flex;
    width: 50%;
    flex-direction: column;
    justify-content: flex-end;
    align-items: flex-start;
    gap: 14px;
  }

  .hero-section>div>div p {
    margin: 30px 0;
  }

  .hero-section video {
    width: 350px;
    height: 650px;
  }

  video {
    box-shadow: 0 8px 8px 0 rgba(0, 0, 0, 0.25);
    border-radius: 12px;
    object-fit: cover;
  }

  /* Clients Slider CSS */
  .clients {
    height: 360px;
  }

  .logo-slider {
    overflow: hidden;
    width: 100%;
    white-space: nowrap;
    background: #fff;
    padding: 20px 0;
  }

  .logo-track {
    display: flex;
    gap: 80px;
    animation: scroll 30s linear infinite;
  }

  .logo-track img {
    height: 150px;
    opacity: 0.7;
    filter: grayscale(100%);
    transition: opacity 0.3s;
  }

  .logo-track img:hover {
    opacity: 1;
    filter: grayscale(0%);
  }

  @keyframes scroll {
    0% {
      transform: translateX(0);
    }

    100% {
      transform: translateX(-50%);
    }
  }

  /* Problem page CSS */
  .problem {
    background-color: #fafafa;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 200px;
  }

  .problem span {
    font-size: 40px;
    opacity: 0.5;
  }

  .problem p {
    font-size: 24px;
  }

  .problem>div {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 136px;
  }

  .problem>div>div {
    width: 70%;
  }

  .problem-icons {
    width: 100% !important;
    height: 200px;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    grid-template-rows: 1fr 1fr;
    justify-content: space-between;
    text-align: center;
    gap: 30px;
  }

  /* Data Page CSS */
  .data {
    padding: 84px;
    display: flex;
    flex-direction: column;
    gap: 91px;
    align-items: flex-start;
    justify-content: center;
  }

  .data>div {
    width: 60%;
  }

  .data-graphs {
    display: flex;
    flex-direction: column;
    gap: 67px;
    width: 100% !important;
    align-items: center;
    justify-content: center;
  }

  .data-graphs>p {
    width: 60%;
    text-align: center;
  }

  .data-graphs p {
    font-size: 22px;
  }

  .data-graphs>div {
    display: flex;
    gap: 30px;
  }

  .data-graphs>div>div {
    display: flex;
    flex-direction: column;
    text-align: center;
    gap: 10px;
  }

  .data-graphs img {
    width: 600px;

    border-radius: 4px;
    box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.25);
    background-color: #d9d9d9;

    cursor: default;
    transition: 0.3s ease;
    filter: grayscale(50%);
  }

  .data-graphs img:hover {
    width: 700px;
    border-radius: 4px;
    box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.5);
    transform: scale(1.5);
    filter: grayscale(0%);
    z-index: 9999;
  }

  /* Solution Page CSS */
  .solution {
    margin-top: 160px;
    padding: 0 100px;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    flex-direction: column;
    gap: 128px;
  }

  .solution p {
    width: 100%;
  }

  .solution-text {
    width: 60%;
  }

  .solution-main {
    display: flex;
    flex-direction: column;
    gap: 16px;
  }

  .solution-main p {
    width: 30%;
  }

  .solution-main>div {
    display: flex;
    justify-content: center;
    gap: 60px;
    align-items: center;
  }

  .solution-main>div>div {
    width: 300px;
    height: 120px;
  }

  .solution-main video {
    width: 100%;
    height: 100%;

    opacity: 0.8;
    filter: grayscale(85%);
    transition: opacity 0.2s;
  }

  .solution-main video:hover {
    opacity: 1;
    filter: grayscale(0%);
  }

  /* Why It Matters Page CSS */
  .whyitmatters {
    background-color: #fafafa;
    padding: 0 240px;
    text-align: center;
    margin: 120px 0px;
  }

  .whyitmatters>div {
    display: flex;
    flex-direction: column;
    gap: 90px;
  }

  .whyitmatters-bottom,
  .whyitmatters-top {
    text-align: center !important;
  }

  .whyitmatters>div>div {
    display: flex;
    text-align: left;
    gap: 120px;
    justify-content: space-between;
    align-content: space-between;
  }

  .whyitmatters>div>div>div {
    display: flex;
    flex-direction: column;
    text-align: left;
    justify-content: flex-start;
    gap: 60px;
  }

  /* Case Study Page CSS */
  .casestudy {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
  }

  #slider-container {
    width: 100%;
    min-height: 100%;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
  }



  .slide {
    position: absolute;
    width: 100%;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.4s ease;
    padding: 0 200px !important;
    /* fade transition */
  }

  /* Active slide is visible */
  .slide.active {
    opacity: 1 !important;
    visibility: visible !important;
    pointer-events: auto;
  }

  #rightbutton,
  #leftbutton {
    position: absolute;
    top: 50%;
    cursor: pointer;
    opacity: 0.5;
    transition: 0.15s ease-out;
    z-index: 10;
  }

  #rightbutton {
    right: 160px;
  }

  #leftbutton {
    left: 160px;
  }

  #rightbutton:hover,
  #leftbutton:hover {
    transform: scale(1.2);
    filter: brightness(0.7);
    opacity: 0.7;
  }

  #rightbutton:active,
  #leftbutton:active {
    transform: scale(0.95);
    filter: brightness(0.4);
    opacity: 1;
  }

  .casestudy video {
    filter: saturate(0.65);
    transition: 0.3s;
  }

  .casestudy video:hover {
    filter: saturate(1);
  }

  /* Easy Install Page CSS */
  .easyinstall {
    display: flex;
    align-items: center;
    justify-content: center;
    height: auto;
    padding: 200px 100px;
  }

  .easyinstall>div {
    width: 100%;
    height: 100%;
    background-color: #f8f8f8;
    box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.25);
    display: flex;
    padding: 80px 260px;
    flex-direction: column;
    align-items: flex-start;
    justify-content: space-between;
    gap: 100px;
  }

  /* Pricing Page CSS */
  .pricing {
    padding: 160px 110px;
    height: 180%;
  }


  .pricing div {
    width: 100%;
    height: auto;
  }

  .pricing-table {
    width: 100%;
    margin: 120px 0;
  }

  .pricing-table table {
    width: 100%;
    border-collapse: collapse;
    table-layout: fixed;
  }

  .pricing-table th {
    text-align: left;
    padding: 2px 20px;
    color: rgba(0, 0, 0, 0.8);
    font-size: 18px !important;
    vertical-align: middle;
    font-style: italic;
  }

  .pricing-table td {
    text-align: left;
    padding: 2px 20px;
    color: rgba(0, 0, 0, 0.8);
    font-size: 18px !important;
    vertical-align: middle;
    font-style: italic;
  }

  .pricing-table td {
    text-align: center;
  }

  .pricing-table tr:first-child th {
    background: white;
    font-size: 22px;
    font-style: normal;
    font-weight: 600;
  }

  .pricing-table tr:nth-child(2) th {
    background: white;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    color: rgba(0, 0, 0, 0.6);
  }

  .pricing-table tr:first-child td {
    background: white;
    font-size: 22px;
    font-style: normal;
    font-weight: 600;
  }

  .pricing-table tr:nth-child(2) td {
    background: white;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    color: rgba(0, 0, 0, 0.6);
  }

  .pricing-table .material-symbols-outlined {
    font-size: 22px;
    vertical-align: middle;
  }

  .pricing-table table tr>*:nth-child(3) {
    position: relative;
  }

  /* Add subtle hover row effect if desired */
  .pricing-table tr:hover {
    background-color: #ededed;
  }

  .pricing-table tr:nth-child(odd) {
    background-color: #e1e1e1;
  }

  .pricing-table tr:last-child th {
    background: white;
    color: rgba(0, 0, 0, 0.7);
    font-weight: 400;
  }

  .pricing-table tr:last-child td {
    background: white;
    color: rgba(0, 0, 0, 0.7);
    font-weight: 400;
  }

  /* Final CTA Page CSS */
  .finalcta {
    background-image: url("attached_assets/finalctabg.png");
    background-repeat: no-repeat;
    background-size: cover;
  }

  .finalcta {
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
  }

  .finalcta>div {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    gap: 70px;
  }

  .finalcta>div>div {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }

  /* Footer CSS */
  .footer {
    background-color: black;
    padding: 50px 150px;
    height: 50%;
    color: rgba(255, 255, 255, 0.8);
  }

  .footer a {
    color: white;
  }

  .footer>div {
    width: 100%;
    height: 100%;

    display: flex;
    flex-direction: column;
    justify-content: space-between;
  }

  .footer>div>div {
    width: 100%;
    height: 100%;
    display: flex;
  }

  .footer-2 {
    justify-content: flex-end;
    align-items: flex-end;
    gap: 38px;
  }

  .footer-2 p,
  .footer-2 a {
    font-size: 14px !important;
    width: auto;
    cursor: pointer;
    line-height: 20px;
  }

  .footer-2 a {
    line-height: 100px;
  }

  .footer>div>div>div {
    width: 100%;
    height: 100%;
  }

  .footer-3 p {
    font-size: 20px;
    line-height: 30px;
  }

  .footer-4 {
    display: flex;
    justify-content: right;
    gap: 80px;
  }

  .footer-4 p,
  .footer-4 a {
    font-size: 20px;

    text-align: left;
    width: auto;
  }

  .footer-4 p {
    font-weight: 600;
  }

  .footer-4 div {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    height: 80px;
  }
}

@media (max-width: 1024px) {

  /* Page CSS */
  * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }

  .mobile {
    display: none !important;
  }

  html,
  body {
    font-family: "IBM Plex Sans", monospace;
    height: 100%;
    overflow-x: hidden;
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
    text-size-adjust: 100%;
    line-height: 1.5;
    letter-spacing: -2%;
  }

  section {
    height: 100vh;
    background-size: cover;
    background-position: center;
    display: flex;
    justify-content: center;
    align-items: center;
    color: black;
    font-size: 18px;
  }

  h1 {
    font-size: 44px;
    font-weight: 500;
  }

  h2 {
    font-size: 30px;
    font-weight: 500;
  }

  h3 {
    font-size: 24px;
    font-weight: 400;
  }

  b {
    font-weight: 500;
  }

  p,
  li,
  th,
  details,
  summary {
    font-size: 22px;
    font-weight: 400;
  }

  a {
    width: 400px;
    height: 60px;
    border-radius: 9px;
    box-shadow: 0 4px 4px 2px rgba(0, 0, 0, 0.4);
    text-align: center;
    line-height: 60px;
    font-size: 20px;
    cursor: pointer;
    transition: ease-out 0.1s;

    color: black;
    text-decoration: none;
  }

  a:hover {
    transform: scale(1.04);
    filter: brightness(0.7);
  }

  a:active {
    filter: brightness(0.4);
    transform: scale(0.95);
  }

  /* Top Nav CSS*/
  .top-nav {
    z-index: 999999;
    backdrop-filter: blur(20px);
    display: flex;
    position: fixed;
    width: 100%;
    height: 72px;
    justify-content: space-between;
    align-items: center;
    padding: 0 20px;
  }

  .top-nav a {
    font-size: 18px !important;
  }

  /* Hero Section CSS */
  .left {
    display: flex;
    gap: 30px;
    align-items: center;
  }

  .left img {
    width: 120px !important;
    height: 32px !important;
  }
  .login {
    display: block;
    box-shadow: none;
    border-radius: 12px;
    border: 1px solid black;
    text-align: center;
    width: 80px;
    height: 50px;
    line-height: 50px;
    font-size: 24px;
  }

  .right {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 8px;
  }

  .right a {
    width: auto;
    box-shadow: none;
    font-size: 18px;
    opacity: 0.5;
  }

  .demo-button {
    background-color: #222223;
    color: white;
  }

  .hero-section>div {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 100px;
  }

  .hero-section>div>div {
    display: flex;
    width: 50%;
    flex-direction: column;
    justify-content: flex-end;
    align-items: flex-start;
    gap: 14px;
  }

  .hero-section>div>div p {
    margin: 30px 0;
  }

  .hero-section video {
    width: 350px;
    height: 650px;
  }

  video {
    box-shadow: 0 8px 8px 0 rgba(0, 0, 0, 0.25);
    border-radius: 12px;
    object-fit: cover;
  }

  /* Clients Slider CSS */
  .clients {
    height: 360px;
  }

  .logo-slider {
    overflow: hidden;
    width: 100%;
    white-space: nowrap;
    background: #fff;
    padding: 20px 0;
  }

  .logo-track {
    display: flex;
    gap: 80px;
    animation: scroll 30s linear infinite;
  }

  .logo-track img {
    height: 150px;
    opacity: 0.7;
    filter: grayscale(100%);
    transition: opacity 0.3s;
  }

  .logo-track img:hover {
    opacity: 1;
    filter: grayscale(0%);
  }

  @keyframes scroll {
    0% {
      transform: translateX(0);
    }

    100% {
      transform: translateX(-50%);
    }
  }

  /* Problem page CSS */
  .problem {
    background-color: #fafafa;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 100px;
  }

  .problem span {
    font-size: 40px;
    opacity: 0.5;
  }

  .problem p {
    font-size: 24px;
  }

  .problem>div {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 136px;
  }

  .problem>div>div {
    width: 70%;
  }

  .problem-icons {
    width: 100% !important;
    height: 200px;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    grid-template-rows: 1fr 1fr;
    justify-content: space-between;
    text-align: center;
    gap: 30px;
  }

  /* Data Page CSS */
  .data {
    height: auto;
    padding: 84px;
    display: flex;
    flex-direction: column;
    gap: 91px;
    align-items: flex-start;
    justify-content: center;
  }

  .data>div {
    width: 60%;
  }

  .data-graphs {
    display: flex;
    flex-direction: column;
    gap: 67px;
    width: 100% !important;
    align-items: center;
    justify-content: center;
  }

  .data-graphs>p {
    width: 80%;
    text-align: center;
  }

  .data-graphs p {
    font-size: 22px;
  }

  .data-graphs>div {
    display: flex;
    flex-direction: column;
    gap: 30px;
  }

  .data-graphs>div>div {
    display: flex;
    flex-direction: column;
    text-align: center;
    gap: 10px;
  }

  .data-graphs img {
    width: 600px;

    border-radius: 4px;
    box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.25);
    background-color: #d9d9d9;

    cursor: default;
    transition: 0.3s ease;
    filter: grayscale(50%);
  }

  .data-graphs img:hover {
    width: 700px;
    border-radius: 4px;
    box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.5);
    transform: scale(1.5);
    filter: grayscale(0%);
    z-index: 9999;
  }

  /* Solution Page CSS */
  .solution {
    margin-top: 160px;
    padding: 0 100px;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    flex-direction: column;
    gap: 128px;
  }

  .solution p {
    width: 100%;
  }

  .solution-text {
    width: 60%;
  }

  .solution-main {
    display: flex;
    flex-direction: column;
    gap: 16px;
  }

  .solution-main p {
    width: 30%;
  }

  .solution-main>div {
    display: flex;
    justify-content: center;
    gap: 60px;
    align-items: center;
  }

  .solution-main>div>div {
    width: 300px;
    height: 120px;
  }

  .solution-main video {
    width: 100%;
    height: 100%;

    opacity: 0.8;
    filter: grayscale(85%);
    transition: opacity 0.2s;
  }

  .solution-main video:hover {
    opacity: 1;
    filter: grayscale(0%);
  }

  /* Why It Matters Page CSS */
  .whyitmatters {
    background-color: #fafafa;
    padding: 40px 150px;
    text-align: center;
    margin: 200px 0px;
    height: auto;
  }

  .whyitmatters>div {
    display: flex;
    flex-direction: column;
    gap: 90px;
  }

  .whyitmatters-bottom,
  .whyitmatters-top {
    text-align: center !important;
  }

  .whyitmatters>div>div {
    display: flex;
    text-align: left;
    gap: 120px;
    justify-content: space-between;
    align-content: space-between;
  }

  .whyitmatters>div>div>div {
    display: flex;
    flex-direction: column;
    text-align: left;
    justify-content: flex-start;
    gap: 60px;
  }

  /* Case Study Page CSS */
  .casestudy {
    display: flex;
    flex-direction: column !important;
    gap: 50px;
    align-items: center;
    justify-content: center;
    position: relative;
  }

  #slider-container {
    width: 90%;
    min-height: 100%;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
  }



  .slide {
    position: absolute;
    width: 100%;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.4s ease;
    padding: 0 100px !important;
    /* fade transition */
  }

  /* Active slide is visible */
  .slide.active {
    opacity: 1 !important;
    visibility: visible !important;
    pointer-events: auto;
  }

  #rightbutton,
  #leftbutton {
    position: absolute;
    top: 50%;
    cursor: pointer;
    opacity: 0.5;
    transition: 0.15s ease-out;
    z-index: 10;
  }

  #rightbutton {
    right: 80px;
  }

  #leftbutton {
    left: 80px;
  }

  #rightbutton:hover,
  #leftbutton:hover {
    transform: scale(1.2);
    filter: brightness(0.7);
    opacity: 0.7;
  }

  #rightbutton:active,
  #leftbutton:active {
    transform: scale(0.95);
    filter: brightness(0.4);
    opacity: 1;
  }

  .casestudy video {
    filter: saturate(0.65);
    transition: 0.3s;
    width: 200px;
  }

  .casestudy video:hover {
    filter: saturate(1);
  }

  /* Easy Install Page CSS */
  .easyinstall {
    display: flex;
    align-items: center;
    justify-content: center;
    height: auto;
    padding: 200px 0px;
  }

  .easyinstall>div {
    width: 100%;
    height: 100%;
    background-color: #f8f8f8;
    box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.25);
    display: flex;
    padding: 80px 260px;
    flex-direction: column;
    align-items: flex-start;
    justify-content: space-between;
    gap: 100px;
  }

  /* Pricing Page CSS */
  .pricing {
    padding: 160px 110px;
    height: 180%;
  }


  .pricing div {
    width: 100%;
    height: auto;
  }

  .pricing-table {
    width: 100%;
    margin: 120px 0;
  }

  .pricing-table table {
    width: 100%;
    border-collapse: collapse;
    table-layout: fixed;
  }

  .pricing-table th {
    text-align: left;
    padding: 2px 20px;
    color: rgba(0, 0, 0, 0.8);
    font-size: 18px !important;
    vertical-align: middle;
    font-style: italic;
  }

  .pricing-table td {
    text-align: left;
    padding: 2px 20px;
    color: rgba(0, 0, 0, 0.8);
    font-size: 18px !important;
    vertical-align: middle;
    font-style: italic;
  }

  .pricing-table td {
    text-align: center;
  }

  .pricing-table tr:first-child th {
    background: white;
    font-size: 22px;
    font-style: normal;
    font-weight: 600;
  }

  .pricing-table tr:nth-child(2) th {
    background: white;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    color: rgba(0, 0, 0, 0.6);
  }

  .pricing-table tr:first-child td {
    background: white;
    font-size: 22px;
    font-style: normal;
    font-weight: 600;
  }

  .pricing-table tr:nth-child(2) td {
    background: white;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    color: rgba(0, 0, 0, 0.6);
  }

  .pricing-table .material-symbols-outlined {
    font-size: 22px;
    vertical-align: middle;
  }

  .pricing-table table tr>*:nth-child(3) {
    position: relative;
  }

  /* Add subtle hover row effect if desired */
  .pricing-table tr:hover {
    background-color: #ededed;
  }

  .pricing-table tr:nth-child(odd) {
    background-color: #e1e1e1;
  }

  .pricing-table tr:last-child th {
    background: white;
    color: rgba(0, 0, 0, 0.7);
    font-weight: 400;
  }

  .pricing-table tr:last-child td {
    background: white;
    color: rgba(0, 0, 0, 0.7);
    font-weight: 400;
  }

  /* Final CTA Page CSS */
  .finalcta {
    background-image: url("attached_assets/finalctabg.png");
    background-repeat: no-repeat;
    background-size: cover;
  }

  .finalcta {
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
  }

  .finalcta>div {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    gap: 70px;
  }

  .finalcta>div>div {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }

  /* Footer CSS */
  .footer {
    background-color: black;
    padding: 50px 150px;
    height: 50%;
    color: rgba(255, 255, 255, 0.8);
  }

  .footer a {
    color: white;
  }

  .footer>div {
    width: 100%;
    height: 100%;

    display: flex;
    flex-direction: column;
    justify-content: space-between;
  }

  .footer>div>div {
    width: 100%;
    height: 100%;
    display: flex;
  }

  .footer-2 {
    justify-content: flex-end;
    align-items: flex-end;
    gap: 38px;
  }

  .footer-2 p,
  .footer-2 a {
    font-size: 14px !important;
    width: auto;
    cursor: pointer;
    line-height: 20px;
  }

  .footer-2 a {
    line-height: 100px;
  }

  .footer>div>div>div {
    width: 100%;
    height: 100%;
  }

  .footer-3 p {
    font-size: 20px;
    line-height: 30px;
  }

  .footer-4 {
    display: flex;
    justify-content: right;
    gap: 40px;
  }

  .footer-4 p,
  .footer-4 a {
    font-size: 20px;

    text-align: left;
    width: auto;
  }

  .footer-4 p {
    font-weight: 600;
  }

  .footer-4 div {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    height: 80px;
  }
}

@media (max-width: 950px) {


  /* Page CSS */
  * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }

  .desktop {
    display: none !important;
  }

  .mobile {
    display: flex !important;
  }

  html,
  body {
    font-family: "IBM Plex Sans", monospace;
    height: 100%;
    overflow-x: hidden;
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
    text-size-adjust: 100%;
    line-height: 1.5;
    letter-spacing: -2%;
  }

  section {
    height: 100vh;
    background-size: cover;
    background-position: center;
    display: flex;
    justify-content: center;
    align-items: center;
    color: black;
    font-size: 18px;
  }

  h1 {
    font-size: 44px;
    font-weight: 500;
  }

  h2 {
    font-size: 30px;
    font-weight: 500;
  }

  h3 {
    font-size: 24px;
    font-weight: 400;
  }

  b {
    font-weight: 500;
  }

  p,
  li,
  th,
  details,
  summary {
    font-size: 22px;
    font-weight: 400;
  }

  a {
    width: 100% !important;
    height: 100px;
    border-radius: 9px;
    box-shadow: 0 4px 4px 2px rgba(0, 0, 0, 0.4);
    text-align: center;
    line-height: 100px;
    font-size: 20px;
    cursor: pointer;
    transition: ease-out 0.1s;

    color: black;
    text-decoration: none;
  }

  a:hover {
    transform: scale(1.04);
    filter: brightness(0.7);
  }

  a:active {
    filter: brightness(0.4);
    transform: scale(0.95);
  }

  /* Top Nav CSS*/
  .top-nav {
    z-index: 999999;
    backdrop-filter: blur(20px);
    display: flex;
    position: fixed;
    width: 100%;
    height: 72px;
    justify-content: space-between;
    align-items: center;
    padding: 0 20px;
  }

  .top-nav button {
    all: unset;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .top-nav span {
    font-size: 64px;
    line-height: 54px;
  }

  #mobile-menu {
    position: fixed;
    top: 0;
    left: -100%;
    width: 80%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    color: white;
    backdrop-filter: blur(10px);
    z-index: 999999999;
    justify-content: center;
    align-items: center;
    display: flex;
    flex-direction: column;
    padding: 30px 20px;
    gap: 20px;
    transition: left 0.3s ease-in-out;
  }

  .open {
    left: 0 !important;
  }

  #mobile-menu .close-btn {
    font-size: 40px;
    background: none;
    border: none;
    cursor: pointer;
    margin-left: auto;
  }

  #mobile-menu ul {
    list-style: none;
    padding: 0;
    margin-top: 40px;
  }

  #mobile-menu ul li {
    margin: 20px 0;
  }

  #mobile-menu ul li a {
    font-size: 22px;
    color: black;
    text-decoration: none;
  }

  #closeMenu {
    all: unset;
    display: flex;
    align-items: center;
    justify-content: center;
  }



  #nav-sidebar {
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 16px !important;

  }

  #nav-sidebar a {
    border-radius: 4px;
    width: auto;
    box-shadow: none;
    font-size: 24px;
    opacity: 0.5;
    height: 40px;
    line-height: 40px;
    color: white;
  }

  /* .left {
    display: flex;
    gap: 30px;
    align-items: center;
  }

  .login {
    display: block;
    box-shadow: none;
    border-radius: 12px;
    border: 1px solid black;
    text-align: center;
    width: 110px;
    height: 50px;
    line-height: 50px;
    font-size: 24px;
  }




  /* Hero Section CSS */

  .demo-button {
    width: 100% !important;
    background-color: #222223;
    color: white;
  }

  .hero-section {
    height: auto;
    padding: 0 40px;
  }
  .hero-section>div {
    display: flex;
    height: auto;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 20px;
 
  }

  .hero-section>div>div {
    margin-top: 150px;
    padding: 0px;
    display: flex;
    width: 100%;
    flex-direction: column;
    justify-content: flex-end;
    align-items: center;
    gap: 14px;
  }

  .hero-section>div>div p {
    margin: 30px 0;
  }

  .hero-section video {
    width: 100% !important;
    height: 200px;
  }

  video {
    box-shadow: 0 8px 8px 0 rgba(0, 0, 0, 0.25);
    border-radius: 12px;
    object-fit: cover;
  }

  /* Clients Slider CSS */
  .clients {
    height: 360px;
  }

  .logo-slider {
    overflow: hidden;
    width: 100%;
    white-space: nowrap;
    background: #fff;
    padding: 20px 0;
  }

  .logo-track {
    display: flex;
    gap: 80px;
    animation: scroll 30s linear infinite;
  }

  .logo-track img {
    height: 150px;
    opacity: 0.7;
    filter: grayscale(100%);
    transition: opacity 0.3s;
  }

  .logo-track img:hover {
    opacity: 1;
    filter: grayscale(0%);
  }

  @keyframes scroll {
    0% {
      transform: translateX(0);
    }

    100% {
      transform: translateX(-50%);
    }
  }

  /* Problem page CSS */
  .problem {
    background-color: #fafafa;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 40px;
    height: auto;
  }

  .problem span {
    font-size: 40px;
    opacity: 0.5;
  }

  .problem p {
    font-size: 24px;
  }

  .problem>div {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 136px;
    height: auto;
    align-items: center;
  }

  .problem>div>div {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 80px;
    height: auto;
    align-items: center;
  }

  .problem-icons {
    width: 80% !important;
    height: 200px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    text-align: center;
    gap: 30px;
  }

  /* Data Page CSS */
  .data {
    margin: 100px 0;
    height: auto;
    padding: 40px;
    display: flex;
    flex-direction: column;
    gap: 91px;
    align-items: flex-start;
    justify-content: center;
  }

  .data>div {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 40px;
  }

  .data-graphs {
    display: flex;
    flex-direction: column;
    gap: 67px;
    width: 100% !important;
    align-items: center;
    justify-content: center;
  }

  .data-graphs>p {
    width: 100%;
    text-align: center;
  }

  .data-graphs p {
    font-size: 22px;
  }

  .data-graphs>div {
    display: flex;
    flex-direction: column;
    gap: 30px;
  }

  .data-graphs>div>div {
    display: flex;
    flex-direction: column;
    text-align: center;
    gap: 10px;
  }

  .data-graphs img {
    all: unset;
    width: 100%;

    border-radius: 4px;
    box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.5);
    background-color: #d9d9d9;

    cursor: default;
  }

  .data-graphs img:hover {
    all: unset;
    width: 100%;

    border-radius: 4px;
    box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.5);
    background-color: #d9d9d9;

    cursor: default;
  }


  /* Solution Page CSS */
  .solution {
    height: auto;
    margin-top: 160px;
    padding: 0 40px;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    flex-direction: column;
    gap: 128px;
  }

  .solution p {
    width: 100%;
  }

  .solution-text {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 40px;
  }

  .solution-main {
    display: flex;
    flex-direction: column;
    gap: 16px;
  }

  .solution-main p {
    width: 100%;
    text-align: center;
  }

  .solution-main>div {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 20px;
    align-items: center;
  }

  .solution-main>div>div {
    width: 300px;
    height: 120px;
  }

  .solution-main video {
    width: 100%;
    height: 100%;

    opacity: 0.8;
    filter: grayscale(0%);
    transition: opacity 0.2s;
  }

  .solution-main video:hover {
    opacity: 1;
    filter: grayscale(0%);
  }

  /* Why It Matters Page CSS */
  .whyitmatters {
    background-color: #fafafa;
    padding: 40px 40px;
    text-align: center;
    margin: 200px 0px;
    height: auto;
  }

  .whyitmatters>div {
    display: flex;
    flex-direction: column;
    gap: 90px;
  }


  .whyitmatters-top {
    text-align: center !important;
  }

  .whyitmatters-bottom {
    text-align: left !important;
  }

  .whyitmatters>div>div {
    display: flex;
     flex-direction: column;
    text-align: left;
    gap: 60px;
    justify-content: space-between;
    align-content: space-between;
  }

  .whyitmatters>div>div>div {
    display: flex;
    flex-direction: column;
    text-align: left;
    justify-content: flex-start;
    gap: 60px;
  }

  /* Case Study Page CSS */
  .casestudy {
    display: flex;
    flex-direction: column !important;
    gap: 50px;
    align-items: center;
    justify-content: center;
    position: relative;
  }

  #slider-container {
    width: 90%;
    min-height: 100%;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
  }



  .slide {
    position: absolute;
    width: 100%;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.4s ease;
    padding: 0 40px !important;
    /* fade transition */
  }

  /* Active slide is visible */
  .slide.active {
    opacity: 1 !important;
    visibility: visible !important;
    pointer-events: auto;
    flex-direction: column;
  }

  #rightbutton,
  #leftbutton {
    position: absolute;
    top: 50%;
    cursor: pointer;
    opacity: 0.5;
    transition: 0.15s ease-out;
    z-index: 10;
  }

  #rightbutton {
    right: 20px;
  }

  #leftbutton {
    left: 20px;
  }

  #rightbutton:hover,
  #leftbutton:hover {
    transform: scale(1.2);
    filter: brightness(0.7);
    opacity: 0.7;
  }

  #rightbutton:active,
  #leftbutton:active {
    transform: scale(0.95);
    filter: brightness(0.4);
    opacity: 1;
  }

  .casestudy video {
    filter: saturate(0.65);
    transition: 0.3s;
    width: 100%;
    height: 200px;
  }

  .casestudy video:hover {
    filter: saturate(1);
  }

  /* Easy Install Page CSS */
  .easyinstall {
    display: flex;
    align-items: center;
    justify-content: center;
    height: auto;
    padding: 200px 0px;
  }

  .easyinstall>div {
    width: 100%;
    height: auto;
    background-color: #f8f8f8;
    box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.25);
    display: flex;
    padding: 80px 40px;
    flex-direction: column;
    align-items: flex-start;
    justify-content: space-between;
    gap: 100px;
  }

  /* Pricing Page CSS */
  .pricing {
    padding: 160px 40px;
    height: auto;
  }


  .pricing div {
    width: 100%;
    height: auto;
    display: flex;
    flex-direction: column;
    gap: 40px;
  }

  .pricing-table {
    width: 100%;
    margin: 120px 0;
    display: none !important;
  }

  .pricing-table table {
    width: 100%;
    border-collapse: collapse;
    table-layout: fixed;
  }

  .pricing-table th {
    text-align: left;
    padding: 2px 20px;
    color: rgba(0, 0, 0, 0.8);
    font-size: 18px !important;
    vertical-align: middle;
    font-style: italic;
  }

  .pricing-table td {
    text-align: left;
    padding: 2px 20px;
    color: rgba(0, 0, 0, 0.8);
    font-size: 18px !important;
    vertical-align: middle;
    font-style: italic;
  }

  .pricing-table td {
    text-align: center;
  }

  .pricing-table tr:first-child th {
    background: white;
    font-size: 22px;
    font-style: normal;
    font-weight: 600;
  }

  .pricing-table tr:nth-child(2) th {
    background: white;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    color: rgba(0, 0, 0, 0.6);
  }

  .pricing-table tr:first-child td {
    background: white;
    font-size: 22px;
    font-style: normal;
    font-weight: 600;
  }

  .pricing-table tr:nth-child(2) td {
    background: white;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    color: rgba(0, 0, 0, 0.6);
  }

  .pricing-table .material-symbols-outlined {
    font-size: 22px;
    vertical-align: middle;
  }

  .pricing-table table tr>*:nth-child(3) {
    position: relative;
  }

  /* Add subtle hover row effect if desired */
  .pricing-table tr:hover {
    background-color: #ededed;
  }

  .pricing-table tr:nth-child(odd) {
    background-color: #e1e1e1;
  }

  .pricing-table tr:last-child th {
    background: white;
    color: rgba(0, 0, 0, 0.7);
    font-weight: 400;
  }

  .pricing-table tr:last-child td {
    background: white;
    color: rgba(0, 0, 0, 0.7);
    font-weight: 400;
  }

  .pricing-button {
    background-color: #222223;
    color: white;
  }

  /* Final CTA Page CSS */
  .finalcta {
    background-image: url("attached_assets/finalctabg.png");
    background-repeat: no-repeat;
    background-size: cover;
  }

  .finalcta {
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
    padding: 0 40px;
  }

  .finalcta>div {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    gap: 70px;
    width: 100% !important;
  }

  .finalcta>div>div {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100% !important;
  }

  /* Footer CSS */
  .footer {
    background-color: black;
    padding: 50px 40px;
    height: auto;
    color: rgba(255, 255, 255, 0.8);
  }

  .footer a {
    color: white;
  }

  .footer>div {
    width: 100%;
    height: 100%;
    gap: 40px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
  }

  .footer>div>div {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
  }

  .footer-2 {
    flex-direction: row !important;
    justify-content: flex-end;
    align-items: flex-end;
    gap: 38px;
  }

  .footer-2 p,
  .footer-2 a {
    font-size: 14px !important;
    width: 100%;
    cursor: pointer;
    line-height: 20px;
  }

  .footer-2 a {
    line-height: 100px;
  }

  .footer>div>div>div {
    width: 100%;
    height: 100%;
  }

  .footer-3 {
    display: flex;
    flex-direction: column;
    gap: 40px;
    width: auto;
  }

  .footer-3 div {

    width: 100% !important;
  }

  .footer-3 p {
    font-size: 20px;
    line-height: 30px;
  }

  .footer-4 {
    display: flex;
    justify-content: space-between;
    height: auto;
  }

  .footer-4 p,
  .footer-4 a {
    font-size: 20px;
    height: auto;
    text-align: left;
    width: auto;
  }

  .footer-4 p {
    font-weight: 600;
  }

  .footer-4 div {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    height: auto;

  }
}

@media (max-width: 889px) {


  /* Page CSS */
  * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }

  .desktop {
    display: none !important;
  }

  .mobile {
    display: flex !important;
  }

  html,
  body {
    font-family: "IBM Plex Sans", monospace;
    height: 100%;
    overflow-x: hidden;
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
    text-size-adjust: 100%;
    line-height: 1.5;
    letter-spacing: -2%;
  }

  section {
    height: 100vh;
    background-size: cover;
    background-position: center;
    display: flex;
    justify-content: center;
    align-items: center;
    color: black;
    font-size: 18px;
  }

  h1 {
    font-size: 44px;
    font-weight: 500;
  }

  h2 {
    font-size: 30px;
    font-weight: 500;
  }

  h3 {
    font-size: 24px;
    font-weight: 400;
  }

  b {
    font-weight: 500;
  }

  p,
  li,
  th,
  details,
  summary {
    font-size: 22px;
    font-weight: 400;
  }

  a {
    width: 100% !important;
    height: 100px;
    border-radius: 9px;
    box-shadow: 0 4px 4px 2px rgba(0, 0, 0, 0.4);
    text-align: center;
    line-height: 100px;
    font-size: 20px;
    cursor: pointer;
    transition: ease-out 0.1s;

    color: black;
    text-decoration: none;
  }

  a:hover {
    transform: scale(1.04);
    filter: brightness(0.7);
  }

  a:active {
    filter: brightness(0.4);
    transform: scale(0.95);
  }

  /* Top Nav CSS*/
  .top-nav {
    z-index: 999999;
    backdrop-filter: blur(20px);
    display: flex;
    position: fixed;
    width: 100%;
    height: 72px;
    justify-content: space-between;
    align-items: center;
    padding: 0 20px;
  }

  .top-nav button {
    all: unset;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .top-nav span {
    font-size: 64px;
    line-height: 54px;
  }

  #mobile-menu {
    position: fixed;
    top: 0;
    left: -100%;
    width: 80%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    color: white;
    backdrop-filter: blur(10px);
    z-index: 999999999;
    justify-content: center;
    align-items: center;
    display: flex;
    flex-direction: column;
    padding: 30px 20px;
    gap: 20px;
    transition: left 0.3s ease-in-out;
  }

  .open {
    left: 0 !important;
  }

  #mobile-menu .close-btn {
    font-size: 40px;
    background: none;
    border: none;
    cursor: pointer;
    margin-left: auto;
  }

  #mobile-menu ul {
    list-style: none;
    padding: 0;
    margin-top: 40px;
  }

  #mobile-menu ul li {
    margin: 20px 0;
  }

  #mobile-menu ul li a {
    font-size: 22px;
    color: black;
    text-decoration: none;
  }

  #closeMenu {
    all: unset;
    display: flex;
    align-items: center;
    justify-content: center;
  }



  #nav-sidebar {
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 16px !important;

  }

  #nav-sidebar a {
    border-radius: 4px;
    width: auto;
    box-shadow: none;
    font-size: 24px;
    opacity: 0.5;
    height: 40px;
    line-height: 40px;
    color: white;
  }

  /* .left {
    display: flex;
    gap: 30px;
    align-items: center;
  }

  .login {
    display: block;
    box-shadow: none;
    border-radius: 12px;
    border: 1px solid black;
    text-align: center;
    width: 110px;
    height: 50px;
    line-height: 50px;
    font-size: 24px;
  }




  /* Hero Section CSS */

  .demo-button {
    width: 100% !important;
    background-color: #222223;
    color: white;
  }

  .hero-section {
    height: auto;
    padding: 0 40px;
  }
  .hero-section>div {
    display: flex;
    height: auto;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 20px;
 
  }

  .hero-section>div>div {
    margin-top: 150px;
    padding: 0px;
    display: flex;
    width: 100%;
    flex-direction: column;
    justify-content: flex-end;
    align-items: center;
    gap: 14px;
  }

  .hero-section>div>div p {
    margin: 30px 0;
  }

  .hero-section video {
    width: 100% !important;
    height: 200px;
  }

  video {
    box-shadow: 0 8px 8px 0 rgba(0, 0, 0, 0.25);
    border-radius: 12px;
    object-fit: cover;
  }

  /* Clients Slider CSS */
  .clients {
    height: 360px;
  }

  .logo-slider {
    overflow: hidden;
    width: 100%;
    white-space: nowrap;
    background: #fff;
    padding: 20px 0;
  }

  .logo-track {
    display: flex;
    gap: 80px;
    animation: scroll 30s linear infinite;
  }

  .logo-track img {
    height: 150px;
    opacity: 0.7;
    filter: grayscale(100%);
    transition: opacity 0.3s;
  }

  .logo-track img:hover {
    opacity: 1;
    filter: grayscale(0%);
  }

  @keyframes scroll {
    0% {
      transform: translateX(0);
    }

    100% {
      transform: translateX(-50%);
    }
  }

  /* Problem page CSS */
  .problem {
    background-color: #fafafa;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 40px;
    height: auto;
  }

  .problem span {
    font-size: 40px;
    opacity: 0.5;
  }

  .problem p {
    font-size: 24px;
  }

  .problem>div {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 136px;
    height: auto;
    align-items: center;
  }

  .problem>div>div {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 80px;
    height: auto;
    align-items: center;
  }

  .problem-icons {
    width: 80% !important;
    height: 200px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    text-align: center;
    gap: 30px;
  }

  /* Data Page CSS */
  .data {
    margin: 100px 0;
    height: auto;
    padding: 40px;
    display: flex;
    flex-direction: column;
    gap: 91px;
    align-items: flex-start;
    justify-content: center;
  }

  .data>div {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 40px;
  }

  .data-graphs {
    display: flex;
    flex-direction: column;
    gap: 67px;
    width: 100% !important;
    align-items: center;
    justify-content: center;
  }

  .data-graphs>p {
    width: 100%;
    text-align: center;
  }

  .data-graphs p {
    font-size: 22px;
  }

  .data-graphs>div {
    display: flex;
    flex-direction: column;
    gap: 30px;
  }

  .data-graphs>div>div {
    display: flex;
    flex-direction: column;
    text-align: center;
    gap: 10px;
  }

  .data-graphs img {
    all: unset;
    width: 100%;

    border-radius: 4px;
    box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.5);
    background-color: #d9d9d9;

    cursor: default;
  }

  .data-graphs img:hover {
    all: unset;
    width: 100%;

    border-radius: 4px;
    box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.5);
    background-color: #d9d9d9;

    cursor: default;
  }


  /* Solution Page CSS */
  .solution {
    height: auto;
    margin-top: 160px;
    padding: 0 40px;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    flex-direction: column;
    gap: 128px;
  }

  .solution p {
    width: 100%;
  }

  .solution-text {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 40px;
  }

  .solution-main {
    display: flex;
    flex-direction: column;
    gap: 16px;
  }

  .solution-main p {
    width: 100%;
    text-align: center;
  }

  .solution-main>div {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 20px;
    align-items: center;
  }

  .solution-main>div>div {
    width: 300px;
    height: 120px;
  }

  .solution-main video {
    width: 100%;
    height: 100%;

    opacity: 0.8;
    filter: grayscale(0%);
    transition: opacity 0.2s;
  }

  .solution-main video:hover {
    opacity: 1;
    filter: grayscale(0%);
  }

  /* Why It Matters Page CSS */
  .whyitmatters {
    background-color: #fafafa;
    padding: 40px 40px;
    text-align: center;
    margin: 200px 0px;
    height: auto;
  }

  .whyitmatters>div {
    display: flex;
    flex-direction: column;
    gap: 90px;
  }


  .whyitmatters-top {
    text-align: center !important;
  }

  .whyitmatters-bottom {
    text-align: left !important;
  }

  .whyitmatters>div>div {
    display: flex;
     flex-direction: column;
    text-align: left;
    gap: 60px;
    justify-content: space-between;
    align-content: space-between;
  }

  .whyitmatters>div>div>div {
    display: flex;
    flex-direction: column;
    text-align: left;
    justify-content: flex-start;
    gap: 60px;
  }

  /* Case Study Page CSS */
  .casestudy {
    display: flex;
    flex-direction: column !important;
    gap: 50px;
    align-items: center;
    justify-content: center;
    position: relative;
  }

  #slider-container {
    width: 90%;
    min-height: 100%;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
  }



  .slide {
    position: absolute;
    width: 100%;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.4s ease;
    padding: 0 40px !important;
    /* fade transition */
  }

  /* Active slide is visible */
  .slide.active {
    opacity: 1 !important;
    visibility: visible !important;
    pointer-events: auto;
    flex-direction: column;
  }

  #rightbutton,
  #leftbutton {
    position: absolute;
    top: 50%;
    cursor: pointer;
    opacity: 0.5;
    transition: 0.15s ease-out;
    z-index: 10;
  }

  #rightbutton {
    right: 20px;
  }

  #leftbutton {
    left: 20px;
  }

  #rightbutton:hover,
  #leftbutton:hover {
    transform: scale(1.2);
    filter: brightness(0.7);
    opacity: 0.7;
  }

  #rightbutton:active,
  #leftbutton:active {
    transform: scale(0.95);
    filter: brightness(0.4);
    opacity: 1;
  }

  .casestudy video {
    filter: saturate(0.65);
    transition: 0.3s;
    width: 100%;
    height: 200px;
  }

  .casestudy video:hover {
    filter: saturate(1);
  }

  /* Easy Install Page CSS */
  .easyinstall {
    display: flex;
    align-items: center;
    justify-content: center;
    height: auto;
    padding: 200px 0px;
  }

  .easyinstall>div {
    width: 100%;
    height: auto;
    background-color: #f8f8f8;
    box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.25);
    display: flex;
    padding: 80px 40px;
    flex-direction: column;
    align-items: flex-start;
    justify-content: space-between;
    gap: 100px;
  }

  /* Pricing Page CSS */
  .pricing {
    padding: 160px 40px;
    height: auto;
  }


  .pricing div {
    width: 100%;
    height: auto;
    display: flex;
    flex-direction: column;
    gap: 40px;
  }

  .pricing-table {
    width: 100%;
    margin: 120px 0;
    display: none !important;
  }

  .pricing-table table {
    width: 100%;
    border-collapse: collapse;
    table-layout: fixed;
  }

  .pricing-table th {
    text-align: left;
    padding: 2px 20px;
    color: rgba(0, 0, 0, 0.8);
    font-size: 18px !important;
    vertical-align: middle;
    font-style: italic;
  }

  .pricing-table td {
    text-align: left;
    padding: 2px 20px;
    color: rgba(0, 0, 0, 0.8);
    font-size: 18px !important;
    vertical-align: middle;
    font-style: italic;
  }

  .pricing-table td {
    text-align: center;
  }

  .pricing-table tr:first-child th {
    background: white;
    font-size: 22px;
    font-style: normal;
    font-weight: 600;
  }

  .pricing-table tr:nth-child(2) th {
    background: white;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    color: rgba(0, 0, 0, 0.6);
  }

  .pricing-table tr:first-child td {
    background: white;
    font-size: 22px;
    font-style: normal;
    font-weight: 600;
  }

  .pricing-table tr:nth-child(2) td {
    background: white;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    color: rgba(0, 0, 0, 0.6);
  }

  .pricing-table .material-symbols-outlined {
    font-size: 22px;
    vertical-align: middle;
  }

  .pricing-table table tr>*:nth-child(3) {
    position: relative;
  }

  /* Add subtle hover row effect if desired */
  .pricing-table tr:hover {
    background-color: #ededed;
  }

  .pricing-table tr:nth-child(odd) {
    background-color: #e1e1e1;
  }

  .pricing-table tr:last-child th {
    background: white;
    color: rgba(0, 0, 0, 0.7);
    font-weight: 400;
  }

  .pricing-table tr:last-child td {
    background: white;
    color: rgba(0, 0, 0, 0.7);
    font-weight: 400;
  }

  .pricing-button {
    background-color: #222223;
    color: white;
  }

  /* Final CTA Page CSS */
  .finalcta {
    background-image: url("attached_assets/finalctabg.png");
    background-repeat: no-repeat;
    background-size: cover;
  }

  .finalcta {
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
    padding: 0 40px;
  }

  .finalcta>div {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    gap: 70px;
    width: 100% !important;
  }

  .finalcta>div>div {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100% !important;
  }

  /* Footer CSS */
  .footer {
    background-color: black;
    padding: 50px 40px;
    height: auto;
    color: rgba(255, 255, 255, 0.8);
  }

  .footer a {
    color: white;
  }

  .footer>div {
    width: 100%;
    height: 100%;
    gap: 40px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
  }

  .footer>div>div {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
  }

  .footer-2 {
    flex-direction: row !important;
    justify-content: flex-end;
    align-items: flex-end;
    gap: 38px;
  }

  .footer-2 p,
  .footer-2 a {
    font-size: 14px !important;
    width: 100%;
    cursor: pointer;
    line-height: 20px;
  }

  .footer-2 a {
    line-height: 100px;
  }

  .footer>div>div>div {
    width: 100%;
    height: 100%;
  }

  .footer-3 {
    display: flex;
    flex-direction: column;
    gap: 40px;
    width: auto;
  }

  .footer-3 div {

    width: 100% !important;
  }

  .footer-3 p {
    font-size: 20px;
    line-height: 30px;
  }

  .footer-4 {
    display: flex;
    justify-content: space-between;
    height: auto;
  }

  .footer-4 p,
  .footer-4 a {
    font-size: 20px;
    height: auto;
    text-align: left;
    width: auto;
  }

  .footer-4 p {
    font-weight: 600;
  }

  .footer-4 div {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    height: auto;

  }
}