@import url("https://fonts.googleapis.com/css2?family=Manrope:wght@400;500;600;700;800&display=swap");

:root {
  --bg: #f7faff;
  --text: #12233f;
  --muted: #5e718f;
  --line: #e7eef8;
  --blue: #1d77ff;
  --blue-dark: #0e59cf;
  --navy: #071a31;
  --navy-soft: #0d223c;
  --white: #ffffff;
  --shadow-lg: 0 24px 60px rgba(7, 26, 49, 0.1);
  --shadow-md: 0 18px 42px rgba(7, 26, 49, 0.08);
  --radius-xl: 26px;
  --radius-lg: 22px;
  --radius-md: 18px;
  --radius-sm: 14px;
  --container: 1240px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Manrope", sans-serif;
  background: var(--bg);
  color: var(--text);
}

body.page-dark {
  background: #f8fbff;
}

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

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

button,
input,
select,
textarea {
  font: inherit;
}

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

.page-section {
  padding: 54px 0;
}

.eyebrow {
  display: inline-block;
  margin-bottom: 14px;
  color: var(--blue);
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.03em;
}

.section-title {
  margin: 0;
  font-size: clamp(34px, 3.5vw, 62px);
  line-height: 1.04;
  font-weight: 800;
}

.section-title.sm {
  font-size: clamp(28px, 2.9vw, 48px);
}

.section-intro {
  max-width: 720px;
  margin: 16px 0 0;
  color: rgba(255, 255, 255, 0.88);
  font-size: 21px;
  line-height: 1.7;
}

.section-copy {
  color: var(--muted);
  line-height: 1.85;
  font-size: 17px;
}

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

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  border: 1px solid transparent;
  border-radius: 8px;
  padding: 16px 24px;
  font-size: 17px;
  font-weight: 700;
  line-height: 1;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease,
    border-color 0.2s ease;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn-primary {
  background: linear-gradient(180deg, #2580ff 0%, #176be8 100%);
  color: var(--white);
  box-shadow: 0 16px 32px rgba(29, 119, 255, 0.22);
}

.btn-primary:hover {
  background: linear-gradient(180deg, #2a83ff 0%, #1762d4 100%);
}

.btn-secondary {
  background: transparent;
  border-color: rgba(255, 255, 255, 0.75);
  color: var(--white);
}

.btn-outline-dark {
  background: transparent;
  border-color: rgba(18, 35, 63, 0.18);
  color: var(--text);
}

.btn-dark {
  background: #0a1a2f;
  color: var(--white);
  box-shadow: 0 16px 30px rgba(10, 26, 47, 0.18);
}

.icon {
  width: 22px;
  height: 22px;
  flex: 0 0 22px;
}

.site-header {
  position: relative;
  z-index: 10;
}

.site-header.light {
  background: #ffffff;
  border-bottom: 1px solid rgba(8, 25, 48, 0.08);
}

.site-header.dark {
  background: #07182f;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 88px;
}

.brand {
  display: flex;
  align-items: center;
  flex: 0 0 auto;
}

.brand-logo {
  display: block;
  width: auto;
  height: 62px;
}

.brand-mark {
  display: flex;
  align-items: baseline;
  gap: 6px;
  font-size: 37px;
  line-height: 1;
  font-weight: 800;
  letter-spacing: -0.05em;
}

.brand-mark span:first-child {
  color: var(--blue);
}

.site-header.light .brand-mark span:first-child {
  color: var(--text);
}

.site-header.light .brand-mark span:last-child {
  color: var(--blue);
}

.site-header.dark .brand-mark span {
  color: #ffffff;
}

.site-header.dark .brand-mark span:first-child {
  color: var(--blue);
}

.brand-subtitle {
  font-size: 13px;
  letter-spacing: 0.02em;
}

.site-header.light .brand-subtitle {
  color: #61738f;
}

.site-header.dark .brand-subtitle {
  color: rgba(255, 255, 255, 0.7);
}

.nav {
  flex: 1 1 auto;
}

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

.nav-link {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 0;
  font-size: 17px;
  font-weight: 700;
}

.site-header.light .nav-link {
  color: #1c2a42;
}

.site-header.dark .nav-link {
  color: rgba(255, 255, 255, 0.9);
}

.nav-link.active {
  color: var(--blue);
}

.nav-link.active::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -21px;
  height: 3px;
  border-radius: 999px;
  background: var(--blue);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 14px;
  flex: 0 0 auto;
}

.phone-chip {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 52px;
  padding: 0 18px;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 700;
}

.site-header.light .phone-chip {
  border: 1px solid rgba(13, 34, 60, 0.18);
  color: #1c2a42;
}

.site-header.dark .phone-chip {
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: rgba(255, 255, 255, 0.95);
}

.offer-chip {
  min-width: 154px;
  min-height: 54px;
  padding-inline: 22px;
  border-radius: 8px;
}

.hero-home,
.hero-page {
  position: relative;
  overflow: hidden;
  background-repeat: no-repeat;
  background-position: right center;
  background-size: cover;
}

.hero-home {
  min-height: 690px;
  background-image: linear-gradient(
      90deg,
      rgba(6, 16, 31, 0.98) 0%,
      rgba(6, 16, 31, 0.95) 35%,
      rgba(6, 16, 31, 0.76) 54%,
      rgba(6, 16, 31, 0.18) 100%
    ),
    var(--hero-image);
}

.hero-page {
  min-height: 520px;
  background-image: linear-gradient(
      90deg,
      rgba(6, 16, 31, 0.98) 0%,
      rgba(6, 16, 31, 0.95) 34%,
      rgba(6, 16, 31, 0.76) 56%,
      rgba(6, 16, 31, 0.16) 100%
    ),
    var(--hero-image);
}

.hero-page.hero-overlay-strong {
  background-image: linear-gradient(
      90deg,
      rgba(6, 16, 31, 0.99) 0%,
      rgba(6, 16, 31, 0.97) 38%,
      rgba(6, 16, 31, 0.8) 62%,
      rgba(6, 16, 31, 0.16) 100%
    ),
    var(--hero-image);
}

.hero-home .container,
.hero-page .container {
  position: relative;
  z-index: 1;
}

.hero-home .hero-content {
  max-width: 520px;
  padding-top: 122px;
}

.hero-page .hero-content {
  max-width: 680px;
  padding: 82px 0 98px;
}

.hero-content-wide {
  max-width: 920px !important;
}

.hero-home .section-title {
  margin-top: 8px;
  color: var(--white);
}

.hero-page .section-title {
  margin-top: 10px;
  color: var(--white);
}

.hero-home .eyebrow,
.hero-page .eyebrow {
  color: #5eb0ff;
}

.hero-page .section-intro {
  max-width: 620px;
}

.hero-page .hero-actions {
  margin-top: 34px;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 42px;
}

.hero-badge-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 30px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 18px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.94);
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.01em;
  backdrop-filter: blur(14px);
}

