﻿/* OrionSilicon Limited — Mobile-first styles */

:root {
  --color-navy: #0d2f6e;
  --color-blue: #1565d8;
  --color-blue-hover: #0d57c5;
  --color-text: #4a5a6e;
  --color-heading: #0d2f6e;
  --color-bg-light: #eef1f6;
  --color-white: #ffffff;
  --color-bg-capabilities: #e4e9f0;
  --color-capabilities-line: #c5ced8;
  --font-family: "Inter", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  --container-max: 1200px;
  --header-height: 72px;
  --shadow-card: 0 2px 12px rgba(13, 47, 110, 0.08);
  --shadow-card-hover: 0 4px 20px rgba(13, 47, 110, 0.12);
  --radius-btn: 4px;
  --radius-card: 6px;
  --transition: 0.2s ease;
}

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

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-family);
  font-size: 15px;
  line-height: 1.7;
  color: var(--color-text);
  background: var(--color-white);
  -webkit-font-smoothing: antialiased;
}

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

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

ul {
  list-style: none;
}

/* в”Ђв”Ђ Container в”Ђв”Ђ */
.container {
  width: 100%;
  max-width: var(--container-max);
  margin-inline: auto;
  padding-inline: 20px;
}

/* в”Ђв”Ђ Header в”Ђв”Ђ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--color-white);
  border-bottom: 1px solid var(--color-border);
  height: var(--header-height);
}

.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

.logo__img {
  height: 40px;
  width: auto;
  display: block;
  flex-shrink: 0;
}

/* Mobile nav toggle */
.nav-toggle {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 36px;
  height: 36px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.nav-toggle span {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--color-navy);
  border-radius: 1px;
  transition: var(--transition);
}

.nav-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.nav-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.main-nav {
  display: none;
  position: absolute;
  top: var(--header-height);
  left: 0;
  right: 0;
  background: var(--color-white);
  border-bottom: 1px solid var(--color-border);
  padding: 16px 20px 24px;
  box-shadow: var(--shadow-card);
}

.main-nav.is-open {
  display: block;
}

.main-nav__list {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.main-nav__link {
  display: block;
  padding: 10px 0;
  font-size: 15px;
  font-weight: 500;
  color: var(--color-navy);
  transition: color var(--transition);
}

.main-nav__link:hover,
.main-nav__link:focus-visible {
  color: var(--color-blue);
}

.main-nav__link--active {
  color: var(--color-blue);
  border-bottom: 2px solid var(--color-blue);
  display: inline-block;
  padding-bottom: 2px;
}

/* в”Ђв”Ђ Hero в”Ђв”Ђ */
.hero {
  position: relative;
  background-color: var(--color-navy);
  background-image: url("../images/banner-pcb.webp");
  background-repeat: no-repeat;
  background-position: 42% center;
  background-size: cover;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(5, 14, 38, 0.97) 0%,
    rgba(5, 14, 38, 0.94) 20%,
    rgba(5, 14, 38, 0.9) 40%,
    rgba(5, 14, 38, 0.82) 52%,
    rgba(5, 14, 38, 0.55) 62%,
    rgba(5, 14, 38, 0.2) 70%,
    transparent 76%
  );
}

.hero .container {
  position: relative;
  z-index: 1;
  padding-top: 80px;
  padding-bottom: 80px;
}

.hero__title {
  font-size: clamp(22px, 4.2vw, 34px);
  font-weight: 600;
  line-height: 1.3;
  color: var(--color-white);
  max-width: 640px;
  margin-bottom: 24px;
  letter-spacing: -0.01em;
}

.hero__title-line {
  white-space: nowrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 24px;
  font-family: inherit;
  font-size: 14px;
  font-weight: 600;
  color: var(--color-white);
  background: var(--color-blue);
  border: none;
  border-radius: var(--radius-btn);
  cursor: pointer;
  transition: background var(--transition), transform var(--transition);
}

.btn:hover,
.btn:focus-visible {
  background: var(--color-blue-hover);
}

.btn__arrow {
  font-size: 16px;
  line-height: 1;
  transition: transform var(--transition);
}

.btn:hover .btn__arrow {
  transform: translateX(3px);
}

/* в”Ђв”Ђ Banner strip в”Ђв”Ђ */
.banner-strip {
  width: 100%;
  height: 100px;
  margin: 3px 0;
  overflow: hidden;
  background-color: var(--color-navy);
  background-image: url("../images/hero-pcb.webp");
  background-repeat: no-repeat;
  background-position: center 58%;
  background-size: cover;
}

.section-divider {
  border: none;
  border-top: 1px solid var(--color-border);
  margin: 0 0 20px;
}

/* в”Ђв”Ђ Section common в”Ђв”Ђ */
.section {
  padding-block: 48px;
}

.section--compact {
  padding-block: 20px;
}

.section--light {
  background: var(--color-bg-light);
}

.section__title {
  font-size: 18px;
  font-weight: 700;
  color: var(--color-heading);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 24px;
  text-align: left;
}

/* в”Ђв”Ђ About в”Ђв”Ђ */
.about__grid {
  display: grid;
  gap: 36px;
}

