/* Google Fonts Inter - Local Font Faces */
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 300;
  font-display: swap;
  src: url('fonts/GoogleFonts-Inter-Light.ttf') format('truetype');
}

@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('fonts/GoogleFonts-Inter-Regular.ttf') format('truetype');
}

@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url('fonts/GoogleFonts-Inter-Medium.ttf') format('truetype');
}

@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url('fonts/GoogleFonts-Inter-SemiBold.ttf') format('truetype');
}

@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url('fonts/GoogleFonts-Inter-Bold.ttf') format('truetype');
}

@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 800;
  font-display: swap;
  src: url('fonts/GoogleFonts-Inter-ExtraBold.ttf') format('truetype');
}

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

:root {

  --bg: #ffffff;
  --text: #222F3E;
  --card: #f2f2f2;
  --border: color-mix(in srgb, var(--dark-blue) 10%, transparent);
  ;
  --brand: #0f0f0f;

  /* Color Palette */
  --blue-primary: #0084FF;
  --blue-light: #339DFF;
  --blue-lighter: #A1DBFD;
  --blue-lightest: #D6F8FC;
  --dark-blue: #222F3E;

  /* Responsive */
  --screen-lg: 991px;
  --screen-md: 767px;
  --screen-sm: 479px;

  --border-radius: 20px;


  --max-width: 1724px;
  --max-height: 1117px;
  --header-height: 80px;
  --container-padding: 32px;
  --intro-padding-top: 50px;
  --section-padding-top: 100px;
}

@media (max-width: 991px) {
  :root {
    --header-height: 64px;
    --container-padding: 24px;
    --intro-padding-top: 56px;
    --section-padding-top: 72px;
  }
}

@media (max-width: 767px) {
  :root {
    --container-padding: 16px;
    --intro-padding-top: 48px;
    --section-padding-top: 56px;
  }
}

* {
  box-sizing: border-box;
}

html,
body {
  height: 100%;
}

body {
  margin: 0;
  font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, "Apple Color Emoji", "Segoe UI Emoji";
  font-size: 22px;
  color: var(--text);
  background: var(--bg);
  line-height: 1.5;
}

.container {
  width: min(var(--max-width), 100%);
  margin: 0 auto;
}

.skip-link {
  position: absolute;
  left: -9999px;
}

.skip-link:focus {
  left: 16px;
  top: 8px;
  background: #000;
  color: #fff;
  padding: 8px 12px;
  z-index: 1000;
}

/* Header */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--border);
}

.header-inner {
  display: flex;
  height: var(--header-height);
  align-items: center;
  justify-content: space-between;
  padding: 16px var(--container-padding);
}

.brand {
  font-weight: 700;
  letter-spacing: 0.2px;
  font-family: Inter Variable;
  font-style: normal;
  font-size: 20px;
  position: absolute;
  left: 0;
}

.brand svg {
  width: auto;
  height: 44px;
}

@media (max-width: 991px) {
  .brand svg {
    width: auto;
    height: 40px;
  }
}

@media (max-width: 767px) {
  .brand svg {
    width: auto;
    height: 36px;
  }
}


.nav {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

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

.nav .menu li:last-child {
  position: absolute;
  right: 0;
}

.nav-toggle {
  position: absolute;
  right: 0;
}

.nav a {
  text-decoration: none;
  color: var(--muted);
  position: relative;
  transition: color 0.2s ease;
  -webkit-tap-highlight-color: transparent;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
}

.nav a.active {
  color: var(--text);
}

li a[href="#contacts"] {
  color: #000000;
  text-decoration: none;
}

.nav a.active::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 100%;
  height: 1px;
  background: var(--blue-primary);
  border-radius: 1px;
}

.nav-toggle {
  display: none;
  background: none;
  border: 0;
  padding: 8px;
  outline: none;
  -webkit-tap-highlight-color: transparent;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
}

.nav-toggle:focus,
.nav-toggle:active,
.nav-toggle:focus-visible {
  outline: none;
  background: transparent;
  box-shadow: none;
}

.nav-toggle-bar {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--dark-blue);
  margin: 4px 0;
}

/* Sections */
.intro .container {
  display: flex;
  height: min(100vh, var(--max-height));
  flex-direction: column;
}

.intro-content {
  display: flex;
  padding: 0 var(--container-padding);
  padding-top: calc(var(--header-height) + var(--intro-padding-top));
  flex-direction: column;
}

