:root {
  --navy-950: #03142e;
  --navy-900: #061b3b;
  --navy-800: #092a5b;
  --blue-600: #145dff;
  --blue-500: #1d74ff;
  --cyan-400: #45d4ff;
  --ink: #071832;
  --muted: #687488;
  --line: #dce5f1;
  --paper: #ffffff;
  --soft: #f4f8fd;
  --shadow: 0 20px 60px rgba(3, 20, 46, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

body.nav-open {
  overflow: hidden;
}

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

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

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

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  display: flex;
  min-height: 78px;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 14px clamp(20px, 5vw, 84px);
  color: #ffffff;
  background: linear-gradient(90deg, #ffffff 0%, #ffffff 25%, #145dff 58%, #03142e 100%);
  box-shadow: 0 1px 0 rgba(3, 20, 46, 0.1), 0 10px 30px rgba(3, 20, 46, 0.12);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-weight: 850;
  letter-spacing: 0;
  white-space: nowrap;
}

.brand-logo {
  width: clamp(190px, 18vw, 280px);
  height: auto;
  border-radius: 6px;
  background: #ffffff;
  object-fit: contain;
}

.site-header .brand-logo {
  box-shadow: none;
}

.nav {
  display: flex;
  align-items: center;
  gap: clamp(14px, 2.2vw, 30px);
  font-size: 0.92rem;
  font-weight: 750;
}

.nav a {
  color: rgba(255, 255, 255, 0.88);
}

.nav a:hover,
.nav a:focus-visible {
  color: #ffffff;
}

.nav a[aria-current="page"] {
  color: #ffffff;
  box-shadow: inset 0 -2px 0 var(--cyan-400);
}

.language {
  display: inline-flex;
  min-height: 38px;
  align-items: center;
  justify-content: center;
  gap: 7px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 999px;
  padding: 0 13px;
  background: rgba(255, 255, 255, 0.08);
  font-size: 0.82rem;
  font-weight: 900;
  line-height: 1;
  opacity: 0.96;
  white-space: nowrap;
}

.language:hover,
.language:focus-visible {
  border-color: rgba(255, 255, 255, 0.42);
  background: rgba(255, 255, 255, 0.14);
}

.nav-cta,
.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  border: 1px solid transparent;
  border-radius: 8px;
  padding: 0 18px;
  font-weight: 850;
  transition: transform 160ms ease, border-color 160ms ease, background 160ms ease;
}

.nav-cta,
.button-primary {
  color: #ffffff;
  background: var(--blue-600);
  box-shadow: 0 12px 30px rgba(20, 93, 255, 0.24);
}

.button-secondary {
  color: var(--blue-600);
  border-color: rgba(20, 93, 255, 0.42);
  background: #ffffff;
}

.nav-cta:hover,
.button:hover {
  transform: translateY(-2px);
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 8px;
  background: transparent;
}

.menu-toggle span:not(.sr-only) {
  display: block;
  width: 20px;
  height: 2px;
  margin: 5px auto;
  background: #ffffff;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(360px, 1.1fr);
  min-height: calc(100vh - 78px);
  overflow: hidden;
  background: linear-gradient(90deg, #ffffff 0%, #ffffff 46%, #edf5ff 46%, #d8e8fa 100%);
}

.hero-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(60px, 7vw, 112px) clamp(22px, 6vw, 92px);
}

.section-kicker {
  width: 48px;
  height: 6px;
  margin-bottom: 26px;
  background: var(--blue-600);
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 760px;
  margin-bottom: 26px;
  color: var(--navy-950);
  font-size: clamp(2.55rem, 5.5vw, 5.25rem);
  line-height: 0.96;
  letter-spacing: 0;
}

h1 strong {
  display: block;
  color: var(--blue-600);
}

.hero-copy > p {
  max-width: 650px;
  margin-bottom: 30px;
  color: var(--muted);
  font-size: clamp(1.05rem, 1.6vw, 1.28rem);
  line-height: 1.72;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 46px;
}

.coverage-note {
  display: flex;
  max-width: 390px;
  align-items: center;
  gap: 14px;
  color: var(--muted);
}

.map-mark {
  display: grid;
  width: 54px;
  height: 54px;
  flex: 0 0 auto;
  place-items: center;
  border: 2px solid var(--blue-600);
  border-radius: 16px 8px 18px 10px;
  color: var(--blue-600);
  font-size: 0.82rem;
  font-weight: 900;
}

.coverage-note p {
  margin: 0;
  line-height: 1.45;
}

.hero-visual {
  position: relative;
  min-height: 640px;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.96) 0%, rgba(255, 255, 255, 0.28) 28%, rgba(3, 20, 46, 0.06) 58%),
    linear-gradient(180deg, rgba(3, 20, 46, 0.08), rgba(3, 20, 46, 0.2)),
    url("assets/hero-field-team-v2.png");
  background-position: left center, center, center;
  background-size: cover;
}

.field-card {
  position: absolute;
  right: clamp(18px, 6vw, 78px);
  bottom: clamp(24px, 6vw, 74px);
  display: flex;
  max-width: 360px;
  align-items: center;
  gap: 14px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 8px;
  padding: 18px;
  color: #ffffff;
  background: rgba(3, 20, 46, 0.82);
  box-shadow: var(--shadow);
  backdrop-filter: blur(14px);
}

.field-card strong,
.field-card span {
  display: block;
}

.field-card span {
  margin-top: 4px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.9rem;
}

.section {
  padding: clamp(38px, 5vw, 68px) clamp(20px, 5vw, 84px);
}

.section-title {
  margin-bottom: 24px;
}

.section-title.center {
  text-align: center;
}

.section-title.center h2::after {
  display: block;
  width: 42px;
  height: 4px;
  margin: 12px auto 0;
  border-radius: 999px;
  content: "";
  background: var(--blue-600);
}

.section-title.compact {
  margin-bottom: 22px;
}

.section-title p,
.partners p,
.label {
  margin-bottom: 6px;
  color: var(--blue-600);
  font-size: 0.86rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

h2 {
  color: var(--navy-950);
  font-size: clamp(2rem, 3.6vw, 3.3rem);
  line-height: 1.05;
  letter-spacing: 0;
}

.capability-grid,
.project-grid,
.why-grid,
.about-contact {
  display: grid;
  gap: 20px;
}

.capability-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  max-width: 1320px;
  margin: 0 auto;
}

.capability-card,
.why article,
.contact-form,
.about-panel {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #ffffff;
  box-shadow: 0 12px 36px rgba(3, 20, 46, 0.06);
}