.hero-slider {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 86px;
  color: rgba(255, 255, 255, 0.95);
  font-weight: 700;
}

.hero-slider .line {
  width: 78px;
  height: 2px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.34);
  position: relative;
}

.hero-slider .line::after {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 58%;
  border-radius: inherit;
  background: #ffffff;
}

.breadcrumbs {
  display: flex;
  align-items: center;
  width: fit-content;
  gap: 12px;
  margin-bottom: 18px;
  color: rgba(255, 255, 255, 0.88);
  font-size: 15px;
  font-weight: 600;
}

.breadcrumbs a {
  color: #3d9aff;
}

.breadcrumbs .sep {
  opacity: 0.52;
}

.hero-highlights {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 22px;
  margin-top: 38px;
}

.hero-highlight {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 16px;
  color: #ffffff;
}

.hero-highlight .symbol,
.contact-info .symbol,
.benefit-card .symbol,
.feature-card .symbol,
.stat-icon,
.timeline-dot,
.mission-icon,
.footer-social a,
.logo-card,
.metric-icon,
.cta-icon,
.product-feature .symbol {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.hero-highlight .symbol {
  width: 48px;
  height: 48px;
  color: #ffffff;
}

.hero-highlight h4 {
  margin: 2px 0 8px;
  font-size: 19px;
}

.hero-highlight p {
  margin: 0;
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.6;
}

.floating-card {
  margin-top: -66px;
  position: relative;
  z-index: 2;
}

.feature-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 28px;
  background: #ffffff;
  border-radius: 20px;
  padding: 34px 36px;
  box-shadow: var(--shadow-md);
  border: 1px solid rgba(9, 29, 54, 0.06);
}

.feature-card {
  display: grid;
  grid-template-columns: 52px 1fr;
  align-items: start;
  gap: 16px;
}

.feature-card .symbol {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: #f5f9ff;
  color: var(--navy);
}

.feature-card h3,
.benefit-card h3,
.product-feature h3 {
  margin: 4px 0 8px;
  font-size: 22px;
}