.about__text p {
  margin-bottom: 16px;
}

.about__text p:last-child {
  margin-bottom: 0;
}

.about__services {
  display: grid;
  gap: 32px;
}

.about__service {
  text-align: center;
}

.about__service-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 16px;
}

.about__service-title {
  font-size: 15px;
  font-weight: 700;
  color: var(--color-heading);
  margin-bottom: 10px;
}

.about__service-text {
  font-size: 14px;
  line-height: 1.65;
}

/* в”Ђв”Ђ Technology Expertise в”Ђв”Ђ */
.expertise__grid {
  display: grid;
  gap: 24px;
}

.expertise-card {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  background: var(--color-white);
  border-radius: var(--radius-card);
  box-shadow: var(--shadow-card);
  padding: 28px 24px;
  transition: box-shadow var(--transition);
}

.expertise-card:hover {
  box-shadow: var(--shadow-card-hover);
}

.expertise-card__icon {
  width: 72px;
  height: 72px;
  flex-shrink: 0;
}

.expertise-card__body {
  flex: 1;
  min-width: 0;
}

.expertise-card__title {
  font-size: 16px;
  font-weight: 700;
  color: var(--color-heading);
  line-height: 1.3;
  margin-bottom: 16px;
}

.expertise-card__list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.expertise-card__item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  line-height: 1.5;
}

.expertise-card__check {
  flex-shrink: 0;
  width: 18px;
  height: 18px;
  margin-top: 2px;
  color: var(--color-blue);
}

/* в”Ђв”Ђ Projects в”Ђв”Ђ */
.projects__grid {
  display: grid;
  gap: 28px;
}

.project-card {
  background: var(--color-white);
  border-radius: var(--radius-card);
  box-shadow: var(--shadow-card);
  overflow: hidden;
  transition: box-shadow var(--transition);
}

.project-card:hover {
  box-shadow: var(--shadow-card-hover);
}

.project-card__image {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

.project-card__body {
  padding: 20px 22px 24px;
}

.project-card__title {
  font-size: 15px;
  font-weight: 700;
  color: var(--color-heading);
  margin-bottom: 10px;
}

.project-card__text {
  font-size: 14px;
  line-height: 1.65;
}

/* в”Ђв”Ђ Footer placeholder (minimal) в”Ђв”Ђ */
.site-footer {
  background: var(--color-navy);
  color: rgba(255, 255, 255, 0.75);
  padding: 24px 0;
  font-size: 13px;
  text-align: center;
}

/* в”Ђв”Ђ Tablet в”Ђв”Ђ */
@media (min-width: 768px) {
  .container {
    padding-inline: 40px;
  }

  .nav-toggle {
    display: none;
  }

  .main-nav {
    display: block;
    position: static;
    background: none;
    border: none;
    padding: 0;
    box-shadow: none;
  }

  .main-nav__list {
    flex-direction: row;
    align-items: center;
    gap: 28px;
  }

  .main-nav__link {
    padding: 4px 0;
    font-size: 14px;
  }

  .section {
    padding-block: 60px;
  }

  .section--compact {
    padding-block: 20px;
  }

  .about__grid {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: start;
  }

  .about__services {
    grid-template-columns: 1fr 1fr;
    gap: 0;
  }

  .about__service {
    padding: 0 20px;
  }

  .about__service:first-child {
    border-right: 1px solid var(--color-border);
  }

  .expertise__grid {
    grid-template-columns: 1fr 1fr;
    gap: 28px;
  }

  .projects__grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
  }
}

/* в”Ђв”Ђ Desktop в”Ђв”Ђ */
@media (min-width: 1024px) {
  .container {
    padding-inline: 48px;
  }

  .logo__img {
    height: 44px;
  }

  .main-nav__list {
    gap: 36px;
  }

  .section {
    padding-block: 72px;
  }

  .section--compact {
    padding-block: 20px;
  }

  .section__title {
    font-size: 20px;
    margin-bottom: 28px;
  }

  .about__grid {
    grid-template-columns: 1.25fr 0.375fr 0.375fr;
    gap: 32px;
    align-items: start;
  }

  .about__services {
    display: contents;
  }

  .about__service {
    padding: 0 20px;
  }

  .about__service:first-child {
    border-right: 1px solid var(--color-border);
  }

  .about__text {
    padding-right: 24px;
  }

  .expertise-card {
    padding: 32px 28px;
    gap: 24px;
  }

  .expertise-card__icon {
    width: 80px;
    height: 80px;
  }

  .project-card__body {
    padding: 22px 24px 28px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    transition-duration: 0.01ms !important;
  }
}

/* в”Ђв”Ђ IC Design page в”Ђв”Ђ */
.page-ic-design {
  background: var(--color-bg-light);
}

.page-sub {
  background: var(--color-bg-light);
}

.page-hero--split {
  position: relative;
  background: var(--color-navy);
  overflow: hidden;
}

.page-hero--split > .container {
  position: relative;
  z-index: 2;
  padding-top: 80px;
  padding-bottom: 80px;
}

.page-hero__content {
  max-width: 560px;
}

