:root,
[data-bs-theme=light] {
  --data-color-main: #23272F;
  --data-color-accent: #3F78E0;
  --data-color-accent-hover: #06bdf8;
  --data-color-main-bg: #FFFFFF;
  --data-color-second-bg: #F3F7FD;
  --data-color-highlight-text: #AAB7CA;
  --data-color-highlight-second-text: #6E7D92;
  --data-color-main-text: #131D39;
}


/* Site Branding */

.site-branding {
	padding: 0.5rem 0;
}

/* Custom navbar properties */

@media screen and (min-width: 768px) {
.container-navbar-fixed {
	transform: translate(-50%, -150%);
    left: 50%;
    border-radius: 6rem;
	padding: 0 0 0 1rem;
    top: 1rem;
}

.container-navbar-fixed .site-branding img.logo{
	width: 120px;
}

.navbar.navbar-expand-lg.center-nav.navbar-absolute.navbar-default.navbar-clone.fixed.container.container-navbar-fixed.navbar-stick {
	transform: translate(-50%,0%);
    left: 50%;
}


.navbar-stick:not(.navbar-dark) {
    box-shadow: 0rem 0rem 1.25rem rgba(30, 34, 40, 0.06);
    backdrop-filter: blur(20px);
    background: hsl(0deg 0% 100% / 60%);
    border: 1px solid #ebebeb;
}

}
@media screen and (max-width: 992px) {
.container-navbar-fixed {
    padding: 0 1rem 0 1rem;
}
}

.d-lg-none.ms-auto:has(> .hamburger:only-child) {
	display: flex;
}

/* Navigation Section */

.contact-button{
	background-color: var(--data-color-accent);
	border: var(--bs-btn-border-width) solid var(--data-color-accent);
}

.contact-button:hover {
	background-color: var(--data-color-accent-hover);
    border-color: var(--data-color-accent-hover);
}

.nav-link {
	color: var(--data-color-main) !important;
}

.nav-link:hover {
	color: var(--data-color-accent) !important;
}

/* Hero section container */

.highlights-container {
    background-color: rgba(var(--bs-light-rgb));
    display: flex;
    flex-direction: column;
    width: 100%;
    min-height: 20rem;
	padding: 3rem;
}

.highlights-container h2 {
	color: var(--data-color-main);
    font-size: .9rem;
    font-weight: 500;
}

.highlights-container h1 {
	color: var(--data-color-main-text);
    font-size: 1.9rem;
    font-weight: 500;
}

.highlights-container h3 {
	color: var(--data-color-highlight-text);
    font-size: .9rem;
    font-weight: 500;
    margin-top: 0.5rem;
}

.text-main{
	color: var(--data-color-main);
	font-weight: 500;
}

.text-accent{
	color: var(--data-color-accent) !important;
	font-weight: 500;
}

.phone-position{
    width: 24%;
    position: absolute;
    top: 25%;
    right: 2%;
}

/** Hero section background logo **/

.main-bg-logo{
    position: absolute;
    bottom: -11.7rem;
    right: -17%;
    z-index: 0;
    width: 35rem;
}

.container.container-main-bg-logo{
	position: relative;
    padding: 0 !important;
    overflow: visible;
    height: 1rem;
}

.container.space-lg.pt-15.pt-md-18 {
	z-index: 1;
    position: relative;
}

.paragraph.paragraph--type--paragraph-section.wrapper.bg-soft-light-primary.switch-column-mobile.paragraph--view-mode--default{
	overflow: hidden;
    position: relative;
}

/** - Individual highlight box and styling - **/

.highlight-wrapper h3 {
	color: var(--data-color-main-text);
	font-size: .65rem;
}

.highlight-icon {
    width: 3rem;
    aspect-ratio: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--data-color-main);
    background: var(--data-color-second-bg);
    font-size: 1.25rem;
    border-radius: .25rem;
    margin: 1.5rem 0 .5rem 0;
}