.feature-card p,
.benefit-card p,
.product-feature p {
  margin: 0;
  color: var(--muted);
  line-height: 1.75;
}

.home-products {
  display: grid;
  grid-template-columns: 1.05fr 3.1fr;
  gap: 30px;
  align-items: start;
}

.home-products-intro {
  padding-top: 18px;
}

.home-products-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px;
}

.card {
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  box-shadow: 0 8px 26px rgba(7, 26, 49, 0.05);
}

.product-card-home {
  overflow: hidden;
}

.product-card-home img {
  width: 100%;
  height: 196px;
  object-fit: cover;
}

.product-card-home .card-body {
  padding: 22px;
}

.card-body h3 {
  margin: 0;
  font-size: 22px;
  line-height: 1.3;
}

.card-body p {
  margin: 12px 0 0;
  color: var(--muted);
  line-height: 1.75;
}

.arrow-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 18px;
  color: var(--blue);
  font-weight: 700;
}

.about-home {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(360px, 0.92fr);
  gap: 46px;
  align-items: stretch;
}

.about-home-image img {
  width: 100%;
  height: 100%;
  min-height: 360px;
  object-fit: cover;
  border-radius: var(--radius-lg);
}

.about-home-content {
  padding: 28px 0;
}

.about-stats {
  display: flex;
  align-items: flex-end;
  gap: 34px;
  margin-top: 44px;
}

.about-stats .metric strong {
  display: block;
  font-size: 48px;
  line-height: 1;
  color: var(--blue);
}

.about-stats .metric span {
  display: block;
  margin-top: 12px;
  color: var(--text);
  font-weight: 700;
}

.split-section {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.2fr);
  gap: 44px;
  align-items: center;
}

.stats-panel {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  overflow: hidden;
}

.stats-panel .stat-block {
  padding: 40px 18px 34px;
  text-align: center;
  border-right: 1px solid var(--line);
}

.stats-panel .stat-block:last-child {
  border-right: 0;
}

.stat-icon {
  width: 72px;
  height: 72px;
  margin: 0 auto 18px;
  border-radius: 50%;
  color: var(--blue);
  background: #f5f9ff;
}

.stat-number {
  font-size: 36px;
  font-weight: 800;
  color: var(--blue);
}

.stat-label {
  margin-top: 10px;
  color: var(--text);
  font-size: 17px;
  font-weight: 700;
}

.timeline-section {
  background: linear-gradient(180deg, #081a31 0%, #061426 100%);
  color: #ffffff;
  padding: 44px 0 32px;
}

.timeline-track {
  margin-top: 18px;
}

.timeline-line {
  position: relative;
  margin: 0 18px;
  height: 2px;
  background: rgba(255, 255, 255, 0.18);
}

.timeline-items {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 18px;
}

.timeline-item {
  position: relative;
  padding-top: 18px;
}

.timeline-item .timeline-dot {
  position: absolute;
  top: -14px;
  left: 10px;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: 2px solid #338cff;
  background: #081a31;
  box-shadow: 0 0 0 5px rgba(51, 140, 255, 0.18);
}

.timeline-item h4 {
  margin: 0;
  font-size: 34px;
  font-weight: 800;
}

.timeline-item p {
  margin: 10px 0 0;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.7;
}

.mission-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 22px;
}

.mission-card {
  display: grid;
  grid-template-columns: 64px 1fr;
  gap: 18px;
  padding: 26px;
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: 0 10px 26px rgba(7, 26, 49, 0.05);
}

.mission-icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: #f5f9ff;
  color: var(--blue);
}

.mission-card h3 {
  margin: 4px 0 10px;
  font-size: 21px;
}

.mission-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.75;
}

.products-shell {
  display: grid;
  grid-template-columns: 270px minmax(0, 1fr);
  gap: 34px;
  align-items: start;
}

.sidebar-box,
.contact-mini-card {
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: 0 10px 26px rgba(7, 26, 49, 0.05);
}

.sidebar-box {
  padding: 24px 0;
}

.sidebar-box h3 {
  margin: 0 24px 18px;
  color: var(--blue);
  font-size: 17px;
  font-weight: 800;
}

.category-list {
  display: flex;
  flex-direction: column;
}

.category-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 24px;
  color: #3b4d69;
  font-weight: 700;
  border-left: 3px solid transparent;
}

.category-item.active {
  background: #f5f9ff;
  border-left-color: var(--blue);
  color: var(--blue);
}