.page-hero__title {
  font-size: clamp(26px, 4vw, 36px);
  font-weight: 600;
  line-height: 1.25;
  color: var(--color-white);
  margin-bottom: 24px;
  letter-spacing: -0.01em;
}

.page-hero__text {
  color: rgba(255, 255, 255, 0.88);
  font-size: 15px;
  line-height: 1.7;
  max-width: 520px;
  margin-bottom: 28px;
}

.page-hero__media {
  position: relative;
  min-height: 220px;
  overflow: hidden;
}

.page-hero__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.page-hero__media::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, var(--color-navy) 0%, transparent 40%);
  z-index: 1;
}

.section__title--center {
  text-align: center;
}

.section__title--underline {
  margin-bottom: 36px;
}

.section__title--underline::after {
  content: "";
  display: block;
  width: 48px;
  height: 3px;
  background: var(--color-blue);
  margin: 14px auto 0;
}

.design-grid {
  display: grid;
  gap: 20px;
}

.design-card {
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-card);
  padding: 32px 24px;
  text-align: center;
}

.design-card__icon {
  width: 72px;
  height: 72px;
  margin: 0 auto 20px;
}

.design-card__title {
  font-size: 15px;
  font-weight: 700;
  color: var(--color-heading);
  margin-bottom: 12px;
  line-height: 1.35;
}

.design-card__text {
  font-size: 14px;
  line-height: 1.65;
}

.capabilities-section--white {
  background: var(--color-white);
}

.capabilities__panel--framed {
  border: 1px solid var(--color-capabilities-line);
  border-radius: var(--radius-card);
  overflow: hidden;
}

.capabilities__panel--framed::after {
  display: none;
}

.capabilities__panel--framed .capabilities__lists {
  position: relative;
}

@media (max-width: 767px) {
  .capabilities__panel--framed .capabilities__lists::before {
    content: "";
    position: absolute;
    top: 0;
    left: 24px;
    right: 24px;
    height: 1px;
    width: auto;
    background: var(--color-capabilities-line);
  }

  .capabilities__panel--framed .capabilities__lists::after {
    display: none;
  }
}

@media (min-width: 768px) {
  .capabilities__panel--framed .capabilities__lists::before,
  .capabilities__panel--framed .capabilities__lists::after {
    content: "";
    position: absolute;
    top: 24px;
    bottom: 24px;
    width: 1px;
    background: var(--color-capabilities-line);
  }

  .capabilities__panel--framed .capabilities__lists::before {
    left: 0;
  }

  .capabilities__panel--framed .capabilities__lists::after {
    left: 50%;
    transform: translateX(-50%);
  }
}

.capabilities-section .section-divider {
  border: none;
  border-top: 1px solid var(--color-capabilities-line);
  margin: 0;
  background: var(--color-bg-capabilities);
}

.capabilities-section .section-divider--bottom {
  margin: 0;
  border-top: 1px solid var(--color-capabilities-line);
}

.capabilities__box {
  background: var(--color-bg-capabilities);
  border-radius: var(--radius-card);
}

.capabilities__panel {
  display: grid;
  gap: 0;
  background: var(--color-bg-capabilities);
  position: relative;
}

.capabilities__text {
  padding: 24px 28px;
}

.capabilities__text .section__title {
  margin-bottom: 16px;
}

.capabilities__text p {
  margin-bottom: 0;
}

.capabilities__lists {
  display: grid;
  gap: 12px;
  background: var(--color-bg-capabilities);
  padding: 24px 28px;
  position: relative;
}

.capabilities__lists::before {
  content: "";
  position: absolute;
  top: 20px;
  left: 28px;
  right: 28px;
  height: 1px;
  background: var(--color-capabilities-line);
}

.capabilities__col {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.capabilities__item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 14px;
  line-height: 1.5;
}

.capabilities__check {
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--color-blue);
  color: var(--color-white);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 1px;
}

.capabilities__check svg {
  width: 12px;
  height: 12px;
}

.tech-section {
  text-align: center;
  padding-block: 20px;
}

.page-ic-design #process {
  padding-block: 20px;
}

.tech-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 8px 4px;
  font-size: 14px;
  color: var(--color-heading);
  font-weight: 500;
  margin-bottom: 0;
}

.tech-list--top {
  margin-bottom: 20px;
}

.tech-nodes__box {
  background: var(--color-bg-capabilities);
  border-radius: var(--radius-card);
}

.tech-section .tech-divider {
  border: none;
  border-top: 1px solid var(--color-capabilities-line);
  margin: 0;
  background: var(--color-bg-capabilities);
}

.tech-nodes__inner {
  padding: 20px 24px;
}

.tech-subtitle {
  font-size: 14px;
  font-weight: 600;
  color: var(--color-blue);
  margin-bottom: 14px;
}

.tech-list--nodes {
  margin-bottom: 0;
}

.tech-list__dot {
  color: var(--color-blue);
  font-size: 10px;
  padding: 0 6px;
}

.process-flow {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 28px;
}

.process-row {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: start;
  width: 100%;
  max-width: 380px;
  column-gap: 12px;
}