.intro h1 {
  font-size: clamp(32px, 3vw, 64px);
  line-height: 1.1;
  margin: 0;
  font-weight: 500;
  padding-bottom: 10px;
}

.intro .sub {
  color: var(--blue-primary);
  font-weight: 500;
}

.intro-trio {
  display: flex;
  gap: var(--container-padding);
  overflow-x: auto;
  scrollbar-width: none;
  -ms-overflow-style: none;
  cursor: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none'%3E%3Cpath d='M8 6C8 4.89543 8.89543 4 10 4H14C15.1046 4 16 4.89543 16 6V8H18C19.1046 8 20 8.89543 20 10V14C20 15.1046 19.1046 16 18 16H16V18C16 19.1046 15.1046 20 14 20H10C8.89543 20 8 19.1046 8 18V16H6C4.89543 16 4 15.1046 4 14V10C4 8.89543 4.89543 8 6 8H8V6Z' fill='%23666'/%3E%3Cpath d='M10 6H14V8H10V6Z' fill='white'/%3E%3Cpath d='M6 10H8V14H6V10Z' fill='white'/%3E%3Cpath d='M16 10H18V14H16V10Z' fill='white'/%3E%3Cpath d='M10 16H14V18H10V16Z' fill='white'/%3E%3C/svg%3E") 12 12, grab;
  user-select: none;
  align-items: stretch;
  height: fit-content;
  justify-content: space-between;
}

.intro-trio:active {
  cursor: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none'%3E%3Cpath d='M8 6C8 4.89543 8.89543 4 10 4H14C15.1046 4 16 4.89543 16 6V8H18C19.1046 8 20 8.89543 20 10V14C20 15.1046 19.1046 16 18 16H16V18C16 19.1046 15.1046 20 14 20H10C8.89543 20 8 19.1046 8 18V16H6C4.89543 16 4 15.1046 4 14V10C4 8.89543 4.89543 8 6 8H8V6Z' fill='%23000'/%3E%3Cpath d='M10 6H14V8H10V6Z' fill='white'/%3E%3Cpath d='M6 10H8V14H6V10Z' fill='white'/%3E%3Cpath d='M16 10H18V14H6V10Z' fill='white'/%3E%3Cpath d='M10 16H14V18H10V16Z' fill='white'/%3E%3C/svg%3E") 12 12, grabbing;
  transform: translateY(0px);
}

.intro-trio::-webkit-scrollbar {
  display: none;
}

.trio-item {
  display: flex;
  flex-direction: column;
  cursor: pointer;
  user-select: none;
  opacity: 0.4;
  -webkit-tap-highlight-color: transparent;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  flex: 1;
}

.trio-item-content {
  display: flex;
  flex-direction: column;
  padding: 32px 0;
  gap: 8px;
}

.trio-item h3 {
  font-size: 22px;
  line-height: 1.15;
  margin: 0;
  font-weight: 400;
  color: var(--dark-blue);
}

.trio-item p {
  margin: 0;
  color: color-mix(in srgb, var(--dark-blue) 50%, transparent);
  line-height: 1.5;
  font-size: 20px;
  flex-grow: 1;
}

@media (max-width: 767px) {
  .trio-item h3 {
    font-size: 20px;
  }

  .trio-item p {
    font-size: 16px;
  }
}


.loading-line {
  width: 100%;
  height: 2px;
  background: var(--border);
  margin-top: auto;
  position: relative;
  overflow: hidden;
}

.loading-progress {
  width: 0%;
  height: 100%;
  background: var(--blue-primary);
  transition: width 0.1s linear;
}

.trio-item:hover .loading-line,
.trio-item:focus-within .loading-line {
  background: var(--border);
}

.trio-item.selected {
  opacity: 1;
}

.trio-item:hover {
  opacity: 1;
}


.trio-item.selected .loading-line {
  background: var(--border);
}

.trio-item.selected .loading-progress {
  background: var(--blue-primary);
}

.intro-media {
  width: 100%;
  height: 100%;
  border-radius: var(--border-radius);
  position: relative;
  overflow: hidden;
}

.intro-media-container {
  width: 100%;
  height: 100%;
  padding: var(--container-padding);

}

.intro-media picture {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 0.5s ease;
}


.intro-media picture.active {
  opacity: 1;
}

.intro-images {
  display: flex;
  gap: 12px;
  margin-top: 16px;
  justify-content: center;
}

/* Image sizing and display */
.intro-media img,
.media-md img,
.thumb img,
.about-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: var(--border-radius);
  display: block;
}