.contact-mini-card {
  margin-top: 20px;
  padding: 24px;
  background: linear-gradient(180deg, #07182f 0%, #0a2342 100%);
  color: #ffffff;
}

.contact-mini-card p {
  margin: 0 0 22px;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.82);
}

.products-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 24px;
}

.products-head p {
  margin: 14px 0 0;
  max-width: 720px;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.product-card {
  overflow: hidden;
}

.product-card img {
  width: 100%;
  height: 238px;
  object-fit: cover;
}

.product-card .card-body {
  padding: 24px 22px 22px;
}

.product-card .card-body h3 {
  font-size: 28px;
}

.product-card .card-body p {
  min-height: 92px;
}

.product-feature-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0;
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: 0 10px 26px rgba(7, 26, 49, 0.05);
  overflow: hidden;
}

.product-feature {
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 16px;
  padding: 30px 26px;
  border-right: 1px solid var(--line);
}

.product-feature:last-child {
  border-right: 0;
}

.product-feature .symbol {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #f5f9ff;
  color: var(--blue);
}

.product-detail-shell {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 38px;
  align-items: start;
}

.product-detail-media {
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: 0 10px 26px rgba(7, 26, 49, 0.05);
  overflow: hidden;
}

.product-detail-media img {
  width: 100%;
  height: 100%;
  min-height: 520px;
  object-fit: cover;
}