/** - Circular scheme styling - **/
	.diagram-wrapper {
        display: flex;
        align-items: center;
      }
      .diagram-container {
        display: flex;
        align-items: center;
      }
      .diagram {
        width: 85%;
        display: none;
        transition: 0.3s ease;
      }
      .diagram.active {
        display: unset;
      }
      .content-scheme {
        flex: 1;
      }
      .content-scheme h3 {
        color: var(--data-color-main);
        font-size: .9rem;
        font-weight: 500;
      }
	  
	  .content-scheme p {
		  height: 7.5rem;
	  }
      .content-scheme h2 {
        color: var(--data-color-main-text);
        font-size: 1.5rem;
        font-weight: 500;
      }
      .content-scheme .navigation {
        display: flex;
        justify-content: flex-end;
        margin-top: 20px;
      }
      .content-scheme .nav-button {
		background: none;
		border: unset;
		cursor: pointer;
		color: var(--data-color-accent);
		transition: all 0.3s ease;
		font-size: 1.2rem;
		width: 2.5rem;
		height: 2.5rem;
		border-radius: 10rem;
      }
      .content-scheme .nav-button:hover {
        background-color: #f3f7fd;
      }
      .content-scheme .nav-button:focus {
        outline: unset;
      }
      .content-scheme p {
        color: var(--data-color-main-text);
        line-height: 1.6;
      }
	  
	  /** - Bento section styling - **/
	  
	   .bento-wrapper {
        display: flex;
        align-items: center;
        justify-content: center;
      }

      .bento-wrapper h1 {
        color: var(--data-color-main);
        font-size: 0.9rem;
        font-weight: 500;
      }

      .bento-wrapper h2 {
        color: var(--data-color-main-text);
        font-size: 1.5rem;
        font-weight: 500;
		margin-bottom: 2rem !important;
      }
      .bento-card {
        background-color: var(--data-color-second-bg);
        border-radius: .75rem;
        padding: 3rem 2rem;
        height: 16rem;
        position: relative;
        overflow: hidden;
      }
      .big-number {
        font-size: 3rem;
        font-weight: 600;
        color: var(--data-color-main);
        margin-bottom: .5rem;
      }
      .bento-card .feature-text {
        color: var(--data-color-highlight-second-text);
        font-size: .8rem;
        font-weight: 500;
      }
      .interface-preview {
        border-radius: 0.5rem;
        overflow: hidden;
        box-shadow: 0 4px 42px rgba(0, 0, 0, 0.05);
      }

      .bento-card .globe {
        font-size: 20rem;
        color: var(--data-color-main);
        position: absolute;
        top: 55%;
        left: calc(50% - 10rem);
      }

      .bento-card:hover .globe {
        animation: rotate 4s linear infinite;
      }

      @keyframes rotate {
        from {
          transform: rotate(0deg);
        }
        to {
          transform: rotate(360deg);
        }
      }

      .bento-card h3 {
        color: var(--data-color-main-text);
        font-size: 1.2rem;
        font-weight: 500;
      }
	  
	  /** - Work with us section styling - **/
	  
	  
	  .wrapper-work .header {
        color: white;
        margin-bottom: 20px;
      }

      .wrapper-work .header h1 {
		color: var(--data-color-main-bg);
		font-size: 1.9rem;
		font-weight: 500;
		}
     

      .wrapper-work .header p {
        color: #baddff;
		margin-bottom: .5rem;
      }

      .wrapper-work .search-container {
        margin-bottom: 1rem;
		position: relative;
      }

      .wrapper-work .search-bar {
        width: 100%;
        padding: 15px;
        border: none;
        border-radius: 50rem;
        font-size: 16px;
        box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
        
      }

      .wrapper-work .search-icon {
        color: var(--data-color-main);
		font-size: 1.5rem;
		position: absolute;
		right: 1rem;
		top: .65rem;
      }

      .wrapper-work .grid-work {
        display: grid;
        grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
        gap: 20px;
        margin-bottom: 30px;
      }

      .wrapper-work .company-card {
        background: white;
        padding: 1.5rem;
        border-radius: 0.4rem;
        display: flex;
        align-items: center;
        justify-content: center;
        min-height: 100px;
        transition: transform 0.2s;
        cursor: pointer;
      }

      .wrapper-work .company-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
      }

      .wrapper-work .company-card a {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 100%;
        height: 100%;
      }

      .wrapper-work .company-card img {
        max-width: 150px;
        max-height: 60px;
        object-fit: contain;
      }

      .wrapper-work .see-more {
        display: block;
        width: 200px;
        margin: 20px auto;
        padding: 15px 30px;
        background-color: white;
        border: none;
        border-radius: 25px;
        font-size: 16px;
        cursor: pointer;
        transition: background-color 0.2s;
        color: var(--data-color-main);
      }

      .wrapper-work .see-more:hover {
        background-color: #f0f0f0;
      }

      .wrapper-work .hidden {
        display: none;
      }

      .wrapper-work .search-container input {
        outline: unset;
      }
	  
	  .work-background{
		  background-color: var(--data-color-main);
		  position: relative;
	  }
	  
	  /** -- Tabs styling with side-menu **/
	  
	  .tabs-wrapper .tabs {
        display: flex;
        gap: 20px;
        margin-bottom: 20px;
        background: #f3f7fd;
        padding: 0.8rem 1rem;
        z-index: 100;
        border-radius: 30rem;
      }

      .tabs-wrapper .tab {
        padding: 15px 30px;
        border-radius: 50px;
        width: 25%;
        justify-content: center;
        align-items: center;
        cursor: pointer;
        display: flex;
        font-size: .85rem;
        gap: 10px;
        background: unset;
        border: none;
        color: var(--data-color-main);
        font-weight: 500;
        transition: all 0.3s ease;
      }

      .tabs-wrapper .tab.active {
        background: #c1d4f1;
        color: #3482cb;
      }

      /* Side menu styling */
      .tabs-wrapper .side-menu {
        position: fixed;
        right: -70px;
        top: 50%;
        transform: translateY(-50%);
        background: hsl(0deg 0% 100% / 60%);
        padding: 20px 10px;
        border-radius: 30px;
        box-shadow: 0rem 0rem 1.25rem rgba(30, 34, 40, 0.06);
        backdrop-filter: blur(20px);
        border: 1px solid #ebebeb;
        transition: right 0.3s ease;
        z-index: 1000;
      }

      .tabs-wrapper .side-menu.visible {
        right: 1.5rem;
      }

      .tabs-wrapper .side-menu-item {
        width: 40px;
        height: 40px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        margin: 10px 0;
        cursor: pointer;
        position: relative;
        background: var(--data-color-second-bg);
        border: none;
        color: #666;
      }

      .tabs-wrapper .side-menu-item.active {
        background: #c1d4f1;
        color: var(--data-color-accent);
      }

      .tabs-wrapper .progress-ring {
        position: absolute;
        top: -2px;
        left: -2px;
        width: 44px;
        height: 44px;
        transform: rotate(-90deg);
      }

      .tabs-wrapper .progress-ring circle {
        fill: none;
        stroke: var(--data-color-accent);
        stroke-width: 2;
        stroke-dasharray: 0;
        transition: stroke-dasharray 0.3s;
        display: none;
      }

      .tabs-wrapper .side-menu-item.active .progress-ring circle {
        display: block;
      }

      /* Tab content styling */
      .tabs-wrapper .tab-content {
        min-height: 100vh;
        padding: 20px;
        display: none;
      }

      .tabs-wrapper .tab-content.active {
        display: flex;
        flex-direction: column;
      }


      .tabs-wrapper {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 100%;
      }
      .tabs-wrapper h1 {
        color: var(--data-color-main);
        font-size: 0.9rem;
        font-weight: 500;
      }

      .tabs-wrapper h2 {
        color: var(--data-color-main-text);
        font-size: 1.5rem;
        font-weight: 500;
        margin-bottom: 2rem !important;
      }

      @media screen and (max-width: 576px) {
        .tabs-wrapper .side-menu {
          display: none;
        }
      }
	  
	  /** -- Tab content styling -- **/
	  
	   .wrapper-tabs-content {
        display: flex;
        justify-content: center;
      }

      .section-wrapper {
        margin-bottom: 7rem;
      }

      .section-wrapper .sticky-section {
        display: flex;
        gap: 40px;
        min-height: 60vh;
      }

      .section-wrapper:nth-child(even) .sticky-section {
        flex-direction: row-reverse;
      }

      .section-wrapper .image-column {
        flex: 1;
        position: relative;
      }

      .section-wrapper .sticky-image {
        position: sticky;
        top: 6rem;
        width: 100%;
      }

      .section-wrapper .content-column {
        flex: 1;
        padding: 20px 0;
      }

      .section-wrapper .content-block {
        margin-bottom: 40px;
      }

      .section-wrapper .content-block:last-child {
        margin-bottom: 0;
      }

      .section-wrapper h2 {
        margin-bottom: 1rem !important;
        color: var(--data-color-main-text);
		font-size: 1.2rem;
		font-weight: 500;
      }

      .section-wrapper p {
        color: var(--data-color-highlight-second-text);
		font-size: .8rem;
		font-weight: 500;
        line-height: 1.6;
        margin-bottom: 16px;
      }

      @media (max-width: 768px) {
        .section-wrapper .sticky-section {
          flex-direction: column !important;
          gap: 20px;
        }

        .section-wrapper  .sticky-image {
          position: relative;
          top: 0;
        }
      }
	  
	  
	  /** -- Map styling -- **/
	  
	  .map-container {
        position: relative;
        width: 100%;
        height: 25rem;
        background-color: #f0f4f8;
        overflow: hidden;
        border-radius: 1rem;
      }

      .map-bg {
        width: 100%;
        height: 100%;
        background-size: cover;
        background-position: center;
        position: relative;
        z-index: 1;
      }

      .map-wrapper h1 {
        color: var(--data-color-main);
        font-size: 0.9rem;
        font-weight: 500;
		text-align: center;
      }

      .map-wrapper h2 {
        color: var(--data-color-main-text);
        font-size: 1.5rem;
        font-weight: 500;
        margin-bottom: 2rem !important;
		text-align: center;
      }

      .map-element {
        position: absolute;
        width: 40px;
        height: 40px;
        background: white;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
        opacity: 0;
        transform: scale(0);
        transition: all 0.5s ease-out;
        z-index: 3;
      }

      .map-element.visible {
        opacity: 1;
        transform: scale(1);
      }

      .map-element i {
        font-size: 20px;
        color: var(--data-color-main);
      }

      .map-element::after {
        content: attr(data-label);
        position: absolute;
        bottom: -25px;
        white-space: nowrap;
        font-size: 12px;
        font-weight: 600;
        color: var(--data-color-main);
      }

      .connection-line {
        position: absolute;
        height: 2px;
        background: linear-gradient(
          90deg,
          rgba(52, 130, 203, 0.1) 0%,
          var(--data-color-accent) 25%,
          var(--data-color-accent) 75%,
          rgba(52, 130, 203, 0.1) 100%
        );
        background-size: 200% 100%;
        opacity: 0;
        transform-origin: left center;
        transition: opacity 0.5s ease-out;
        pointer-events: none;
        z-index: 2;
      }

      .connection-line.visible {
        opacity: 0.7;
        animation: data-transfer 4s linear infinite;
      }

      @keyframes data-transfer {
        0% {
          background-position: 100% 0%;
        }
        45% {
          background-position: -100% 0%;
        }
        50% {
          background-position: -100% 0%;
        }
        95% {
          background-position: 100% 0%;
        }
        100% {
          background-position: 100% 0%;
        }
      }

      .map-wrapper {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 100%;
      }

      @keyframes pulse {
        0% {
          box-shadow: 0 0 0 0 rgb(52 130 203 / 40%);
        }
        70% {
          box-shadow: 0 0 0 10px rgba(37, 99, 235, 0);
        }
        100% {
          box-shadow: 0 0 0 0 rgba(37, 99, 235, 0);
        }
      }

      .map-element.active {
        animation: pulse 2s infinite;
      }