.thumb {
  position: relative;
  overflow: hidden;
}

.thumb img {
  height: auto;
  display: block;
}

.thumb::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 120px;
  background: linear-gradient(to bottom, transparent, white);
  pointer-events: none;
}

.about-photo img {
  height: 100%;
  object-fit: cover;
}

.media-md {
  height: auto;
  min-height: 280px;
}

.thumb {
  height: auto;
  min-height: 180px;
}

.about-photo {
  height: 100%;
  min-height: 600px;
}

h2 {
  font-size: 48px;
  line-height: 1.2;
  letter-spacing: -0.5px;
  font-weight: 400;
}

@media (max-width: 991px) {
  h2 {
    font-size: 36px;
  }
}

@media (max-width: 767px) {
  h2 {
    font-size: 28px;
  }
}



h3 {
  letter-spacing: -0.5px;
  font-size: 20px;
  margin: 0 0 12px;
}

h4 {
  margin: 0 0 8px;
  letter-spacing: -0.5px;
  font-size: 18px;
}

p {
  line-height: 1.6;
  color: var(--muted);
  font-size: 14px;
}

.blue-primary {
  color: var(--blue-primary);
  font-weight: 500;
}

.muted {
  color: var(--muted);
}

.label {
  color: var(--muted);
  font-size: 12px;
  margin-bottom: 6px;
}

.mission .container {
  padding: 0 var(--container-padding);

}

.mission-content-container {
  background: #A1DBFD40;
  border-radius: var(--border-radius);
  padding: 60px 0;
}

.mission h2 {
  margin-bottom: 32px;
  padding: 0 var(--container-padding);
}

.mission-grid {
  display: flex;
  gap: var(--container-padding);
  overflow-x: auto;
  padding: 0 var(--container-padding);
  scrollbar-width: 2px;
  -ms-overflow-style: none;
  cursor: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none'%3E%3Cpath d='M8 6C8 4.89543 8.89543 4 10 4H14C15.1046 4 16 4.89543 16 6V8H18C19.1046 8 20 8.89543 20 10V14C20 15.1046 19.1046 16 18 16H16V18C16 19.1046 15.1046 20 14 20H10C8.89543 20 8 19.1046 8 18V16H6C4.89543 16 4 15.1046 4 14V10C4 8.89543 4.89543 8 6 8H8V6Z' fill='%23666'/%3E%3Cpath d='M10 6H14V8H10V6Z' fill='white'/%3E%3Cpath d='M6 10H8V14H6V10Z' fill='white'/%3E%3Cpath d='M16 10H18V14H16V10Z' fill='white'/%3E%3Cpath d='M10 16H14V18H10V16Z' fill='white'/%3E%3C/svg%3E") 12 12, grab;
  user-select: none;
  width: 100%;
}

.mission .sub {
  color: var(--blue-primary);
}

.mission-grid:active {
  cursor: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none'%3E%3Cpath d='M8 6C8 4.89543 8.89543 4 10 4H14C15.1046 4 16 4.89543 16 6V8H18C19.1046 8 20 8.89543 20 10V14C20 15.1046 19.1046 16 18 16H16V18C16 19.1046 15.1046 20 14 20H10C8.89543 20 8 19.1046 8 18V16H6C4.89543 16 4 15.1046 4 14V10C4 8.89543 4.89543 8 6 8H8V6Z' fill='%23666'/%3E%3Cpath d='M10 6H14V8H10V6Z' fill='white'/%3E%3Cpath d='M6 10H8V14H6V10Z' fill='white'/%3E%3Cpath d='M16 10H18V14H6V10Z' fill='white'/%3E%3Cpath d='M10 16H14V18H10V16Z' fill='white'/%3E%3C/svg%3E") 12 12, grabbing;
  transform: translateY(0px);
}

.mission-grid::-webkit-scrollbar {
  display: block;
}

.mission-item {
  flex: 0 0 400px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  min-height: 110px;
}

.mission-item h4 {
  margin: 0;
  font-size: 25px;
  line-height: 1.15;
  font-weight: 400;
  color: var(--dark-blue);
}

.mission-item p {
  margin: 0;
  color: color-mix(in srgb, var(--dark-blue) 50%, transparent);
  font-size: 20px;
  line-height: 1.5;
  flex-grow: 1;
}
.mission-item {
  -webkit-tap-highlight-color: transparent;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
}


.mission-scroll-container {
  margin-top: 20px;
  padding: 8px var(--container-padding);
}