.capability-card {
  min-height: 238px;
  padding: 30px 24px 28px;
  text-align: center;
}

.icon {
  position: relative;
  display: block;
  width: 76px;
  height: 76px;
  margin: 0 auto 22px;
  border: 2px solid var(--blue-600);
  border-radius: 50%;
  color: var(--blue-600);
}

.icon::before,
.icon::after {
  position: absolute;
  content: "";
}

.icon-electric::before {
  inset: 15px 25px 13px 24px;
  background: var(--blue-600);
  clip-path: polygon(48% 0, 18% 44%, 43% 44%, 32% 100%, 82% 34%, 56% 34%, 70% 0);
}

.icon-it::before {
  left: 16px;
  top: 18px;
  width: 44px;
  height: 30px;
  border: 3px solid var(--blue-600);
  border-radius: 5px;
}

.icon-it::after {
  left: 24px;
  bottom: 14px;
  width: 28px;
  height: 12px;
  border-bottom: 3px solid var(--blue-600);
  border-left: 3px solid var(--blue-600);
  border-right: 3px solid var(--blue-600);
}

.icon-telecom::before {
  left: 31px;
  bottom: 15px;
  width: 14px;
  height: 34px;
  border-left: 3px solid var(--blue-600);
  border-right: 3px solid var(--blue-600);
  transform: skewX(-12deg);
}

.icon-telecom::after {
  left: 18px;
  top: 12px;
  width: 40px;
  height: 30px;
  border: 3px solid var(--blue-600);
  border-right-color: transparent;
  border-bottom-color: transparent;
  border-radius: 50%;
  transform: rotate(45deg);
}

.icon-tools::before {
  left: 18px;
  top: 18px;
  width: 40px;
  height: 40px;
  background:
    linear-gradient(45deg, transparent 41%, var(--blue-600) 42% 58%, transparent 59%),
    linear-gradient(-45deg, transparent 41%, var(--blue-600) 42% 58%, transparent 59%);
}

.icon-tools::after {
  left: 13px;
  top: 13px;
  width: 50px;
  height: 50px;
  border: 3px solid var(--blue-600);
  border-radius: 10px;
  opacity: 0.18;
}

.capability-card h3,
.why h3,
.project-card h3,
.footer h3 {
  color: var(--navy-950);
}

.capability-card p,
.why p,
.project-content span,
.about-panel p,
.form-note {
  color: var(--muted);
  line-height: 1.62;
}