.product-detail-copy {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.product-detail-copy h2 {
  margin: 0;
}

.product-tag {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  padding: 8px 12px;
  border-radius: 999px;
  background: #f5f9ff;
  color: var(--blue);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.02em;
}

.product-spec-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.product-spec-card {
  padding: 18px 20px;
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  box-shadow: 0 10px 26px rgba(7, 26, 49, 0.05);
}

.product-spec-card span {
  display: block;
  color: var(--blue);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.02em;
}

.product-spec-card strong {
  display: block;
  margin-top: 8px;
  color: var(--text);
  font-size: 20px;
  line-height: 1.35;
}

.product-bullet-list {
  display: grid;
  gap: 14px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.product-bullet-list li {
  display: grid;
  grid-template-columns: 24px 1fr;
  gap: 12px;
  align-items: start;
  color: var(--muted);
  line-height: 1.8;
}

.product-bullet-list .icon {
  width: 20px;
  height: 20px;
  color: var(--blue);
  margin-top: 4px;
}

.related-products-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.related-products-grid .product-card img {
  height: 220px;
}

.filter-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 34px;
}

.filter-chip {
  border: 1px solid rgba(18, 35, 63, 0.14);
  border-radius: 999px;
  padding: 14px 26px;
  background: #ffffff;
  color: #495a75;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.2s ease;
}

.filter-chip.active,
.filter-chip:hover {
  background: linear-gradient(180deg, #2680ff 0%, #176be8 100%);
  border-color: transparent;
  color: #ffffff;
}

.project-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.project-grid.project-grid-four {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.project-card {
  overflow: hidden;
}

.project-card.is-hidden {
  display: none;
}

.project-card img {
  width: 100%;
  height: 238px;
  object-fit: cover;
}

.project-card .card-body {
  padding: 24px;
}

.project-card .label {
  color: var(--blue);
  font-size: 15px;
  font-weight: 800;
}

.project-card h3 {
  margin: 14px 0 6px;
  font-size: 22px;
}

.project-card .location {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #485972;
  font-weight: 700;
}

.project-card p {
  margin: 18px 0 0;
}

.cta-bar,
.cta-inline {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  padding: 30px 34px;
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: 0 10px 26px rgba(7, 26, 49, 0.05);
}

.cta-bar .copy,
.cta-inline .copy {
  display: grid;
  grid-template-columns: 58px 1fr;
  gap: 18px;
  align-items: center;
}

.cta-bar .copy h3,
.cta-inline .copy h3 {
  margin: 0 0 6px;
  font-size: 29px;
}

.cta-bar .copy p,
.cta-inline .copy p {
  margin: 0;
  color: var(--muted);
  line-height: 1.75;
}

.cta-icon {
  width: 58px;
  height: 58px;
  border-radius: 18px;
  background: #f5f9ff;
  color: var(--blue);
}

.logo-section-head {
  text-align: center;
  margin-bottom: 32px;
}

.logo-section-head p {
  max-width: 640px;
  margin: 18px auto 0;
}

.heading-underline {
  width: 82px;
  height: 3px;
  border-radius: 999px;
  background: var(--blue);
  margin: 18px auto 0;
}

.logo-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.logo-card {
  min-height: 120px;
  padding: 16px;
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 16px;
  box-shadow: 0 8px 22px rgba(7, 26, 49, 0.05);
}

.logo-card img {
  width: 100%;
  height: 70px;
  object-fit: contain;
}

.partner-card {
  min-height: 156px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 10px;
  text-align: left;
}

.partner-badge {
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  padding: 8px 12px;
  background: #f5f9ff;
  color: var(--blue);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.02em;
}

.partner-card h3 {
  margin: 0;
  font-size: 24px;
  line-height: 1.2;
}

.partner-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
}

.ref-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 22px;
}

.reference-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.reference-grid .project-card img {
  height: 178px;
}

.reference-grid .project-card .card-body {
  padding: 18px 18px 20px;
}

.metrics-band {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0;
  background: linear-gradient(180deg, #081a31 0%, #071527 100%);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 16px 36px rgba(7, 26, 49, 0.15);
}

.metric-item {
  display: grid;
  grid-template-columns: 54px 1fr;
  align-items: center;
  gap: 16px;
  padding: 28px 32px;
  color: #ffffff;
}

.metric-icon {
  width: 54px;
  height: 54px;
  color: var(--blue);
}

.metric-item strong {
  display: block;
  font-size: 22px;
}

.metric-item span {
  display: block;
  margin-top: 6px;
  color: rgba(255, 255, 255, 0.76);
}

.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(360px, 0.85fr);
  gap: 34px;
  align-items: start;
}

.contact-form-wrap h2,
.contact-side h2 {
  margin: 0;
  font-size: 28px;
}

.contact-form-wrap p,
.contact-side > p {
  margin: 12px 0 0;
  color: var(--muted);
  line-height: 1.8;
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px 20px;
  margin-top: 36px;
}

.field {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.field.full {
  grid-column: 1 / -1;
}

.field label {
  font-size: 15px;
  font-weight: 800;
  color: #1a2a45;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  border: 1px solid #dbe6f3;
  border-radius: 8px;
  padding: 16px 18px;
  color: var(--text);
  background: #ffffff;
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.field textarea {
  min-height: 188px;
  resize: vertical;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: rgba(29, 119, 255, 0.5);
  box-shadow: 0 0 0 4px rgba(29, 119, 255, 0.1);
}

.form-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-top: 14px;
}

.check {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #51637e;
  font-size: 15px;
  font-weight: 600;
}

.check input {
  width: 16px;
  height: 16px;
}

.check a {
  color: var(--blue);
  font-weight: 700;
}

.counter {
  color: #8fa0b9;
  font-size: 14px;
  font-weight: 700;
}

.contact-info-list {
  display: grid;
  gap: 16px;
  margin-top: 28px;
}

.contact-info {
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 16px;
  padding: 22px 20px;
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 16px;
  box-shadow: 0 8px 22px rgba(7, 26, 49, 0.05);
}

.contact-info .symbol {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #f5f9ff;
  color: var(--blue);
}

.contact-info h3 {
  margin: 2px 0 6px;
  font-size: 22px;
}

.contact-info p {
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
}

.map-card {
  margin-top: 16px;
  overflow: hidden;
  border-radius: 16px;
  border: 1px solid var(--line);
  box-shadow: 0 8px 22px rgba(7, 26, 49, 0.05);
}

.map-card img {
  width: 100%;
  height: 230px;
  object-fit: cover;
}

.map-card iframe {
  display: block;
  width: 100%;
  height: 230px;
  border: 0;
}

.map-card-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 18px;
  color: var(--blue);
  font-weight: 700;
}

.benefits-row {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0;
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 16px;
  box-shadow: 0 8px 22px rgba(7, 26, 49, 0.05);
  overflow: hidden;
}

.benefit-card {
  display: grid;
  grid-template-columns: 52px 1fr;
  gap: 16px;
  padding: 28px 26px;
  border-right: 1px solid var(--line);
}

.benefit-card:last-child {
  border-right: 0;
}

.benefit-card .symbol {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: #f5f9ff;
  color: var(--blue);
}

.site-footer {
  margin-top: 36px;
  background: linear-gradient(180deg, #081a31 0%, #071527 100%);
  color: #ffffff;
}

.thanks-shell {
  min-height: calc(100vh - 88px);
  display: grid;
  place-items: center;
  padding: 80px 0;
}

.thanks-card {
  max-width: 760px;
  padding: 42px;
  text-align: center;
}

.thanks-card .cta-icon {
  margin: 0 auto 20px;
}

.thanks-card h1 {
  margin: 0;
  font-size: clamp(34px, 4vw, 52px);
  line-height: 1.06;
}

.thanks-card p {
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.85;
}

.thanks-actions {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin-top: 32px;
}

.thanks-meta {
  margin-top: 22px;
  color: var(--muted);
  font-size: 15px;
}

.footer-main {
  padding: 54px 0 18px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr 0.95fr 1fr;
  gap: 28px;
}

.footer-brand p,
.footer-col p,
.footer-contact p {
  color: rgba(255, 255, 255, 0.76);
  line-height: 1.85;
}

.footer-social {
  display: flex;
  gap: 14px;
  margin-top: 26px;
}

.footer-social a {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  color: #ffffff;
}

.footer-title {
  margin: 8px 0 18px;
  display: flex;
  align-items: baseline;
  gap: 6px;
  font-size: 30px;
  font-weight: 800;
  line-height: 1;
}

.footer-title span:first-child,
.footer-title .blue-text {
  color: var(--blue);
}

.footer-logo-link {
  display: inline-flex;
}

.footer-logo {
  display: block;
  width: min(240px, 100%);
  height: auto;
  margin: 0 0 18px;
}

.footer-col h3,
.footer-contact h3 {
  margin: 6px 0 18px;
  font-size: 18px;
}

.footer-list {
  display: grid;
  gap: 14px;
}

.footer-list a {
  color: rgba(255, 255, 255, 0.84);
  transition: color 0.2s ease;
}

.footer-list a:hover {
  color: #ffffff;
}

.footer-contact .item {
  display: grid;
  grid-template-columns: 24px 1fr;
  gap: 12px;
  align-items: start;
  margin-bottom: 18px;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 20px 0 26px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.64);
}

.footer-bottom-links {
  display: flex;
  gap: 26px;
}

@media (max-width: 1240px) {
  .home-products {
    grid-template-columns: 1fr;
  }

  .home-products-intro {
    max-width: 540px;
  }

  .home-products-grid,
  .logo-grid,
  .reference-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .stats-panel,
  .metrics-band,
  .benefits-row,
  .product-feature-strip,
  .feature-strip,
  .mission-grid,
  .hero-highlights {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .products-shell,
  .contact-layout,
  .split-section,
  .about-home {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 1024px) {
  .brand-logo {
    height: 56px;
  }

  .header-inner {
    flex-wrap: wrap;
    padding: 18px 0;
  }

  .nav {
    order: 3;
    width: 100%;
  }

  .nav-list {
    justify-content: flex-start;
    flex-wrap: wrap;
    gap: 18px 26px;
  }

  .nav-link.active::after {
    bottom: -8px;
  }

  .product-grid,
  .project-grid,
  .timeline-items {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .project-grid.project-grid-four {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .reference-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .logo-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .home-products-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .stats-panel {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 760px) {
  .brand-logo {
    height: 48px;
  }

  .footer-logo {
    width: min(210px, 100%);
  }

  .container {
    width: min(calc(100% - 28px), var(--container));
  }

  .page-section {
    padding: 42px 0;
  }

  .hero-home .hero-content,
  .hero-page .hero-content {
    padding-top: 44px;
    padding-bottom: 46px;
  }

  .hero-home {
    min-height: 620px;
    background-position: 62% center;
  }

  .hero-page {
    min-height: 420px;
    background-position: 65% center;
  }

  .hero-actions,
  .header-actions,
  .footer-bottom,
  .cta-bar,
  .cta-inline,
  .ref-head,
  .form-meta {
    flex-direction: column;
    align-items: stretch;
  }

  .feature-strip,
  .home-products-grid,
  .stats-panel,
  .mission-grid,
  .hero-highlights,
  .product-grid,
  .project-grid,
  .logo-grid,
  .reference-grid,
  .metrics-band,
  .product-feature-strip,
  .benefits-row,
  .timeline-items,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .timeline-line {
    display: none;
  }

  .timeline-item {
    padding-top: 28px;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
  }

  .timeline-item .timeline-dot {
    top: -14px;
    left: 0;
  }

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

  .logo-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .hero-badge-row {
    gap: 10px;
  }

  .hero-badge {
    width: 100%;
    justify-content: flex-start;
    padding: 14px 18px;
  }

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

  .footer-bottom-links {
    justify-content: flex-start;
    flex-wrap: wrap;
  }

  .thanks-actions {
    flex-direction: column;
    align-items: stretch;
  }
}