.process-step {
  width: 100%;
  max-width: 148px;
  text-align: center;
  justify-self: center;
}

.process-step__circle {
  width: 72px;
  height: 72px;
  margin: 0 auto 12px;
  border: 2px solid var(--color-blue);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--color-white);
}

.process-step__icon {
  width: 36px;
  height: 36px;
}

.process-step__label {
  font-size: 11px;
  font-weight: 600;
  color: var(--color-heading);
  line-height: 1.35;
}

.process-arrow {
  flex: 0 0 auto;
  color: var(--color-blue);
  font-size: 18px;
  padding-top: 28px;
  line-height: 1;
  justify-self: center;
}

.process-arrow--bridge {
  display: none;
}

.cta-block {
  position: relative;
  background-color: var(--color-navy);
  background-image: url("../images/banner-pcb.webp");
  background-size: cover;
  background-position: center;
  overflow: hidden;
}

.cta-block--projects {
  background-image: url("../images/projects-cta.webp");
  background-position: center 50%;
}

.cta-block--contact {
  background-image: url("../images/contact-cta.webp");
  background-position: center 30%;
}

.cta-block::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(5, 14, 38, 0.92) 0%,
    rgba(5, 14, 38, 0.75) 55%,
    rgba(5, 14, 38, 0.45) 100%
  );
}

.cta-block .container {
  position: relative;
  z-index: 1;
  padding-top: 80px;
  padding-bottom: 80px;
}

.cta-block__title {
  font-size: clamp(24px, 3.5vw, 32px);
  font-weight: 600;
  color: var(--color-white);
  margin-bottom: 16px;
  letter-spacing: -0.01em;
}

.cta-block__text {
  color: rgba(255, 255, 255, 0.88);
  font-size: 15px;
  line-height: 1.7;
  max-width: 480px;
  margin-bottom: 28px;
}

@media (min-width: 768px) {
  .page-hero__media {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 50%;
    min-height: auto;
    z-index: 0;
  }

  .page-hero__media::before {
    background: linear-gradient(90deg, var(--color-navy) 0%, transparent 32%);
  }

  .design-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }

  .capabilities__panel {
    grid-template-columns: 1fr 1fr;
    align-items: stretch;
  }

  .capabilities__panel::after {
    content: "";
    position: absolute;
    top: 24px;
    bottom: 24px;
    left: 50%;
    width: 1px;
    background: var(--color-capabilities-line);
    transform: translateX(-50%);
  }

  .capabilities__lists {
    padding: 28px 32px;
    grid-template-columns: 1fr 1fr;
    gap: 12px 32px;
  }

  .capabilities__lists::before {
    display: none;
  }

  .capabilities__text {
    padding: 28px 32px;
  }

  .process-flow {
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: center;
    align-items: flex-start;
    gap: 4px;
    max-width: none;
  }

  .process-row {
    display: contents;
  }

  .process-step {
    width: 130px;
    max-width: none;
  }

  .process-arrow {
    padding-top: 28px;
  }

  .process-arrow--bridge {
    display: block;
  }
}

@media (min-width: 1024px) {
  .design-grid {
    grid-template-columns: repeat(4, 1fr);
  }

  .design-card__icon {
    width: 80px;
    height: 80px;
  }

  .process-step {
    width: 140px;
  }

  .process-step__circle {
    width: 80px;
    height: 80px;
  }

  .process-step__icon {
    width: 40px;
    height: 40px;
  }

  .process-step__label {
    font-size: 12px;
  }
}

/* в”Ђв”Ђ Electronic Systems page в”Ђв”Ђ */
.page-hero--es {
  position: relative;
  background-color: var(--color-navy);
  background-image: url("../images/banner-pcb.webp");
  background-repeat: no-repeat;
  background-position: 42% center;
  background-size: cover;
  overflow: hidden;
}

.page-hero--es::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(5, 14, 38, 0.97) 0%,
    rgba(5, 14, 38, 0.94) 20%,
    rgba(5, 14, 38, 0.9) 40%,
    rgba(5, 14, 38, 0.82) 52%,
    rgba(5, 14, 38, 0.55) 62%,
    rgba(5, 14, 38, 0.2) 70%,
    transparent 76%
  );
}

.page-hero--es .container {
  position: relative;
  z-index: 1;
  padding-top: 80px;
  padding-bottom: 80px;
}

.develop-section {
  background: var(--color-white);
}

.develop-section .container {
  container-type: inline-size;
  container-name: develop;
}

.develop__grid {
  display: grid;
  gap: 32px;
  align-items: start;
}

.develop__media {
  width: 100%;
}

.develop__image {
  width: 100%;
  border-radius: var(--radius-card);
  object-fit: cover;
  aspect-ratio: 1 / 1;
}

.develop__content {
  display: flex;
  flex-direction: column;
  min-height: 0;
}

.develop__intro p {
  margin-bottom: 12px;
  font-size: 14px;
  line-height: 1.6;
}

.develop__intro p:last-child {
  margin-bottom: 0;
}

.develop__content .section__title {
  margin-bottom: 12px;
}