/** -- Case studies styling -- **/ 
		.case-studies__title {
            text-align: center;
            color: #344767;
            margin-bottom: 40px;
        }
        .case-studies__grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 30px;
        }
        .case-studies__card {
            overflow: hidden;
            transition: transform 0.3s ease;
        }
  
        .case-studies__card_header img {
            width: 100%;
            height: 8rem;
            object-fit: cover;
			border-radius: .5rem;
        }
        .case-studies__card_body {
			padding: .5rem 2px 1rem 2px;
        }
        .case-studies__card_title {
            font-size: .9rem;
			margin-bottom: unset;
            color: #344767;
        }
        .case-studies__card_title a {
            text-decoration: none;
            color: inherit;
        }
        .case-studies__card_description {
            color: #67748e;
            font-size: 0.75rem;
            line-height: 1.5;
        }
		.case-studies-wrapper{
		display: flex;
        align-items: center;
        justify-content: center;
        width: 100%;
		}
		
		.case-studies-wrapper h1 {
        color: var(--data-color-main);
        font-size: 0.9rem;
        font-weight: 500;
		text-align: center;
      }

		.case-studies-wrapper h2 {
        color: var(--data-color-main-text);
        font-size: 1.5rem;
        font-weight: 500;
        margin-bottom: 2rem !important;
		text-align: center;
      }

		
        .case-studies-wrapper .pagination {
        display: flex;
        justify-content: flex-end;
        margin-top: 20px;
		box-shadow: unset;
      }
        .case-studies-wrapper .pagination button {
        background: none;
		border: unset;
		cursor: pointer;
		color: var(--data-color-accent);
		transition: all 0.3s ease;
		font-size: 1.2rem;
		width: 2.5rem;
		height: 2.5rem;
		border-radius: 10rem;
        }
		
		.case-studies-wrapper .pagination button:hover {
			background-color: #f3f7fd;
		}
		
		
        .case-studies-wrapper .pagination button:disabled {
            opacity: 0.5;
            cursor: not-allowed;
        }
        @media (max-width: 992px) {
            .case-studies__grid {
                grid-template-columns: repeat(2, 1fr);
            }
        }
        @media (max-width: 768px) {
            .case-studies__grid {
                grid-template-columns: 1fr;
            }
        }
        
        
    .hero-section-wrapper {
  width: 100%;
  aspect-ratio: 237 / 100;
  flex: 0 0 auto;
  mask: url(/sites/default/files/hero.svg) center center / cover no-repeat alpha;
  overflow: hidden;
  position: relative;
}