.mission-scroll-line {
  width: 100%;
  height: 2px;
  background: var(--border);
  position: relative;
  overflow: hidden;
}

.mission-scroll-progress {
  width: 0%;
  height: 100%;
  background: var(--blue-primary);
  transition: width 0.1s ease-out;
}

@media (max-width: 991px) {
  .mission-content-container {
    padding: 48px 0;
  }


  .mission-item p {
    font-size: 18px;
  }
}

@media (max-width: 767px) {

  .mission .container {
    margin-top: 48px;
    padding: 0;
  }

  .mission-content-container {
    padding: 40px 0;
    border-radius: 0;
  }

  .mission h2 {
    margin-bottom: 40px;
  }

  .mission-item h4 {
    font-size: 22px;
  }

  .mission-item p {
    font-size: 16px;
  }

  .mission-scroll-container {
    margin-top: 16px;
  }
}

.lead-image .media-lg {
  margin-top: 8px;
}

.technology-header {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 32px;
  align-items: center;
  padding: 0 var(--container-padding);
  margin-top: var(--section-padding-top);
}

@media (max-width: 991px) {
  .technology-header {
    grid-template-columns: 1fr;
  }
}

.technology-header h2 {
  margin-bottom: 32px;
}


.technology-header p {
  font-size: 20px;
  color: color-mix(in srgb, var(--dark-blue) 50%, transparent);
  line-height: 1.5;
  margin: 0;
}

@media (max-width: 991px) {
  .technology-header {
    gap: 24px;
  }

  .technology-header h2 {
    margin-bottom: 24px;
  }

  .technology-header p {
    font-size: 16px;
  }
}

.technology-header .sub {
  color: var(--blue-primary);
  font-weight: 400;
}

.text-black {
  color: var(--dark-blue);
}

.technology-subtitle-container {
  padding: var(--section-padding-top) 0;
}


.technology-subtitle {
  display: grid;
  grid-template-columns: 1fr 0.8fr;
  gap: 48px;
  align-items: start;
  margin-bottom: 32px;
  padding: 0 var(--container-padding);
}

.subtitle-left h2 {
  color: var(black);
  margin: 0 0 6px 0;
  text-wrap: balance;
  line-height: 1.2;
}

.subtitle-left .sub {
  color: var(--blue-primary);
}

@media (max-width: 991px) {
  .subtitle-right p {
    font-size: 16px !important;
  }

  .technology-subtitle {
    grid-template-columns: 1fr;
    gap: 24px;
  }
}



.subtitle-right p {
  font-size: 20px;
  color: var(--muted);
  line-height: 1.5;
  margin: 0;
}

.section-subtitle {
  font-size: clamp(18px, 2.2vw, 26px);
  font-weight: 500;
  color: var(--muted);
  margin: 24px 0;
}

.cards {
  display: grid;
  gap: 16px;
  padding: 0 var(--container-padding);
}

.cards.four {
  grid-template-columns: repeat(4, 1fr);
}

.cards .card {
  border: 1px solid var(--border);
  border-radius: var(--border-radius);
  padding: 16px;
  background: #fff;
}

.cards .card.soft {
  background: var(--card);
}

.card.media-card {
  padding: 0;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.card.media-card .card-body {
  padding: 16px;
}

.card-body h4 {
  color: var(--dark-blue);
  margin: 0;
  font-weight: 400;
  font-size: 20px;
  letter-spacing: -0.5px;
  line-height: 1.2;
  /* text-wrap: balance; */
  color: var(--dark-blue);
}

.card-body p {
  font-size: 20px;
  line-height: 1.2;
  color: color-mix(in srgb, var(--dark-blue) 50%, transparent);
}

.bullets {
  margin: 16px 0 0;
  padding: 0;
  color: #9a9a9a;
  font-size: 16px;
}

.bullet-item {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  margin-bottom: 8px;
}

.bullet-item img {
  flex-shrink: 0;
  margin-top: 2px;
}

.bullet-item span {
  font-size: 16px;
  color: color-mix(in srgb, var(--dark-blue) 40%, transparent);
  line-height: 1.25;
}

/* Bullet Point Icons - Force consistent sizing */
.bullet-item svg {
  width: 20px !important;
  height: 20px !important;
  flex-shrink: 0;
}

.about .container {
  padding: 0 var(--container-padding);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
  padding: 32px 0;
}

.about h2 {
  font-weight: 400;
  line-height: 1.2;
}

.about h2 .sub {
  color: var(--blue-primary);
}

.about h2 br+span {
  color: var(--blue-primary);
}

.about-content p {
  font-size: 18px;
  line-height: 1.6;
  color: var(--text);
  margin-bottom: 24px;
}

.about-testimonial {
  position: relative;
  padding-left: 20px;
}

.about-testimonial::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 2px;
  background: #0084FF;
  border-radius: 2px;
}