.develop-list {
  margin-top: 16px;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.develop-list__item {
  display: flex;
  gap: 12px;
  align-items: stretch;
  padding: 12px 0;
  border-top: 1px solid var(--color-border);
}

.develop-list__item:first-child {
  border-top: none;
  padding-top: 0;
}

.develop-list__item:last-child {
  padding-bottom: 0;
}

.develop-list__bar {
  flex-shrink: 0;
  width: 4px;
  border-radius: 2px;
  background: var(--color-blue);
}

.develop-list__title {
  font-size: 14px;
  font-weight: 700;
  color: var(--color-blue);
  margin-bottom: 4px;
  line-height: 1.3;
}

.develop-list__text {
  font-size: 13px;
  line-height: 1.5;
  margin: 0;
}

.capabilities__panel--es {
  grid-template-columns: 1fr;
}

.capabilities__lists--es {
  gap: 12px;
}

@media (min-width: 768px) {
  .develop__grid {
    grid-template-columns: 1fr 1fr;
    gap: 36px;
    align-items: stretch;
  }

  .develop__content {
    display: flex;
    flex-direction: column;
    min-height: 100%;
    overflow: hidden;
  }

  .develop__intro {
    flex-shrink: 0;
  }

  .develop-list {
    margin-top: 16px;
    flex: 1;
    min-height: 0;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
  }

  .develop-list__item {
    flex: 1;
    display: flex;
    align-items: stretch;
    padding: 10px 0;
    border-top: 1px solid var(--color-border);
  }

  .develop-list__item:first-child {
    border-top: none;
    padding-top: 0;
  }

  .develop-list__item:last-child {
    padding-bottom: 0;
  }

  .develop-list__bar {
    align-self: stretch;
  }

  .develop-list__body {
    display: flex;
    flex-direction: column;
    justify-content: center;
  }

  .capabilities__panel--es {
    grid-template-columns: 0.85fr 1.15fr;
  }

  .capabilities__lists--es {
    grid-template-columns: 1fr 1fr;
    gap: 12px 28px;
  }
}

/* в”Ђв”Ђ Projects page в”Ђв”Ђ */
.page-hero--projects {
  position: relative;
  background-color: var(--color-navy);
  background-image: url("../images/projects-hero.webp");
  background-repeat: no-repeat;
  background-position: right 35%;
  background-size: cover;
  overflow: hidden;
}

.page-hero--projects .container {
  position: relative;
  z-index: 1;
  padding-top: 80px;
  padding-bottom: 80px;
}

.page-hero__title--accent::after {
  content: "";
  display: block;
  width: 48px;
  height: 3px;
  background: var(--color-blue);
  margin-top: 14px;
}

.projects-page {
  background: var(--color-bg-light);
}

.project-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 28px;
}

.project-filter {
  padding: 8px 16px;
  font-family: inherit;
  font-size: 13px;
  font-weight: 500;
  color: var(--color-heading);
  background: var(--color-white);
  border: 1px solid #c5ced8;
  border-radius: var(--radius-btn);
  cursor: pointer;
  transition: background var(--transition), color var(--transition), border-color var(--transition);
}

.project-filter:hover,
.project-filter:focus-visible {
  border-color: var(--color-blue);
  color: var(--color-blue);
}

.project-filter--active {
  background: var(--color-blue);
  border-color: var(--color-blue);
  color: var(--color-white);
}

.project-filter--active:hover,
.project-filter--active:focus-visible {
  background: var(--color-blue-hover);
  border-color: var(--color-blue-hover);
  color: var(--color-white);
}