.solution-strip {
  padding: 28px clamp(20px, 5vw, 84px) 32px;
  background: linear-gradient(180deg, #f8fbff, #eef5fc);
}

.solution-list {
  display: grid;
  grid-template-columns: repeat(8, minmax(104px, 1fr));
  max-width: 1300px;
  margin: 0 auto;
  overflow-x: auto;
}

.solution-list a {
  display: flex;
  min-height: 106px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border-left: 1px solid #cdd9e8;
  padding: 12px;
  color: var(--navy-900);
  font-size: 0.9rem;
  font-weight: 850;
  text-align: center;
}

.solution-list a:hover,
.solution-list a:focus-visible {
  color: var(--blue-600);
  background: #ffffff;
}

.solution-list a:last-child {
  border-right: 1px solid #cdd9e8;
}

.solution-icon {
  position: relative;
  display: block;
  width: 42px;
  height: 42px;
  color: var(--blue-600);
}

.solution-icon::before,
.solution-icon::after {
  position: absolute;
  content: "";
}

.network-node::before,
.structured-cable::before {
  inset: 6px 7px 11px;
  border: 3px solid currentColor;
  border-top: 0;
}

.network-node::after,
.structured-cable::after {
  left: 5px;
  top: 4px;
  width: 8px;
  height: 8px;
  border: 3px solid currentColor;
  border-radius: 50%;
  box-shadow: 14px 23px 0 -1px #f8fbff, 14px 23px 0 2px currentColor, 28px 0 0 -1px #f8fbff, 28px 0 0 2px currentColor;
}

.fiber-line::before {
  left: 6px;
  top: 7px;
  width: 30px;
  height: 30px;
  border-top: 3px solid currentColor;
  border-left: 3px solid currentColor;
  transform: skew(-22deg) rotate(-12deg);
}

.fiber-line::after {
  left: 17px;
  top: 4px;
  width: 3px;
  height: 32px;
  background: currentColor;
  box-shadow: 8px 0 0 currentColor, 16px 0 0 currentColor;
  transform: rotate(38deg);
}

.wifi-wave::before {
  left: 5px;
  top: 8px;
  width: 32px;
  height: 32px;
  border: 4px solid currentColor;
  border-right-color: transparent;
  border-bottom-color: transparent;
  border-radius: 50%;
  transform: rotate(45deg);
}

.wifi-wave::after {
  left: 17px;
  bottom: 5px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: currentColor;
}

.battery-power::before {
  left: 12px;
  top: 5px;
  width: 18px;
  height: 30px;
  border: 3px solid currentColor;
  border-radius: 4px;
}

.battery-power::after {
  left: 18px;
  top: 13px;
  width: 8px;
  height: 15px;
  background: currentColor;
  clip-path: polygon(45% 0, 0 52%, 42% 52%, 24% 100%, 100% 42%, 58% 42%, 72% 0);
}

.satellite-dish::before {
  left: 8px;
  bottom: 8px;
  width: 26px;
  height: 18px;
  border: 4px solid currentColor;
  border-top: 0;
  border-radius: 0 0 28px 28px;
  transform: rotate(-32deg);
}

.satellite-dish::after {
  right: 3px;
  top: 2px;
  width: 22px;
  height: 22px;
  border-top: 3px solid currentColor;
  border-right: 3px solid currentColor;
  border-radius: 50%;
}

.hvac-fan::before {
  inset: 4px;
  border: 3px solid currentColor;
  border-radius: 50%;
}

.hvac-fan::after {
  left: 18px;
  top: 8px;
  width: 7px;
  height: 27px;
  border-radius: 999px;
  background: currentColor;
  box-shadow: 0 0 0 0 currentColor;
  transform: rotate(0deg);
}

.headset-support::before {
  left: 8px;
  top: 6px;
  width: 26px;
  height: 24px;
  border: 4px solid currentColor;
  border-bottom: 0;
  border-radius: 24px 24px 0 0;
}

.headset-support::after {
  right: 5px;
  bottom: 5px;
  width: 14px;
  height: 12px;
  border-right: 3px solid currentColor;
  border-bottom: 3px solid currentColor;
  border-radius: 0 0 8px 0;
}

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

.project-card {
  overflow: hidden;
  border-radius: 8px;
  background: var(--navy-900);
  box-shadow: var(--shadow);
}

.project-media {
  min-height: 210px;
  background-size: cover;
  background-position: center;
}

.project-media.electrical {
  background-image: linear-gradient(rgba(3, 20, 46, 0.02), rgba(3, 20, 46, 0.16)), url("assets/project-electrical.png");
}

.project-media.network {
  background-image: linear-gradient(120deg, rgba(3, 20, 46, 0.05), rgba(20, 93, 255, 0.16)), url("assets/project-network.png");
}

.project-media.service {
  background-image: linear-gradient(120deg, rgba(3, 20, 46, 0.04), rgba(20, 93, 255, 0.08)), url("assets/project-service.png");
}

.project-content {
  min-height: 190px;
  padding: 24px;
  color: #ffffff;
  background: linear-gradient(160deg, rgba(3, 20, 46, 0.94), rgba(9, 42, 91, 0.98));
}

.project-content p {
  margin-bottom: 8px;
  color: var(--cyan-400);
  font-size: 0.82rem;
  font-weight: 850;
}

.project-content h3 {
  margin-bottom: 8px;
  color: #ffffff;
}

.project-content span,
.project-content a {
  display: block;
}

.project-content a {
  margin-top: 16px;
  color: var(--cyan-400);
  font-weight: 850;
}

.telecom {
  display: grid;
  grid-template-columns: minmax(280px, 0.8fr) minmax(0, 1.2fr);
  align-items: center;
  gap: clamp(28px, 6vw, 72px);
  padding: clamp(38px, 5vw, 66px) clamp(20px, 5vw, 84px);
  color: #ffffff;
  background: linear-gradient(90deg, rgba(3, 20, 46, 0.74), rgba(3, 20, 46, 0.98)), url("assets/telecom-tower.png");
  background-position: center;
  background-size: cover;
}

.telecom h2 {
  color: #ffffff;
  text-transform: uppercase;
}

.telecom p {
  max-width: 760px;
  color: rgba(255, 255, 255, 0.76);
  font-size: 1.08rem;
  line-height: 1.72;
}

.telecom-visual {
  position: relative;
  min-height: 280px;
  overflow: hidden;
}

.telecom-visual::before {
  position: absolute;
  inset: 0;
  content: "";
  border-left: 5px solid var(--blue-500);
}

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

.why article {
  min-height: 180px;
  padding: 28px;
  text-align: center;
}

.why-icon {
  position: relative;
  display: block;
  width: 58px;
  height: 58px;
  margin: 0 auto 18px;
  color: var(--blue-600);
}

.why-icon::before,
.why-icon::after {
  position: absolute;
  content: "";
}

.why-technical::before {
  inset: 7px 8px;
  border: 3px solid currentColor;
  border-radius: 0 0 18px 18px;
}

.why-technical::after {
  left: 19px;
  top: 28px;
  width: 20px;
  height: 18px;
  border-bottom: 3px solid currentColor;
  border-left: 3px solid currentColor;
  border-right: 3px solid currentColor;
}

.why-field::before {
  left: 11px;
  top: 16px;
  width: 36px;
  height: 26px;
  border: 3px solid currentColor;
  border-radius: 18px 18px 6px 6px;
}

.why-field::after {
  left: 7px;
  top: 30px;
  width: 44px;
  height: 3px;
  background: currentColor;
}

.why-support::before {
  left: 11px;
  top: 10px;
  width: 36px;
  height: 32px;
  border: 4px solid currentColor;
  border-bottom: 0;
  border-radius: 28px 28px 0 0;
}

.why-support::after {
  right: 8px;
  bottom: 9px;
  width: 18px;
  height: 13px;
  border-right: 3px solid currentColor;
  border-bottom: 3px solid currentColor;
  border-radius: 0 0 10px 0;
}

.why-alliance::before {
  left: 8px;
  top: 18px;
  width: 42px;
  height: 18px;
  border: 3px solid currentColor;
  border-radius: 12px;
  transform: rotate(-28deg);
}

.why-alliance::after {
  left: 8px;
  top: 18px;
  width: 42px;
  height: 18px;
  border: 3px solid currentColor;
  border-radius: 12px;
  transform: rotate(28deg);
}

.why-integrated::before {
  left: 9px;
  top: 9px;
  width: 16px;
  height: 16px;
  border: 3px solid currentColor;
  border-radius: 6px;
  box-shadow: 24px 0 0 -3px #fff, 24px 0 0 0 currentColor, 12px 25px 0 -3px #fff, 12px 25px 0 0 currentColor;
}

.why-integrated::after {
  left: 22px;
  top: 27px;
  width: 15px;
  height: 3px;
  background: currentColor;
  transform: rotate(90deg);
}

.partners {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  padding: clamp(36px, 5vw, 64px) clamp(20px, 7vw, 126px);
  color: #ffffff;
  background: linear-gradient(90deg, rgba(3, 20, 46, 0.96), rgba(3, 20, 46, 0.78)), url("assets/partners-map.png");
  background-position: center;
  background-size: cover;
}

.partners div {
  max-width: 720px;
}

.partners h2 {
  margin-bottom: 16px;
  color: #ffffff;
}

.partners span {
  display: block;
  color: rgba(255, 255, 255, 0.74);
  line-height: 1.68;
}

.about-contact,
.about-summary {
  grid-template-columns: minmax(0, 0.95fr) minmax(360px, 1.05fr);
  background: var(--soft);
}

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

.about-panel,
.contact-form {
  padding: clamp(26px, 4vw, 44px);
}

.about-link {
  width: fit-content;
  margin-top: 26px;
}

.mini-grid {
  display: grid;
  gap: 12px;
  margin-top: 28px;
}

.mini-grid span {
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 14px;
  color: var(--muted);
  background: var(--soft);
}

.contact-form {
  display: grid;
  gap: 15px;
}

.contact-form h2 {
  margin-bottom: 6px;
}

label {
  display: grid;
  gap: 7px;
  color: var(--navy-900);
  font-size: 0.92rem;
  font-weight: 800;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid #c9d5e5;
  border-radius: 8px;
  padding: 13px 14px;
  color: var(--ink);
  background: #ffffff;
}

textarea {
  resize: vertical;
}

input:focus,
select:focus,
textarea:focus,
a:focus-visible,
button:focus-visible {
  outline: 3px solid rgba(29, 116, 255, 0.28);
  outline-offset: 2px;
}

.form-note {
  margin: 0;
  font-size: 0.9rem;
}

.whatsapp {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 40;
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 0 18px;
  color: #ffffff;
  background: #1fae5b;
  box-shadow: 0 14px 34px rgba(31, 174, 91, 0.36);
  font-weight: 900;
}

.footer {
  display: grid;
  grid-template-columns: minmax(260px, 1.35fr) repeat(3, minmax(160px, 0.7fr));
  gap: 34px;
  padding: 52px clamp(20px, 5vw, 84px) 22px;
  color: #ffffff;
  background: var(--navy-950);
}

.footer h3 {
  color: #ffffff;
}

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

.footer-brand p,
.footer a,
.footer span {
  display: block;
  color: rgba(255, 255, 255, 0.68);
  line-height: 1.68;
}

.footer h3 {
  margin-bottom: 14px;
  font-size: 1rem;
  text-transform: uppercase;
}

.footer-bottom {
  grid-column: 1 / -1;
  display: flex;
  justify-content: space-between;
  gap: 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  padding-top: 18px;
  font-size: 0.88rem;
}

.page-hero {
  display: grid;
  min-height: 430px;
  align-items: center;
  padding: clamp(48px, 6vw, 82px) clamp(20px, 6vw, 96px);
  color: #ffffff;
  background:
    linear-gradient(90deg, rgba(3, 20, 46, 0.92), rgba(3, 20, 46, 0.55)),
    url("assets/hero-field-team-v2.png");
  background-position: center;
  background-size: cover;
}

.page-hero > div {
  max-width: 850px;
}

.page-hero h1,
.page-hero h2 {
  color: #ffffff;
}

.page-hero p:not(.label) {
  max-width: 760px;
  color: rgba(255, 255, 255, 0.78);
  font-size: clamp(1.05rem, 1.7vw, 1.28rem);
  line-height: 1.72;
}

.company-facts {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  max-width: 850px;
  margin-top: 28px;
}

.company-facts span {
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  padding: 12px 14px;
  color: rgba(255, 255, 255, 0.84);
  background: rgba(3, 20, 46, 0.54);
  backdrop-filter: blur(12px);
}

.story-section {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(320px, 0.9fr);
  gap: clamp(28px, 6vw, 76px);
  align-items: start;
}

.story-copy p {
  color: var(--muted);
  font-size: 1.04rem;
  line-height: 1.75;
  text-align: justify;
  text-justify: inter-word;
}

.story-copy .label {
  text-align: left;
}

.story-card {
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: clamp(26px, 4vw, 40px);
  background: var(--soft);
  box-shadow: 0 12px 36px rgba(3, 20, 46, 0.06);
}

.story-card ul {
  display: grid;
  gap: 14px;
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
}

.story-card li {
  position: relative;
  padding-left: 24px;
  color: var(--muted);
  line-height: 1.58;
}

.story-card li::before {
  position: absolute;
  left: 0;
  top: 0.62em;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  content: "";
  background: var(--blue-600);
}

.pillars-section {
  background: var(--soft);
}

.corporate-data {
  background: #ffffff;
}

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

.data-grid article {
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 22px;
  background: var(--soft);
}

.data-grid span {
  display: block;
  margin-bottom: 10px;
  color: var(--blue-600);
  font-size: 0.8rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.data-grid p {
  margin: 0;
  color: var(--navy-900);
  line-height: 1.55;
  overflow-wrap: anywhere;
}

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

.pillars-grid article {
  min-height: 220px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 30px;
  background: #ffffff;
  box-shadow: 0 12px 36px rgba(3, 20, 46, 0.06);
}

.pillars-grid span {
  display: block;
  margin-bottom: 18px;
  color: var(--blue-600);
  font-size: 1.05rem;
  font-weight: 900;
  text-transform: uppercase;
}

.pillars-grid p {
  color: var(--muted);
  line-height: 1.68;
  text-align: justify;
  text-justify: inter-word;
}

.about-why {
  background: #ffffff;
}

.solutions-hero {
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(420px, 1.12fr);
  min-height: 460px;
  color: #ffffff;
  background: var(--navy-950);
}

.solutions-hero-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(52px, 7vw, 94px) clamp(22px, 6vw, 86px);
}

.solutions-hero h1,
.solution-detail-hero h1 {
  color: #ffffff;
  text-transform: uppercase;
}

.solutions-hero h1 strong {
  display: block;
  color: var(--blue-500);
}

.solutions-hero p,
.solution-detail-hero p {
  max-width: 640px;
  color: rgba(255, 255, 255, 0.86);
  line-height: 1.65;
}

.solutions-hero .hero-lead {
  color: #ffffff;
  font-size: clamp(1.15rem, 2vw, 1.55rem);
  font-weight: 750;
}

.solutions-hero-media {
  min-height: 100%;
  overflow: hidden;
}

.solutions-hero-media img,
.solution-detail-hero img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.button-secondary.dark {
  color: #ffffff;
  border-color: rgba(255, 255, 255, 0.4);
  background: rgba(255, 255, 255, 0.08);
}

.solutions-overview {
  background: #ffffff;
}

.section-title p {
  max-width: 680px;
  margin: 10px auto 0;
  color: var(--muted);
  line-height: 1.65;
}

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

.solution-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #ffffff;
  box-shadow: 0 12px 34px rgba(3, 20, 46, 0.07);
}