.hero-section-container {
  background: linear-gradient(
    78deg,
    #01eeff 1.27%,
    #06bbf8 37.23%,
    #125bca 92.47%
  );
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
}

.hero-title {
  font-size: 4rem;
  color: #fff;
  font-style: normal;
  text-align: left;
  margin: 0 auto;
  font-family: montserrat, sans-serif;
  text-transform: uppercase;
  font-weight: 500;
  line-height: 102%;
  width: 100%;
  margin-bottom: unset !important;
}

.left-part {
  display: flex;
  height: 100%;
  flex-direction: column;
  justify-content: center;
  text-align: left;
  align-items: flex-start;
  padding: 2rem 2rem 2rem 4rem;
}

.left-part hr {
  width: 100%;
  height: 2px;
  border-radius: 5rem;
  background: rgba(255, 255, 255, 0.3);
  margin: 1.75rem 0;
}

.buttons-wrapper {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 1rem;
}

.explore-btn {
    border: unset;
    background: #fff;
    color: #23272f;
    font-family: roboto, sans-serif;
    border-radius: 20rem;
    font-weight: 500;
    font-size: .9rem;
    line-height: 1.5rem;
    text-transform: uppercase;
    transition: all 0.3s ease-in-out;
    outline: none;
    height: 50px;
    padding: 0 .75rem;
}