.testimonial-quote {
  font-style: italic;
  font-size: 18px;
  line-height: 1.6;
  color: color-mix(in srgb, var(--dark-blue) 50%, transparent);
  margin-bottom: 32px;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 16px;
}

.author-photo {
  width: 70px;
  height: 70px;
  border-radius: 8px;
  object-fit: cover;
}

.author-name {
  font-weight: 500;
  line-height: 1.3;
  font-size: 16px;
  color: var(--dark-blue);
}

.author-title {
  font-size: 16px;
  line-height: 1.3;
  color: color-mix(in srgb, var(--dark-blue) 50%, transparent);
}

.spark {
  left: 20px;
  top: 20px;
  font-size: 20px;
  color: var(--blue-primary);
  padding: 0px;
}

.signature {
  margin-top: 16px;
  font-weight: 600;
  text-align: right;
}

.signature:first-line {
  color: #000000;
}

.about-photo {
  min-height: 600px;
}

.team {
  margin-top: 28px;
}

.team h2 {
  padding-bottom: 32px;
}

.team .sub {
  color: var(--blue-primary);
}

.team-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}

.team-col {
  display: grid;
  gap: 20px;
}

.team-item h4 {
  margin: 0 0 8px;
  font-size: 20px;
  font-weight: 500;
  line-height: 1.2;
  color: var(--dark-blue);
}

.team-item p {
  margin: 0;
  font-size: 16px;
  line-height: 1.5;
  color: color-mix(in srgb, var(--dark-blue) 50%, transparent);
}



.values .container {
  padding: 0 var(--container-padding);
  padding-top: var(--section-padding-top);
  padding-bottom: var(--section-padding-top);
}

.values h2 {
  margin-bottom: 32px;
}

.values .sub {
  color: var(--blue-primary);
}

.values-grid {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 16px;
}