.solution-card img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.solution-card div {
  padding: 20px;
}

.solution-card h3 {
  margin: 12px 0 10px;
  color: var(--navy-950);
  font-size: 1rem;
}

.solution-card p {
  min-height: 96px;
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.62;
}

.solution-card a {
  color: var(--blue-600);
  font-weight: 900;
}

.tag {
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  padding: 6px 10px;
  color: var(--blue-600);
  background: rgba(20, 93, 255, 0.09);
  font-size: 0.73rem;
  font-weight: 900;
  text-transform: uppercase;
}

.needs-section {
  background: var(--soft);
}

.needs-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
  background: #ffffff;
  box-shadow: 0 12px 36px rgba(3, 20, 46, 0.05);
}

.needs-grid article {
  padding: clamp(22px, 3vw, 34px);
  border-right: 1px solid var(--line);
}

.needs-grid article:last-child {
  border-right: 0;
}

.needs-grid span {
  display: block;
  margin-bottom: 16px;
  color: var(--blue-600);
  font-size: 0.78rem;
  font-weight: 900;
  line-height: 1.55;
}

.needs-grid h3 {
  color: var(--navy-950);
  text-transform: uppercase;
}

.needs-grid p {
  color: var(--muted);
  line-height: 1.68;
}

.needs-grid a {
  color: var(--blue-600);
  font-weight: 900;
}