.project-showcase-list {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.project-showcase {
  display: grid;
  background: var(--color-white);
  border-radius: var(--radius-card);
  box-shadow: var(--shadow-card);
  overflow: hidden;
}

.project-showcase[hidden] {
  display: none;
}

.project-showcase__media {
  overflow: hidden;
}

.project-showcase__image {
  width: 100%;
  height: 100%;
  min-height: 220px;
  object-fit: cover;
}

.project-showcase__body {
  display: flex;
  flex-direction: column;
  padding: 24px 22px 28px;
}

.project-showcase__title {
  font-size: clamp(20px, 2.5vw, 26px);
  font-weight: 700;
  color: var(--color-heading);
  margin-bottom: 12px;
  line-height: 1.25;
  letter-spacing: -0.02em;
}

.project-showcase__text {
  font-size: 14px;
  line-height: 1.65;
  margin-bottom: 20px;
}

.project-showcase__features {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px 12px;
  margin-bottom: 20px;
}

.project-feature {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 8px;
}

.project-feature__icon {
  width: 36px;
  height: 36px;
  color: var(--color-blue);
  flex-shrink: 0;
}

.project-feature__label {
  font-size: 11px;
  font-weight: 500;
  color: var(--color-heading);
  line-height: 1.3;
}

.project-showcase__meta {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-bottom: 24px;
  border-top: 1px solid #c5ced8;
}

.project-showcase__meta-row {
  display: grid;
  grid-template-columns: 110px 1fr;
  gap: 12px;
  padding: 10px 0;
  border-bottom: 1px solid #c5ced8;
  font-size: 13px;
  line-height: 1.5;
}

.project-showcase__meta-row dt {
  font-weight: 600;
  color: var(--color-heading);
}

.project-showcase__meta-row dd {
  margin: 0;
  color: var(--color-text);
}

.project-showcase__footer {
  margin-top: auto;
  display: flex;
  justify-content: flex-end;
}

@media (min-width: 768px) {
  .project-filters {
    margin-bottom: 32px;
    gap: 12px;
  }

  .project-filter {
    font-size: 14px;
    padding: 9px 18px;
  }

  .project-showcase {
    grid-template-columns: 0.9fr 1.1fr;
    align-items: stretch;
  }

  .project-showcase__image {
    min-height: 100%;
    aspect-ratio: auto;
  }

  .project-showcase__body {
    padding: 32px 36px;
    min-height: 100%;
  }

  .project-showcase__features {
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
    margin-bottom: 24px;
  }

  .project-showcase__meta-row {
    grid-template-columns: 120px 1fr;
    padding: 12px 0;
  }
}

@media (min-width: 1024px) {
  .project-showcase-list {
    gap: 28px;
  }

  .project-showcase__body {
    padding: 36px 40px;
  }
}

/* в”Ђв”Ђ About Company page в”Ђв”Ђ */
.page-hero--about {
  position: relative;
  background-color: var(--color-navy);
  background-image: url("../images/about-hero.webp");
  background-repeat: no-repeat;
  background-position: center right;
  background-size: cover;
  overflow: hidden;
}

.page-hero--about::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(5, 14, 38, 0.97) 0%,
    rgba(5, 14, 38, 0.92) 30%,
    rgba(5, 14, 38, 0.75) 50%,
    rgba(5, 14, 38, 0.35) 68%,
    transparent 82%
  );
}

.page-hero--about .container {
  position: relative;
  z-index: 1;
  padding-top: 80px;
  padding-bottom: 80px;
}

.about-who-section {
  background: var(--color-white);
}

.about-who__grid {
  display: grid;
  gap: 32px;
  align-items: stretch;
}

.about-block__title {
  font-size: clamp(20px, 2.5vw, 24px);
  font-weight: 700;
  color: var(--color-heading);
  margin-bottom: 20px;
  letter-spacing: -0.01em;
  text-transform: none;
  text-align: left;
}

.about-block__title--accent::after {
  content: "";
  display: block;
  width: 48px;
  height: 3px;
  background: var(--color-blue);
  margin-top: 12px;
}

.about-who__text p {
  margin-bottom: 16px;
  font-size: 14px;
  line-height: 1.7;
}

.about-who__text p:last-child {
  margin-bottom: 0;
}

.about-mission-card {
  background: var(--color-bg-capabilities);
  border-radius: var(--radius-card);
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  gap: 24px;
  height: 100%;
}

.about-mission-card__block {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.about-mission-card__icon {
  width: 40px;
  height: 40px;
  flex-shrink: 0;
  color: var(--color-blue);
}

.about-mission-card__heading {
  font-size: 15px;
  font-weight: 700;
  color: var(--color-heading);
  margin-bottom: 8px;
  line-height: 1.3;
}

.about-mission-card__text {
  font-size: 14px;
  line-height: 1.65;
  margin: 0;
}

.about-mission-card__divider {
  border: none;
  border-top: 1px solid #c5ced8;
  margin: 0;
}

.about-values-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 4px;
}

.about-values-list__item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  line-height: 1.4;
  color: var(--color-text);
}

.about-values-list__check {
  flex-shrink: 0;
  width: 16px;
  height: 16px;
  color: var(--color-blue);
}

.about-stats {
  background: var(--color-bg-capabilities);
  padding: 36px 0;
}

.about-stats__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px 20px;
}

.about-stat {
  display: flex;
  flex-direction: row;
  align-items: center;
  text-align: left;
  gap: 14px;
  padding: 0 12px;
}

.about-stat__icon {
  width: 48px;
  height: 48px;
  flex-shrink: 0;
  color: var(--color-heading);
}

.about-stat__text {
  display: flex;
  flex-direction: column;
  gap: 4px;
  min-width: 0;
}

.about-stat__value {
  font-size: clamp(20px, 2.5vw, 26px);
  font-weight: 700;
  color: var(--color-heading);
  line-height: 1.1;
  margin: 0;
}

.about-stat__label {
  font-size: 13px;
  line-height: 1.35;
  color: var(--color-text);
  margin: 0;
}

.about-projects-section {
  background: var(--color-bg-light);
}

.about-projects-section .section__title--underline {
  text-align: center;
  text-transform: none;
  font-size: clamp(20px, 2.5vw, 24px);
  letter-spacing: -0.01em;
}

.project-card__link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 14px;
  font-size: 14px;
  font-weight: 600;
  color: var(--color-blue);
  transition: color var(--transition);
}

.project-card__link:hover,
.project-card__link:focus-visible {
  color: var(--color-blue-hover);
}