.explore-btn:hover {
  transform: translateY(-0.15rem);
  box-shadow: 0rem 0.25rem 0.75rem rgba(30, 34, 40, 0.05);
}

.button-divider {
  font-size: .9rem;
  color: #fff;
  text-transform: uppercase;
  font-family: roboto, sans-serif;
}

.demo-btn {
    display: flex;
    background: transparent;
    align-items: center;
    gap: 1rem;
    max-width: 250px;
    font-size: .9rem;
    font-weight: 500;
    font-family: roboto, sans-serif;
    text-transform: uppercase;
    text-align: left;
    border: unset;
    color: #fff;
    border-radius: 40rem;
    padding: 0.5rem;
    transition: all 0.3s ease-in-out;
    outline: none;
    line-height: normal;
}

.demo-btn:hover {
  box-shadow: 0rem 0rem 1.25rem rgba(30, 34, 40, 0.06);
  backdrop-filter: blur(20px);
  background: hsla(0, 0%, 100%, 0.45);
  color: #ffffff;
}

.demo-btn .icon-wrapper {
    width: 50px;
    height: 50px;
    aspect-ratio: 1;
    background-color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.demo-btn .icon-wrapper svg {
  width: 30px;
}

.demo-btn .icon-wrapper svg path {
  fill: #3f78e0;
}

.explore-btn:focus,
.demo-btn:focus {
  outline: none;
  box-shadow: none;
}

/** Slider **/

.right-part {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding: 2rem 3.5rem 2rem 2rem;
  width: 50%;
  height: 100%;
}

.hero-slider {
  position: relative;
  width: min(720px, 92%);
  aspect-ratio: 4 / 3.33;
  margin-left: auto;
}

.slide {
  position: absolute;
  right: -5rem !important;
  left: 5rem !important;
  inset: 0;
  background-size: cover;
  background-position: center;
  border: unset;
  outline: 0.85rem solid rgba(195, 227, 255, 0.4);
  border-radius: 1.25rem;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.22);
  opacity: 0;
  visibility: hidden;
  transform: scale(0.985);
  transition: opacity 0.42s ease, visibility 0.42s ease, transform 0.42s ease;
}
.slide.is-active {
  opacity: 1;
  visibility: visible;
  transform: scale(1);
}