.solutions-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin: clamp(18px, 4vw, 38px) clamp(20px, 6vw, 96px) clamp(34px, 5vw, 70px);
  border-radius: 8px;
  padding: clamp(24px, 4vw, 34px);
  color: #ffffff;
  background: linear-gradient(90deg, var(--navy-950), var(--navy-900));
}

.solutions-cta h2 {
  margin-bottom: 8px;
  color: #ffffff;
  text-transform: uppercase;
}

.solutions-cta p {
  margin: 0;
  color: rgba(255, 255, 255, 0.82);
}

.whatsapp-button {
  color: #ffffff;
  background: #08a045;
  box-shadow: 0 12px 30px rgba(8, 160, 69, 0.22);
}

.solution-detail-hero {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(380px, 1.08fr);
  min-height: 420px;
  color: #ffffff;
  background: var(--navy-950);
}

.solution-detail-hero > div {
  display: flex;
  min-width: 0;
  flex-direction: column;
  justify-content: center;
  padding: clamp(46px, 7vw, 86px) clamp(22px, 6vw, 86px);
}

.solution-detail-hero h1,
.solution-detail-hero p {
  overflow-wrap: anywhere;
}

.solution-detail-hero .tag {
  width: fit-content;
  margin-bottom: 24px;
  color: #ffffff;
  background: rgba(20, 93, 255, 0.78);
}

.detail-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  gap: 22px;
  background: #ffffff;
}

.detail-panel {
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: clamp(24px, 4vw, 34px);
  background: var(--soft);
}

.mini-list,
.capability-tags,
.mini-list span,
.capability-tags span {
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 10px 13px;
  color: var(--navy-900);
  background: #ffffff;
  font-size: 0.9rem;
  font-weight: 800;
}

.process-section,
.related-section {
  background: var(--soft);
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 14px;
}

.process-grid article {
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 18px;
  background: #ffffff;
}

.process-grid span {
  display: block;
  margin-bottom: 18px;
  color: var(--blue-600);
  font-weight: 900;
}

.process-grid h3 {
  margin: 0;
  color: var(--navy-950);
  font-size: 0.98rem;
}

.implementation-section {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(0, 1.18fr);
  gap: clamp(32px, 6vw, 78px);
  align-items: center;
  margin: clamp(26px, 4vw, 52px) clamp(20px, 4vw, 60px);
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
  background:
    radial-gradient(circle at 82% 76%, rgba(20, 93, 255, 0.08), transparent 28%),
    linear-gradient(180deg, #ffffff, #f8fbff);
  box-shadow: 0 18px 52px rgba(3, 20, 46, 0.05);
}

.implementation-section h2 {
  max-width: 640px;
  margin-bottom: 24px;
  color: var(--navy-950);
  font-size: clamp(2rem, 4vw, 3.65rem);
  line-height: 1.18;
}

.implementation-copy > p:not(.label) {
  max-width: 560px;
  color: #34455f;
  font-size: 1.05rem;
  line-height: 1.72;
}

.implementation-benefits {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
  margin-top: clamp(34px, 5vw, 58px);
}

.implementation-benefits article {
  display: grid;
  gap: 14px;
  border-left: 1px solid var(--line);
  padding: 0 clamp(16px, 2.2vw, 28px);
}

.implementation-benefits article:first-child {
  border-left: 0;
  padding-left: 0;
}

.implementation-benefits p {
  margin: 0;
  color: var(--navy-900);
  font-weight: 750;
  line-height: 1.5;
}

.implementation-places {
  position: relative;
  display: grid;
  gap: 34px;
}

.place-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
}

.place-grid article {
  position: relative;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  gap: 18px;
  align-items: center;
  min-height: 138px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 22px;
  background: rgba(255, 255, 255, 0.88);
  box-shadow: 0 12px 36px rgba(3, 20, 46, 0.045);
}

.place-grid article.featured {
  border-color: rgba(20, 93, 255, 0.75);
  box-shadow: 0 16px 42px rgba(20, 93, 255, 0.09);
}

.place-grid article.featured::after {
  position: absolute;
  top: -18px;
  right: -16px;
  display: grid;
  width: 36px;
  height: 36px;
  place-items: center;
  border-radius: 50%;
  color: #ffffff;
  background: var(--blue-600);
  content: "✓";
  font-weight: 900;
  box-shadow: 0 12px 24px rgba(20, 93, 255, 0.28);
}

.place-grid h3 {
  margin-bottom: 8px;
  color: var(--navy-950);
  font-size: 1.12rem;
}

.place-grid p {
  margin: 0;
  color: #32435e;
  line-height: 1.56;
}

.place-grid i {
  color: var(--blue-600);
  font-size: 1.45rem;
  font-style: normal;
  font-weight: 900;
}

.place-icon {
  display: inline-grid;
  width: 62px;
  min-width: 62px;
  height: 62px;
  place-items: center;
  border-radius: 16px;
  color: var(--blue-600);
  background: rgba(20, 93, 255, 0.08);
}

.implementation-benefits .place-icon {
  width: 54px;
  min-width: 54px;
  height: 54px;
  border-radius: 50%;
}

.place-icon::before {
  color: var(--blue-600);
  font-size: 1.55rem;
  font-weight: 900;
  line-height: 1;
}

.place-industrial::before {
  content: "▥";
}

.place-commercial::before {
  content: "▤";
}

.place-institution::before {
  content: "▦";
}

.place-business::before {
  content: "▩";
}

.place-home::before {
  content: "⌂";
}

.place-secure::before {
  content: "◇";
}

.place-scale::before {
  content: "▥";
}

.place-team::before {
  content: "◌";
}

.implementation-skyline {
  min-height: 120px;
  opacity: 0.32;
  background:
    linear-gradient(var(--blue-600), var(--blue-600)) 8% 92% / 88% 2px no-repeat,
    linear-gradient(to top, transparent 0 35%, rgba(20, 93, 255, 0.5) 35% 100%) 12% 100% / 48px 54px no-repeat,
    linear-gradient(to top, transparent 0 20%, rgba(20, 93, 255, 0.45) 20% 100%) 22% 100% / 34px 82px no-repeat,
    linear-gradient(to top, transparent 0 28%, rgba(20, 93, 255, 0.5) 28% 100%) 46% 100% / 38px 62px no-repeat,
    linear-gradient(to top, transparent 0 15%, rgba(20, 93, 255, 0.45) 15% 100%) 57% 100% / 54px 96px no-repeat,
    linear-gradient(to top, transparent 0 25%, rgba(20, 93, 255, 0.48) 25% 100%) 70% 100% / 42px 74px no-repeat,
    linear-gradient(to top, transparent 0 32%, rgba(20, 93, 255, 0.42) 32% 100%) 82% 100% / 86px 58px no-repeat;
}

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