@media (min-width: 768px) {
  .about-who__grid {
    grid-template-columns: 1.15fr 0.85fr;
    gap: 40px;
  }

  .about-mission-card {
    padding: 32px 28px;
  }

  .about-stats__grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
  }

  .about-stat {
    position: relative;
    gap: 16px;
    padding: 0 20px;
    justify-content: center;
  }

  .about-stat__icon {
    width: 56px;
    height: 56px;
  }

  .about-stat:not(:last-child)::after {
    content: "";
    position: absolute;
    top: 10%;
    right: 0;
    width: 1px;
    height: 80%;
    background: #c5ced8;
  }
}

@media (min-width: 1024px) {
  .about-mission-card {
    padding: 36px 32px;
    gap: 28px;
  }

  .about-who__text p {
    font-size: 15px;
  }
}

/* в”Ђв”Ђ Contacts page в”Ђв”Ђ */
.page-hero--contact {
  position: relative;
  background-color: var(--color-navy);
  background-image: url("../images/contact-hero.webp");
  background-repeat: no-repeat;
  background-position: center right;
  background-size: cover;
  overflow: hidden;
}

.page-hero--contact::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(5, 14, 38, 0.97) 0%,
    rgba(5, 14, 38, 0.92) 30%,
    rgba(5, 14, 38, 0.75) 48%,
    rgba(5, 14, 38, 0.35) 68%,
    transparent 82%
  );
}

.page-hero--contact .container {
  position: relative;
  z-index: 1;
  padding-top: 80px;
  padding-bottom: 80px;
}

.contact-section {
  background: var(--color-white);
}

.contact__grid {
  display: grid;
  gap: 40px;
  align-items: start;
}

.contact-info__list {
  display: flex;
  flex-direction: column;
}

.contact-info__item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 20px 0;
  border-bottom: 1px solid #c5ced8;
}

.contact-info__item:first-child {
  padding-top: 0;
}