.slider-dots {
  position: absolute;
  left: 1.5rem;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.slider-dots .dot {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  border: 2px solid rgba(255, 255, 255, 0.9);
  background: transparent;
  padding: 0;
  cursor: pointer;
  transition: height 200ms ease, background-color 200ms ease,
    border-color 200ms ease, transform 120ms ease, opacity 200ms ease;
  opacity: 0.9;
  outline: none;
}
.slider-dots .dot.is-active {
  height: 28px;
  background: rgba(255, 255, 255, 0.95);
  border-color: rgba(255, 255, 255, 0.95);
}
.slider-dots .dot:hover {
  transform: scale(1.05);
}

@media (max-width: 1199.98px) {
  .right-part {
    padding: 2rem;
  }
  .hero-slider {
    width: 100%;
  }
  .slider-dots {
    left: -22px;
  }
}
@media (max-width: 768px) {
  .hero-slider {
    aspect-ratio: 4 / 3;
  }
  .slider-dots {
    left: -18px;
    gap: 10px;
  }
}

.iot-section {
  padding: 48px 0;
}
@media (min-width: 992px) {
  .iot-section {
    padding: 72px 0;
  }
}

.about-chip {
  display: inline-flex;
  align-items: center;
  padding: 0.35rem 1.5rem;
  border-radius: 999px;
  border: 1.5px solid #496677;
  font-weight: 400;
  color: #3d4b5a;
  font-size: 1rem;
  font-family: roboto, sans-serif;
}
.lead-title {
    font-size: 1.75rem;
    color: #496677;
    font-weight: 400;
    font-family: roboto, sans-serif;
}

.feature-card {
  background: #fff;
  border-radius: 22px;
  padding: 28px;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.01);
}
@media (min-width: 992px) {
  .feature-card {
    padding: 2.5rem 1.5rem;
  }
}

.feature-title {
  font-weight: 700;
  letter-spacing: 0.02em;
  color: #23272f;
  font-size: 1.05rem;
  text-transform: uppercase;
  font-family: roboto, sans-serif;
}
.icon-wrap {
    width: 100px;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 1rem 0;
}
.icon-wrap img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.feature-text {
    color: #667786;
    font-size: 0.75rem;
    font-family: roboto, sans-serif;
    line-height: 1.3;
    font-weight: 400;
}

.mini-block {
  height: 14px;
  border-radius: 6px;
  background: #e9eef3;
}
.muted {
  color: #6c7a89;
  font-weight: 400;
  font-family: roboto, sans-serif;
  font-size: 1rem;
}

.muted-img {
  height: 1.35rem;   
}

/** CPU Section **/

.cpu-section {
   display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 1.5rem 0 7.25rem;
}

.cpu-wrapper {
  width: 200px;
  aspect-ratio: 1 / 1;
  border-radius: 1rem;
  background-color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 1.5rem;
  z-index: 4;
}

.cpu-wrapper img {
  width: 60%;
  height: 60%;
  object-fit: contain;
  pointer-events: none;
}

.cpu-title {
  font-size: 2rem;
  color: #23272f;
  font-weight: 600;
  text-align: center;
  margin-bottom: 1rem;
  font-family: montserrat, sans-serif;
  display: flex;
  text-align: center;
}

/** Bento wrapper **/

.bento-wrapper {
  max-width: 1040px;
  margin: 24px auto;
  padding: 18px;
  background: #ecf2fa;
  border: 12px solid #3c4351;
  border-radius: 22px;
  z-index: 3;
  position: relative;
}

.bento-grid {
  display: grid;
  width: 100%;
  gap: 18px;
  grid-template-columns: repeat(12, 1fr);
  grid-template-areas:
    "a a a a b b b b c c c c"
    "d d d d d d d d e e e e";
}