.related-grid article {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #ffffff;
  box-shadow: 0 12px 34px rgba(3, 20, 46, 0.06);
}

.related-grid img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.related-grid div {
  padding: 18px;
}

.related-grid span {
  color: var(--blue-600);
  font-size: 0.78rem;
  font-weight: 900;
}

.related-grid h3 {
  margin: 8px 0;
  color: var(--navy-950);
}

.related-grid p {
  margin: 0;
  color: var(--muted);
}

.network-redesign-panel {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr);
  gap: clamp(26px, 4vw, 54px);
  margin: clamp(28px, 4vw, 48px) clamp(20px, 4vw, 60px);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: clamp(24px, 4vw, 38px);
  background: #ffffff;
  box-shadow: 0 18px 52px rgba(3, 20, 46, 0.06);
}

.network-problems {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 0.82fr);
  gap: clamp(22px, 3vw, 36px);
  padding-right: clamp(0px, 2vw, 28px);
  border-right: 1px solid var(--line);
}

.network-capabilities {
  display: grid;
  align-content: center;
  gap: 28px;
}

.network-section-heading h2 {
  max-width: 560px;
  margin-bottom: 14px;
  color: var(--navy-950);
  font-size: clamp(1.85rem, 3vw, 2.75rem);
  line-height: 1.16;
}

.network-section-heading p:not(.label) {
  max-width: 560px;
  margin-bottom: 0;
  color: var(--navy-900);
  line-height: 1.68;
}

.heading-line {
  display: block;
  width: 46px;
  height: 4px;
  margin: 0 0 24px;
  background: var(--blue-600);
}

.section-title.center .heading-line {
  margin-right: auto;
  margin-left: auto;
}

.network-problems > img {
  width: 100%;
  align-self: start;
  border-radius: 8px;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  box-shadow: 0 12px 36px rgba(3, 20, 46, 0.11);
}

.network-problem-grid {
  display: grid;
  grid-column: 1 / -1;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.network-problem-grid article {
  display: flex;
  min-height: 140px;
  gap: 16px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 20px;
  background: #ffffff;
}

.network-problem-grid article.wide {
  grid-column: span 2;
}

.network-problem-grid h3,
.network-capability-grid h3,
.network-process-grid h3 {
  margin-bottom: 8px;
  color: var(--navy-950);
  font-size: 1.02rem;
  line-height: 1.28;
}

.network-problem-grid p,
.network-capability-grid p,
.network-process-grid p {
  margin: 0;
  color: var(--navy-900);
  font-size: 0.9rem;
  line-height: 1.62;
}

.network-capability-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
}

.network-capability-grid article {
  min-height: 168px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 22px 18px;
}

.network-capability-grid article:nth-child(4n) {
  border-right: 0;
}

.network-capability-grid article:nth-last-child(-n + 4) {
  border-bottom: 0;
}