.contact-info__item:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.contact-info__icon-wrap {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: rgba(21, 101, 216, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-info__icon {
  width: 28px;
  height: 28px;
  flex-shrink: 0;
  color: var(--color-heading);
}

.contact-info__body {
  min-width: 0;
  padding-top: 4px;
}

.contact-info__label {
  font-size: 14px;
  font-weight: 700;
  color: var(--color-heading);
  margin-bottom: 6px;
  line-height: 1.3;
}

.contact-info__text {
  font-size: 14px;
  line-height: 1.65;
  margin: 0;
}

.contact-info__text a {
  color: var(--color-blue);
  transition: color var(--transition);
}

.contact-info__text a:hover,
.contact-info__text a:focus-visible {
  color: var(--color-blue-hover);
}

.contact-form-card {
  background: var(--color-white);
  border-radius: var(--radius-card);
  box-shadow: var(--shadow-card);
  padding: 28px 24px;
}

.contact-form-card__title {
  font-size: clamp(20px, 2.5vw, 24px);
  font-weight: 700;
  color: var(--color-heading);
  margin-bottom: 10px;
  letter-spacing: -0.01em;
}

.contact-form-card__intro {
  font-size: 14px;
  line-height: 1.65;
  margin-bottom: 24px;
}

.contact-form__row {
  display: grid;
  gap: 16px;
  margin-bottom: 16px;
}

.contact-form__field {
  display: flex;
  flex-direction: column;
}

.contact-form__label {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.contact-form__input,
.contact-form__textarea {
  width: 100%;
  padding: 12px 14px;
  font-family: inherit;
  font-size: 14px;
  color: var(--color-heading);
  background: var(--color-white);
  border: 1px solid #c5ced8;
  border-radius: var(--radius-btn);
  transition: border-color var(--transition);
}

.contact-form__input::placeholder,
.contact-form__textarea::placeholder {
  color: #8a97a8;
}

.contact-form__input:focus,
.contact-form__textarea:focus {
  outline: none;
  border-color: var(--color-blue);
}

.contact-form__textarea {
  min-height: 140px;
  resize: vertical;
}

.contact-form__submit {
  width: 100%;
  justify-content: center;
  margin-top: 8px;
}

.contact-form__success {
  margin-bottom: 20px;
  padding: 12px 16px;
  font-size: 14px;
  line-height: 1.5;
  color: #0d5c2e;
  background: #e8f5ee;
  border: 1px solid #b8dfc8;
  border-radius: var(--radius-btn);
}

.contact-form__success[hidden] {
  display: none;
}

@media (min-width: 768px) {
  .contact__grid {
    grid-template-columns: 0.95fr 1.05fr;
    gap: 48px;
  }

  .contact-form-card {
    padding: 36px 32px;
  }

  .contact-form__row--split {
    grid-template-columns: 1fr 1fr;
  }
}

@media (min-width: 1024px) {
  .contact-form-card {
    padding: 40px 36px;
  }
}

/* ── Hero parallax (desktop) ── */
.hero.has-parallax,
.page-hero.has-parallax {
  isolation: isolate;
  background-image: none !important;
}

.hero.has-parallax::before,
.page-hero.has-parallax::before {
  display: none;
}

.hero.has-parallax > .container,
.page-hero.has-parallax > .container {
  position: relative;
  z-index: 2;
}

.hero-parallax__bg {
  position: absolute;
  inset: -8% 0;
  background-repeat: no-repeat;
  background-size: cover;
  will-change: transform;
  z-index: 0;
}

.hero-parallax__glow {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
}

.hero-parallax__bg--home {
  background-image: url("../images/home-hero.webp");
  background-position: center center;
}

.hero-parallax__bg--banner {
  background-image: url("../images/banner-pcb.webp");
  background-position: 42% center;
}

.hero-parallax__bg--banner-right {
  background-image: url("../images/banner-pcb.webp");
  background-position: center right;
}

.hero-parallax__bg--about {
  background-image: url("../images/about-hero.webp");
  background-position: center right;
}

.hero-parallax__bg--contact {
  background-image: url("../images/contact-hero.webp");
  background-position: center right;
}

.hero-parallax__bg--projects {
  background-image: url("../images/projects-hero.webp");
  background-position: right 35%;
}

.hero-parallax__glow--home {
  background:
    radial-gradient(ellipse 55% 70% at 18% 50%, rgba(21, 101, 216, 0.22), transparent 60%),
    linear-gradient(
      90deg,
      rgba(5, 14, 38, 0.97) 0%,
      rgba(5, 14, 38, 0.94) 20%,
      rgba(5, 14, 38, 0.9) 40%,
      rgba(5, 14, 38, 0.82) 52%,
      rgba(5, 14, 38, 0.55) 62%,
      rgba(5, 14, 38, 0.2) 70%,
      transparent 76%
    );
}

.hero-parallax__glow--es {
  background: linear-gradient(
    90deg,
    rgba(5, 14, 38, 0.97) 0%,
    rgba(5, 14, 38, 0.94) 20%,
    rgba(5, 14, 38, 0.9) 40%,
    rgba(5, 14, 38, 0.82) 52%,
    rgba(5, 14, 38, 0.55) 62%,
    rgba(5, 14, 38, 0.2) 70%,
    transparent 76%
  );
}

.hero-parallax__glow--about,
.hero-parallax__glow--contact {
  background: linear-gradient(
    90deg,
    rgba(5, 14, 38, 0.97) 0%,
    rgba(5, 14, 38, 0.92) 30%,
    rgba(5, 14, 38, 0.75) 50%,
    rgba(5, 14, 38, 0.35) 68%,
    transparent 82%
  );
}

.page-hero--split.has-parallax .page-hero__media .hero-parallax__bg {
  position: absolute;
  inset: -8% 0;
  width: 100%;
  height: auto;
  min-height: 116%;
  object-fit: cover;
  object-position: center;
  will-change: transform;
}

@media (prefers-reduced-motion: reduce) {
  .hero-parallax__bg {
    transform: none !important;
  }
}

@media (max-width: 767px) {
  .hero-parallax__bg {
    inset: 0;
    will-change: auto;
    transform: none !important;
  }

  .page-hero--split.has-parallax .page-hero__media .hero-parallax__bg {
    position: static;
    inset: auto;
    min-height: auto;
    width: 100%;
    height: 100%;
    transform: none !important;
  }

  .hero {
    display: flex;
    align-items: center;
    min-height: calc((100svh - var(--header-height)) * 0.85);
    min-height: calc((100dvh - var(--header-height)) * 0.85);
    background-image: url("../images/hero-pcb.webp");
    background-position: center center;
  }

  .page-hero--about,
  .page-hero--projects,
  .page-hero--es {
    min-height: calc((100svh - var(--header-height)) * 0.85);
    min-height: calc((100dvh - var(--header-height)) * 0.85);
  }

  .page-hero--about,
  .page-hero--projects {
    background-position: center center;
  }

  .page-hero--es {
    background-position: 42% center;
  }

  .page-hero--es .hero-parallax__bg--banner {
    background-position: 42% center;
  }

  .hero::before,
  .page-hero--about::before,
  .page-hero--es::before {
    background: linear-gradient(
      90deg,
      rgba(5, 14, 38, 0.97) 0%,
      rgba(5, 14, 38, 0.92) 30%,
      rgba(5, 14, 38, 0.75) 50%,
      rgba(5, 14, 38, 0.4) 68%,
      rgba(5, 14, 38, 0.15) 80%,
      transparent 90%
    );
  }

  .hero .container {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    width: 100%;
    padding-top: 0;
    padding-bottom: 0;
    text-align: left;
  }

  .page-hero--about .container,
  .page-hero--projects .container,
  .page-hero--es .container,
  .page-hero--split > .container,
  .page-hero--contact .container {
    padding-top: 40px;
    padding-bottom: 40px;
    text-align: left;
  }

  .hero__title {
    font-size: clamp(26px, 4vw, 36px);
    line-height: 1.25;
    max-width: 560px;
    margin-inline: 0;
    margin-bottom: 24px;
    text-align: left;
  }

  .hero__title-line {
    white-space: normal;
  }

  .page-hero__title {
    max-width: 560px;
  }

  .page-hero__text {
    max-width: 520px;
  }

  .banner-strip {
    display: none;
  }
}