.values-right {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.value-item {
  display: flex;
  flex-direction: column;
  gap: 8px;
  border-radius: 12px;
  padding: 16px;
  background: #A1DBFD40;
  position: relative;
}

.value-item-large {
  min-height: 300px;
  justify-content: space-between;
}

.value-content {
  margin-top: auto;
}

.value-item {
  min-height: 200px;
  justify-content: space-between;
}

/* Tablet styles */
@media (max-width: 1024px) and (min-width: 768px) {
  .values-grid {
    grid-template-columns: 1fr;
    gap: 20px;
    max-width: 100%;
  }

  .values-right {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }

  .value-item-large {
    min-height: 250px;
  }

  .value-item {
    min-height: 180px;
  }
}

/* Phone styles */
@media (max-width: 767px) {
  .values-grid {
    grid-template-columns: 1fr;
    gap: 16px;
    max-width: 100%;
  }

  .values-right {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .value-item-large {
    min-height: 220px;
  }

  .value-item {
    min-height: 160px;
  }

  .about-grid {
    grid-template-columns: 1fr;
    gap: 40px;
    padding: 40px 0;
  }

  .about-testimonial {
    padding-left: 16px;
  }

  .about-testimonial::before {
    width: 3px;
  }

  .about h2 {
    margin-bottom: 24px;
  }

  .about-content p {
    font-size: 16px;
  }

  .testimonial-quote {
    font-size: 16px;
  }
}

.value-item h4 {
  margin: 0 0 8px;
  font-size: 18px;
  color: var(--blue-primary);
  font-weight: 500;
}

.value-item p {
  margin: 0;
  color: var(--muted);
  text-wrap: balance;
  font-size: 16px;
  line-height: 1.4;
}

.value-item {
  -webkit-tap-highlight-color: transparent;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
}


.value-icon {
  font-size: 24px;
  color: #c8c8c8;
  margin-bottom: 16px;
}

.contacts {
  background: var(--dark-blue);
  color: #fff;
}

.contacts .container {
  padding: 72px var(--container-padding);
}

.contacts-inner {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 24px;
}

.contacts-inner h2 {
  font-size: 50px;
  line-height: 1.2;
  letter-spacing: -0.5px;
  margin: 0 0 12px;
  font-weight: 400;
}

@media (max-width: 1032px) {
  .contacts-inner h2 {
    font-size: 44px;
  }
}

@media (max-width: 767px) {
  .contacts-inner h2 {
    font-size: 32px;
  }
}

.contacts-inner p {
  line-height: 1.6;
  max-width: 64ch;
  text-wrap: balance;
  color: #c8c8c8
}

.contacts address {
  font-style: normal;
}

.contacts .label {
  color: #c8c8c8;
  font-size: 16px;
}

.footer-logo {
  margin-bottom: 25px;
}

.footer-logo svg {
  height: auto;
  width: 175px;
}

@media (max-width: 767px) {
  .footer-logo svg {
    width: 168px;
  }
}

.contacts-cols {
  display: flex;
  gap: 80px;
  justify-content: flex-end;
  -webkit-tap-highlight-color: transparent;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
}

.contacts a {
  color: #fff;
}

.site-footer {
  border-top: 1px solid;
  background: var(--dark-blue);
  color: color-mix(in srgb, #fff 40%, transparent);
}

.footer-inner {
  display: grid;
  grid-template-columns: 1fr 0.3fr auto;
  align-items: center;
  gap: 60px;
  padding: 16px var(--container-padding);
}

.site-footer a {
  color: color-mix(in srgb, #fff 40%, transparent);
  text-decoration: none;
}

.site-footer .terms {
  color: #fff;
}

.go-up {
  justify-self: end;
  -webkit-tap-highlight-color: transparent;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
}

/* Tablet */
@media (max-width: 1023px) {
  .intro .container {
    grid-template-columns: 1fr;
  }

  .nav-toggle {
    display: inline-block;
  }

  .nav .menu {
    position: absolute;
    right: 16px;
    top: 56px;
    background: #fff;
    border: 1px solid var(--border);
    padding: 12px;
    border-radius: 20px;
    flex-direction: column;
    gap: 12px;
    display: none;
    min-width: 220px;
  }

  .nav .menu.open {
    display: flex;
  } 
  
  .trio-item {
    flex: 0 0 320px;
  }

  .technology-subtitle {
    grid-template-columns: 1fr;
  }

  .mission-item {
    flex: 0 0 240px;
  }

  .cards.four {
    grid-template-columns: 1fr 1fr;
  }

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

  .contacts-cols {
    justify-content: flex-start;
  }

  .contacts-inner {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 360px) {
  .contacts-cols {
    flex-direction: column;
    gap: 24px;
    align-items: flex-start;
  }

  .footer-inner {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 16px;
  }

  .go-up {
    justify-self: center;
    margin: 0 auto;
  }

  .nav .menu li:last-child {
    position: static;
  }

  /* Responsive image sizing for tablet */
  .intro-media {
    min-height: 300px;
  }

  .media-md {
    min-height: 240px;
  }

  .thumb {
    min-height: 160px;
  }

  .about-photo {
    min-height: 450px;
  }
}

/* Phone */
@media (max-width: 767px) {
  .nav-toggle {
    display: inline-block;
  }

  .nav .menu {
    position: absolute;
    right: 16px;
    top: 56px;
    background: #fff;
    border: 1px solid var(--border);
    padding: 12px;
    border-radius: 20px;
    flex-direction: column;
    gap: 12px;
    display: none;
    min-width: 220px;
    font-size: 18px;
  }

  .nav .menu.open {
    display: flex;
  }


  .trio-item {
    flex: 0 0 280px;
  }

  .mission-item {
    flex: 0 0 200px;
  }

  .value-item {
    flex: 0 0 200px;
  }

  .cards.four {
    grid-template-columns: 1fr 1fr;
  }

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

  .footer-inner {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 16px;
  }

  .go-up {
    justify-self: center;
    margin: 0 auto;
  }

  .nav .menu li:last-child {
    position: static;
  }

  /* Responsive image sizing for mobile */
  .intro-media {
    min-height: 250px;
  }

  .media-md {
    min-height: 200px;
  }

  .thumb {
    min-height: 140px;
  }

  .about-photo {
    min-height: 300px;
  }
}

@media (max-width: 415px) {
  .cards.four {
    grid-template-columns: 1fr;
  }
}

/* Ensure proper spacing around the icons and text */
.technology-header p {
  line-height: 1.6;
}

.technology-header .text-black {
  display: inline-block;
}

/* SVG Icon Styling */
svg {
  display: inline-block;
  vertical-align: middle;
}

/* Navigation and Technology Section Icons */
.nav svg,
.technology-header svg {
  margin-bottom: 4px;
}