.solution-highlight-bar {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: auto max-content minmax(0, 1fr) auto;
  gap: 24px;
  align-items: center;
  border: 1px solid rgba(20, 93, 255, 0.26);
  border-radius: 8px;
  padding: 18px 26px;
  background:
    linear-gradient(90deg, #ffffff, #f5f9ff),
    radial-gradient(circle at 95% 50%, rgba(20, 93, 255, 0.12), transparent 30%);
}

.solution-highlight-bar strong {
  color: var(--navy-950);
  font-size: 1.05rem;
}

.solution-highlight-bar p {
  margin: 0;
  border-left: 1px solid var(--line);
  padding-left: 24px;
  color: var(--navy-900);
  line-height: 1.6;
}

.solution-highlight-bar > i {
  background: transparent;
}

.network-icon {
  position: relative;
  display: inline-grid;
  width: 54px;
  min-width: 54px;
  height: 54px;
  place-items: center;
  border-radius: 50%;
  color: var(--blue-600);
  background: rgba(20, 93, 255, 0.08);
  font-style: normal;
}

.network-icon::before {
  color: var(--blue-600);
  font-size: 1.45rem;
  font-weight: 900;
  line-height: 1;
}

.icon-growth::before,
.icon-admin::before {
  content: "↗";
}

.icon-users::before {
  content: "◌";
}

.icon-speed::before {
  content: "⌁";
}

.icon-alert::before {
  content: "!";
}

.icon-lan::before,
.icon-routing::before {
  content: "⌘";
}

.icon-wan::before {
  content: "◎";
}

.icon-vlan::before,
.icon-box::before {
  content: "▱";
}

.icon-switch::before,
.icon-rack::before {
  content: "▤";
}

.icon-shield::before {
  content: "◇";
}

.icon-search::before {
  content: "⌕";
}

.icon-design::before {
  content: "□";
}

.icon-tools-small::before {
  content: "✕";
}

.icon-checklist::before {
  content: "✓";
}

.icon-headset::before {
  content: "◜";
}

.network-process {
  padding-top: clamp(56px, 7vw, 86px);
  padding-bottom: clamp(56px, 7vw, 90px);
  background:
    radial-gradient(circle at 50% 0%, rgba(20, 93, 255, 0.08), transparent 34%),
    linear-gradient(180deg, #f7fbff, #ffffff);
}

.network-process .section-title p {
  color: var(--blue-600);
  letter-spacing: 0.12em;
  font-weight: 900;
  text-transform: uppercase;
}

.network-process .section-title small {
  display: block;
  max-width: 650px;
  margin: 18px auto 0;
  color: #40506a;
  font-size: clamp(1rem, 1.35vw, 1.18rem);
  line-height: 1.65;
}

.network-process-grid {
  position: relative;
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: clamp(18px, 2vw, 30px);
  margin-top: clamp(52px, 6vw, 72px);
}

.network-process-grid::before {
  display: none;
}

.network-process-grid article {
  position: relative;
  display: grid;
  justify-items: center;
  min-height: 286px;
  border: 1px solid rgba(220, 229, 241, 0.9);
  border-radius: 8px;
  padding: 44px 20px 24px;
  background: #ffffff;
  box-shadow: 0 16px 42px rgba(3, 20, 46, 0.07);
  text-align: center;
}

.network-process-grid article::before {
  position: absolute;
  top: -45px;
  left: 50%;
  width: 112px;
  height: 56px;
  border-top: 3px solid var(--blue-600);
  border-radius: 112px 112px 0 0;
  content: "";
  transform: translateX(-50%);
}

.network-process-grid article:not(:last-child)::after {
  position: absolute;
  top: 126px;
  right: -22px;
  z-index: 3;
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border-radius: 50%;
  color: #ffffff;
  background: var(--blue-600);
  box-shadow: 0 10px 22px rgba(20, 93, 255, 0.22);
  content: "→";
  font-weight: 900;
}

.process-number {
  z-index: 1;
  display: inline-grid;
  position: absolute;
  top: -64px;
  left: 50%;
  width: 54px;
  height: 54px;
  place-items: center;
  border-radius: 50%;
  color: #ffffff;
  background: var(--blue-600);
  box-shadow: 0 12px 26px rgba(20, 93, 255, 0.28);
  font-size: 1.05rem;
  font-weight: 900;
  transform: translateX(-50%);
}

.network-process-grid .network-icon {
  z-index: 1;
  width: 86px;
  min-width: 86px;
  height: 86px;
  margin: 0 0 26px;
  background:
    radial-gradient(circle, rgba(255, 255, 255, 0.7), transparent 56%),
    rgba(20, 93, 255, 0.09);
}

.network-process-grid .network-icon::before {
  font-size: 2.25rem;
}

.network-process-grid h3::after {
  display: block;
  width: 42px;
  height: 3px;
  margin: 14px auto 0;
  background: var(--blue-600);
  content: "";
}

.network-process-grid p {
  max-width: 220px;
  color: #263752;
  font-size: 0.95rem;
}

.network-process-note {
  display: flex;
  max-width: 960px;
  min-height: 96px;
  align-items: center;
  gap: 24px;
  margin: clamp(42px, 6vw, 70px) auto 0;
  border-left: 5px solid var(--blue-600);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 20px clamp(22px, 4vw, 38px);
  color: var(--navy-900);
  background:
    radial-gradient(circle at 95% 18%, rgba(20, 93, 255, 0.08) 0 2px, transparent 2px 8px),
    linear-gradient(90deg, #ffffff, #f5f9ff);
  box-shadow: 0 10px 30px rgba(3, 20, 46, 0.04);
}

.network-process-note p {
  margin: 0;
  color: var(--navy-900);
  font-size: 1.05rem;
  line-height: 1.62;
}

.contact-hero {
  background:
    linear-gradient(90deg, rgba(3, 20, 46, 0.92), rgba(3, 20, 46, 0.5)),
    url("assets/telecom-tower.png");
  background-position: center;
  background-size: cover;
}

.contact-page-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(380px, 1.1fr);
  gap: clamp(24px, 5vw, 64px);
  align-items: start;
  background: var(--soft);
}

.contact-info-panel {
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: clamp(26px, 4vw, 44px);
  background: #ffffff;
  box-shadow: 0 12px 36px rgba(3, 20, 46, 0.06);
}

.contact-data-list {
  display: grid;
  gap: 14px;
  margin-top: 24px;
}

.contact-data-list article {
  border-bottom: 1px solid var(--line);
  padding-bottom: 14px;
}

.contact-data-list article:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}

.contact-channel {
  display: grid;
  gap: 7px;
}

.contact-data-list span {
  display: block;
  margin-bottom: 5px;
  color: var(--blue-600);
  font-size: 0.8rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.contact-data-list a,
.contact-data-list p {
  margin: 0;
  color: var(--navy-900);
  font-weight: 750;
  line-height: 1.58;
  overflow-wrap: anywhere;
}

.projects-hero {
  min-height: 245px;
  display: grid;
  align-items: center;
  padding: clamp(42px, 5vw, 68px) clamp(20px, 6vw, 96px);
  color: #ffffff;
  background:
    linear-gradient(90deg, rgba(3, 20, 46, 0.96), rgba(3, 20, 46, 0.74)),
    url("assets/hero-field-team-v2.png");
  background-position: center;
  background-size: cover;
}

.projects-hero h1 {
  margin-bottom: 12px;
  color: #ffffff;
  font-size: clamp(3rem, 5.4vw, 5.2rem);
  text-transform: uppercase;
}

.projects-hero p {
  margin-bottom: 22px;
  color: rgba(255, 255, 255, 0.88);
  font-size: 1.25rem;
}

.portfolio-page {
  padding: 22px clamp(20px, 6vw, 96px) 32px;
}

.project-tabs {
  display: flex;
  align-items: center;
  gap: clamp(18px, 3vw, 44px);
  margin-bottom: 18px;
  overflow-x: auto;
}

.project-tabs button {
  position: relative;
  min-height: 44px;
  border: 0;
  color: var(--navy-900);
  background: transparent;
  font-weight: 800;
  white-space: nowrap;
  cursor: pointer;
}

.project-tabs button.active {
  color: var(--blue-600);
}

.project-tabs button.active::after {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 4px;
  border-radius: 999px;
  content: "";
  background: var(--blue-600);
}

.project-tabs .more-filter {
  margin-left: auto;
  border: 1px solid #c8d3e2;
  border-radius: 6px;
  padding: 0 18px;
  background: #ffffff;
}

.project-filters {
  display: grid;
  grid-template-columns: minmax(260px, 1.7fr) repeat(4, minmax(150px, 1fr));
  gap: 14px;
  margin-bottom: 16px;
}

.compact-project-filter {
  grid-template-columns: minmax(260px, 1fr) auto;
  align-items: center;
}

.compact-project-filter p {
  margin: 0;
  color: var(--muted);
  font-weight: 800;
  text-align: right;
}

.project-filters input,
.project-filters select {
  min-height: 48px;
  border-radius: 6px;
  background: #ffffff;
}

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

.portfolio-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: #ffffff;
  box-shadow: 0 10px 28px rgba(3, 20, 46, 0.08);
}

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

.portfolio-card > div {
  position: relative;
  padding: 22px 18px 18px;
}

.portfolio-card .tag {
  position: absolute;
  left: 18px;
  top: -28px;
  display: inline-flex;
  min-height: 30px;
  align-items: center;
  border-radius: 4px 4px 0 0;
  padding: 0 12px;
  color: #ffffff;
  background: var(--blue-600);
  font-size: 0.78rem;
  font-weight: 900;
}

.portfolio-card h2 {
  margin-bottom: 8px;
  color: var(--navy-950);
  font-size: 1.08rem;
  line-height: 1.25;
}

.portfolio-card p {
  margin-bottom: 10px;
  color: var(--muted);
  font-weight: 650;
}

.portfolio-card small {
  color: #58677c;
  font-weight: 650;
}

.project-data-card {
  display: grid;
  align-content: start;
}

.project-data-card > img {
  height: 205px;
}

.project-thumbs {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 6px;
  margin-top: 16px;
  padding: 0;
}

.project-thumbs img {
  width: 100%;
  height: 52px;
  border-radius: 4px;
  object-fit: cover;
}

.project-empty {
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 28px;
  color: var(--muted);
  background: #ffffff;
  text-align: center;
  font-weight: 800;
}

.portfolio-stats {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0;
  padding: 24px clamp(20px, 8vw, 140px);
  color: #ffffff;
  background: linear-gradient(90deg, var(--navy-950), var(--navy-900));
}

.portfolio-stats div {
  display: grid;
  gap: 3px;
  border-left: 1px solid rgba(255, 255, 255, 0.28);
  padding: 0 28px;
}

.portfolio-stats div:first-child {
  border-left: 0;
}

.portfolio-stats strong {
  font-size: clamp(1.6rem, 2.4vw, 2.4rem);
  line-height: 1;
}

.portfolio-stats span {
  color: rgba(255, 255, 255, 0.78);
}

@media (max-width: 1080px) {
  .capability-grid,
  .solutions-grid,
  .needs-grid,
  .network-redesign-panel,
  .why-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .network-problems,
  .network-capabilities {
    grid-column: 1 / -1;
  }

  .network-problems {
    border-right: 0;
    padding-right: 0;
  }

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

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

  .network-process-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    row-gap: 74px;
  }

  .network-process-grid article:nth-child(3n)::after {
    display: none;
  }

  .hero-visual {
    min-height: 500px;
  }
}