.card {
  background: #ffffff;
  border-radius: 18px;
  border: 1px solid rgba(0, 0, 0, 0.06);
  box-shadow: 0 8px 24px rgba(25, 51, 89, 0.01);
  padding: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #9aa8b6;
  font-weight: 600;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.card--sm {
  min-height: 150px;
}
.card--lg {
  min-height: 300px;
}

.c1 {
  grid-area: a;
}
.c2 {
  grid-area: b;
}
.c3 {
  grid-area: c;
}
.c4 {
  grid-area: d;
}
.c5 {
  grid-area: e;
}
@media (max-width: 991px) {
  .bento-grid {
    grid-template-columns: 1fr;
    grid-template-areas:
      "a"
      "b"
      "c"
      "d"
      "e";
  }
  .card--lg {
    min-height: 240px;
  }
}

@media (min-width: 1400px) {
  .bento-wrapper {
    max-width: 1200px;
  }
  .card--sm {
    min-height: 170px;
  }
  .card--lg {
    min-height: 340px;
  }
}

/** Features Area **/

:root{
    --container-max: 1120px;
    --space-1: 8px;
    --space-2: 12px;
    --space-3: 16px;
    --space-4: 24px;
    --space-5: 32px;
    --card-bg: #ffffff;
    --card-border: rgba(0,0,0,.06);
    --card-shadow: 0 12px 34px rgba(28, 47, 88, .015);
    --text: #2a2f36;
    --muted: #65758b;
    --accent: #1e7bfd;
    --chip-bg: #f3f7fc;
    --chip-border: rgba(0,0,0,.05);
    --radius: 12px;
  }

  .features{
    padding-block: clamp(40px, 6vw, 80px);
  }

  .features__container{
    width: min(var(--container-max), 92vw);
    margin-inline: auto;
  }

  /* Header */
  .features__header{
    text-align: center;
    margin-bottom: var(--space-5);
  }
  .features__title{
    margin: 0 0 var(--space-2);
    font-weight: 600;
    font-size: clamp(1.6rem, 1.1rem + 1.5vw, 2.2rem);
    color: var(--text);
    font-family: montserrat, sans-serif;
  }
  .features__subtitle{
    margin: 0 auto;
    max-width: 780px;
    color: #6a7a90;
    line-height: 1.55;
    font-size: clamp(.95rem, .9rem + .2vw, 1rem);
  }

  .features__grid{
    display: grid;
    gap: var(--space-4);
    grid-template-columns: 1fr;
  }
  @media (min-width: 700px){
    .features__grid{ grid-template-columns: repeat(2, 1fr); } 
  }
  @media (min-width: 1024px){
    .features__grid{ grid-template-columns: repeat(3, 1fr); } 
  }

  /* Card */
  .feature-card{
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: var(--radius);
    box-shadow: var(--card-shadow);
    padding: 2rem 1.5rem 1.5rem 1.5rem;
    display: grid;
    grid-template-rows: auto auto auto 1fr;
    row-gap: var(--space-3);
    min-height: 360px;
    transition: transform .18s ease, box-shadow .18s ease;
    font-family: roboto, sans-serif;
  }
  .feature-card:hover{
    transform: translateY(-2px);
    box-shadow: 0 16px 40px rgba(28,47,88,.10);
  }

  .feature-card__title{
    margin: 0;
    font-weight: 500;
    font-size: 1.05rem;
    color: #2a2f36;
    line-height: 1.35;
    letter-spacing: .2px;
    text-align: center;
  }

  .feature-card__text{
    margin: 0;
    color: var(--muted);
    font-size: .9rem;
    line-height: 1.2;
    font-weight: 400;
  }

  .feature-card__link{
    align-self: start;
    display: inline-grid;
    grid-auto-flow: column;
    gap: .4rem;
    place-items: center;
    text-decoration: none;
    color: var(--accent);
    font-weight: 700;
    font-size: .95rem;
  }
  .feature-card__link::after{
    content: "→";
    transition: transform .18s ease;
  }
  .feature-card__link:hover::after{ transform: translateX(2px); }

  /* Media area */
  .feature-card__media{
    align-self: end;
    background: var(--chip-bg);
    border: 1px solid var(--chip-border);
    border-radius: 14px;
    padding: 18px;
    display: grid;
    place-items: center;
  }
  .feature-card__media img{
    width: 100%;
    height: auto;
    aspect-ratio: 16 / 7;
    object-fit: contain;
    display: block;
  }

  @media (prefers-reduced-motion: reduce){
    .feature-card,
    .feature-card__link::after{
      transition: none !important;
    }
  }
  
  .circuits {
    position: absolute;
    top: calc(-18% - .05rem);
    left: 50%;
    z-index: 2;
    transform: translateX(-50%);
  }