@media (max-width: 900px) {
  .menu-toggle {
    display: block;
  }

  .nav {
    position: fixed;
    inset: 78px 0 auto 0;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 18px 20px 26px;
    background: linear-gradient(160deg, var(--blue-600), var(--navy-950));
  }

  body.nav-open .nav {
    display: flex;
  }

  .nav a {
    padding: 15px 0;
  }

  .nav-cta {
    margin-top: 8px;
  }

  .project-grid,
  .solutions-hero,
  .solution-detail-hero,
  .network-problems,
  .network-problem-grid,
  .telecom,
  .about-contact,
  .story-section,
  .contact-page-grid,
  .detail-grid,
  .implementation-section,
  .project-filters,
  .footer {
    grid-template-columns: 1fr;
  }

  .solutions-cta {
    align-items: flex-start;
    flex-direction: column;
  }

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

  .compact-project-filter p {
    text-align: left;
  }

  .implementation-section {
    margin-right: 20px;
    margin-left: 20px;
  }

  .implementation-benefits {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .implementation-benefits article,
  .implementation-benefits article:first-child {
    grid-template-columns: auto minmax(0, 1fr);
    align-items: center;
    border-left: 0;
    padding: 0;
  }

  .needs-grid article:nth-child(2) {
    border-right: 0;
  }

  .needs-grid article {
    border-bottom: 1px solid var(--line);
  }

  .needs-grid article:nth-last-child(-n + 2) {
    border-bottom: 0;
  }

  .portfolio-grid,
  .related-grid,
  .network-capability-grid,
  .portfolio-stats {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .network-problem-grid article.wide {
    grid-column: span 1;
  }

  .network-capability-grid article:nth-child(2n) {
    border-right: 0;
  }

  .network-capability-grid article:nth-last-child(-n + 4) {
    border-bottom: 1px solid var(--line);
  }

  .network-capability-grid article:nth-last-child(-n + 2) {
    border-bottom: 0;
  }

  .portfolio-stats div:nth-child(odd) {
    border-left: 0;
  }

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

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

  .partners,
  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 620px) {
  .site-header {
    min-height: 70px;
  }

  .brand-logo {
    width: 190px;
  }

  .nav {
    inset: 70px 0 auto 0;
  }

  .hero-copy {
    padding-top: 48px;
  }

  .hero-actions,
  .partners {
    align-items: stretch;
    flex-direction: column;
  }

  .button,
  .nav-cta {
    width: 100%;
  }

  .capability-grid,
  .solutions-grid,
  .needs-grid,
  .process-grid,
  .related-grid,
  .network-redesign-panel,
  .network-capability-grid,
  .network-process-grid,
  .why-grid {
    grid-template-columns: 1fr;
  }

  .network-redesign-panel {
    margin-right: 16px;
    margin-left: 16px;
    padding: 20px;
  }

  .implementation-section {
    margin-right: 16px;
    margin-left: 16px;
    padding: 28px 20px;
  }

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

  .place-grid article {
    grid-template-columns: auto minmax(0, 1fr);
    min-height: 0;
  }

  .place-grid i {
    display: none;
  }

  .implementation-skyline {
    min-height: 80px;
  }

  .network-problem-grid article,
  .network-capability-grid article,
  .solution-highlight-bar {
    min-height: 0;
  }

  .solution-highlight-bar {
    grid-template-columns: auto minmax(0, 1fr);
    gap: 16px;
    padding: 20px;
  }

  .solution-highlight-bar p {
    grid-column: 1 / -1;
    border-left: 0;
    padding-left: 0;
  }

  .solution-highlight-bar > i {
    display: none;
  }

  .network-capability-grid article,
  .network-capability-grid article:nth-child(2n),
  .network-capability-grid article:nth-last-child(-n + 2) {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .network-capability-grid article:last-child {
    border-bottom: 0;
  }

  .network-process-grid {
    gap: 28px;
    margin-top: 44px;
  }

  .network-process-grid::before {
    display: none;
  }

  .network-process-grid article {
    min-height: 0;
    padding-top: 54px;
  }

  .network-process-grid article::before,
  .network-process-grid article::after {
    display: none;
  }

  .process-number {
    top: -16px;
  }

  .network-process-grid p {
    max-width: 320px;
  }

  .network-process-note {
    align-items: flex-start;
    flex-direction: column;
  }

  .solutions-hero,
  .solution-detail-hero {
    min-height: 0;
  }

  .solutions-hero-media,
  .solution-detail-hero > img {
    min-height: 260px;
  }

  .needs-grid article,
  .needs-grid article:nth-child(2),
  .needs-grid article:nth-last-child(-n + 2) {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .needs-grid article:last-child {
    border-bottom: 0;
  }

  .solutions-cta .hero-actions,
  .solutions-cta .button {
    width: 100%;
  }

  .hero-visual {
    min-height: 420px;
  }

  .field-card {
    right: 16px;
    left: 16px;
  }

  .company-facts,
  .data-grid,
  .portfolio-grid,
  .portfolio-stats {
    grid-template-columns: 1fr;
  }

  .portfolio-stats div {
    border-left: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.22);
    padding: 22px 0;
  }

  .portfolio-stats div:first-child {
    border-top: 0;
  }
}
